-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
170 lines (170 loc) · 4.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
stages:
build-docker:
cmd: calkit build-docker rvat-re-dep -i Dockerfile --platform linux/amd64
deps:
- Dockerfile
outs:
- Dockerfile-lock.json:
cache: false
persist: true
always_changed: true
plot-perf-curves:
cmd: calkit runenv -n main python plot.py perf_curves --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/cp_curves.pdf
- Figures/cd_curves.pdf
plot-perf-re-dep:
cmd: calkit runenv -n main python plot.py perf_re_dep --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/perf_re_dep.pdf
meta:
calkit:
type: figure
title: Turbine performance Reynolds number dependence
description: >
Power and drag (or thrust) curves as a function of Reynolds number,
computed with both the turbine diameter and blade chord length.
plot-wake-profiles:
cmd: calkit runenv -n main python plot.py wake_profiles --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/mean_u_k_profiles.pdf
meta:
calkit:
type: figure
title: Wake profiles
description: >
Mean streamwise velocity and turbulence kinetic energy.
plot-k-bar-graph:
cmd: calkit runenv -n main python plot.py k_bar_graph --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/K_trans_bar_graph.pdf
meta:
calkit:
type: figure
title: Mean kinetic energy transport
description: >
Terms in the mean kinetic energy transport equation.
plot-mom-bar-graph:
cmd: calkit runenv -n main python plot.py mom_bar_graph --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/mom_bar_graph.pdf
meta:
calkit:
type: figure
title: Mean momentum transport
description: >
Terms in the mean streamwise momentum transport equation.
plot-mean-cont-quiv:
cmd: calkit runenv -n main python plot.py all_meancontquiv --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/meancontquiv_04.pdf
- Figures/meancontquiv_06.pdf
- Figures/meancontquiv_08.pdf
- Figures/meancontquiv_10.pdf
- Figures/meancontquiv_12.pdf
plot-k-contours:
cmd: calkit runenv -n main python plot.py all_kcont --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/k_contours_04.pdf
- Figures/k_contours_06.pdf
- Figures/k_contours_08.pdf
- Figures/k_contours_10.pdf
- Figures/k_contours_12.pdf
plot-wake-spectra:
cmd: calkit runenv -n main python plot.py multi_spec --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
- Data/Raw
outs:
- Figures/wake_spectra.pdf
meta:
calkit:
type: figure
title: Wake spectra
description: >
Power spectral density of wake velocity at various Reynolds numbers.
plot-wake-trans-totals:
cmd: calkit runenv -n main python plot.py wake_trans_totals --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Figures/wake_trans_totals.pdf
meta:
calkit:
type: figure
title: Wake transport totals
description: >
Normalized transport contributions to the mean streamwise momentum
and kinetic energy.
make-vel-unc-table:
cmd: calkit runenv -n main python plot.py vel_unc_table --save --no-show
deps:
- plot.py
- pyrvatrd/plotting.py
- pyrvatrd/processing.py
- Data/Processed
- Dockerfile-lock.json
outs:
- Tables/mean_vel_unc.csv:
cache: false
- Tables/mean_vel_unc.tex:
cache: false
check-conda-env:
cmd: calkit check-conda-env -f environment.yml
deps:
- environment.yml
outs:
- environment-lock.yml:
cache: false
persist: true
always_changed: true