-
Notifications
You must be signed in to change notification settings - Fork 8
/
runtime_params.ini
executable file
·45 lines (33 loc) · 1.8 KB
/
runtime_params.ini
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
#####################################################################
##### Runtime parameters for CalFEWS model
#####################################################################
##### Syntax notes, to help us parse file properly in bash
##### - Leave space between variable & assignment
##### - Put quotes around all assignments, even numbers & boolean
##### - Format boolean with capital first letter, lower case second letter (e.g. True)
#####################################################################
# parallel or non-parallel
parallel_mode = "False" # True or False
# is this run on cluster?
cluster_mode = "False"
# scratch directory if using cluster
scratch_dir = "/pine/scr/a/l/alh91/CALFEWS_results/"
# infrastructure scenarios. See 'calfews_src/scenarios/scenarios_main.json' for options.
scenario_name = "baseline_wy2017" # baseline_wy2017, FKC_capacity_rehab_full, etc.
# type of run mode
model_mode = "simulation" # sensitivity, validation, simulation, climate_ensemble
# To run full dataset, short_test = -1. Else enter number of days to run, starting at sd. e.g. 365 for 1 year only.
short_test = "-1"
# print logs to external file? If false, prints to terminal.
print_log = "False"
# positive seed for random generator. Set -1 to not set the seed.
seed = "1001"
# flow input params, see 'calfews_src/data/input/base_inflows.json' for keys and use of these params.
flow_input_type = "observations"
flow_input_source = "CDEC_wet_dry"
# json file telling which data we want to output (path relative to working_directory)
output_list = "calfews_src/data/input/output_list.json"
# clean output by only writing columns with non-zero values? Will save space but may make post-processing a bit more tedious.
clean_output = "True"
# Save full model objects after run?
save_full = "False"