-
Notifications
You must be signed in to change notification settings - Fork 4
/
2_3_model_parameters.yml
49 lines (39 loc) · 1.5 KB
/
2_3_model_parameters.yml
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
target_default: 2_3_model_parameters
packages:
- dplyr
sources:
- 2_3_model_parameters/src/get_init_sntemp_params.R
- 2_3_model_parameters/src/add_default_sntemp_params.R
targets:
2_3_model_parameters:
depends:
- 2_3_model_parameters/out/init_params.rds.ind
# notes:
# PRMS only uses one veg type cover per HRU
param_names:
command: da_settings[[I('params_to_update')]]
2_3_model_parameters/out/init_params.rds.ind:
command: get_init_sntemp_params(
ind_file = target_name,
param_names = param_names,
model_run_loc = I('20191002_Delaware_streamtemp'),
ensure_not_lower_bound = I('T'))
2_3_model_parameters/out/init_params.rds:
command: gd_get('2_3_model_parameters/out/init_params.rds.ind')
## claibration parameters ##
calibration_settings:
command: read_yaml('4_model_calibrate/cfg/calibration_settings.yml')
param_names_calibration:
command: calibration_settings[[I('params_to_cal')]]
add_default_params:
command: add_default_sntemp_params(
param_names = param_names_calibration,
model_run_loc = I('20191002_Delaware_streamtemp'))
2_3_model_parameters/out/calibration_params_init.rds.ind:
command: get_init_sntemp_params(
ind_file = target_name,
param_names = param_names_calibration,
model_run_loc = I('20191002_Delaware_streamtemp'),
ensure_not_lower_bound = I('T'))
2_3_model_parameters/out/calibration_params_init.rds:
command: gd_get('2_3_model_parameters/out/calibration_params_init.rds.ind')