-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdvc.yaml
68 lines (68 loc) · 1.72 KB
/
dvc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
stages:
naca0012-re2e5:
foreach: ${aoa-values}
do:
cmd: calkit xenv python run.py 0012 ${item}
deps:
- system/controlDict
- system/fvSchemes
- system/fvSolution
- system/createPatchDict
- system/surfaces
- constant/transportProperties
- constant/turbulenceProperties
- run.py
- scripts/blockmeshdict.py
- 0.org
- Dockerfile
outs:
- cases/naca0012-re2e5-aoa-${item}
aggregate-results:
cmd: calkit xenv -n py python scripts/aggregate.py
deps:
- scripts/aggregate.py
- cases
outs:
- processed/all-simulated.csv:
cache: false
meta:
calkit:
type: dataset
title: All simulation results
plot-clcd:
cmd: calkit xenv -n py python scripts/plot-clcd.py
deps:
- scripts/plot-clcd.py
- processed/all-simulated.csv
outs:
- figures/naca0012-clcd.json:
cache: false
meta:
calkit:
type: figure
title: NACA 0012 lift-to-drag ratio
description: >
Plotted against the Ladson 180 grit experimental data.
plot-flow:
foreach: ${aoa-values}
do:
cmd: calkit xenv -n py python scripts/plot-flow.py ${item}
deps:
- scripts/plot-flow.py
- cases/naca0012-re2e5-aoa-${item}/postProcessing/surfaces
outs:
- figures/naca0012-re2e5-aoa-${item}-umag.png
- figures/naca0012-re2e5-aoa-${item}-umag.html
build-app:
cmd: bash scripts/build-app.sh
deps:
- scripts/build-app.sh
- figures
- processed
- requirements.txt
- notebook.py
- layouts
outs:
- app:
cache: false
persist: true