|
48 | 48 | short_name = "v3.LR.historical_0101" |
49 | 49 |
|
50 | 50 | # TODO: Update MAIN_DIR to match the current directory name. |
51 | | -MAIN_DIR = "24-12-12-branch-970" |
52 | | -results_dir = f"/global/cfs/cdirs/e3sm/www/e3sm_diags/{MAIN_DIR}/" |
| 51 | +MAIN_DIR = "24-12-12-branch-907" |
| 52 | +results_dir = f"/global/cfs/cdirs/e3sm/www/e3sm_diags/complete_run/{MAIN_DIR}/" |
53 | 53 |
|
54 | 54 | test_climo = "/global/cfs/cdirs/e3sm/chengzhu/tutorial2024/v3.LR.historical_0101/post/atm/180x360_aave/clim/15yr" |
55 | 55 | test_ts = "/global/cfs/cdirs/e3sm/chengzhu/tutorial2024/v3.LR.historical_0101/post/atm/180x360_aave/ts/monthly/15yr" |
|
81 | 81 | param.output_format_subplot = [] |
82 | 82 | param.multiprocessing = True |
83 | 83 | param.num_workers = 24 |
| 84 | +param.save_netcdf = True |
84 | 85 | param.seasons = ["ANN"] |
85 | 86 | params = [param] |
86 | 87 |
|
|
96 | 97 | enso_param.ref_start_yr = start_yr |
97 | 98 | enso_param.ref_end_yr = end_yr |
98 | 99 |
|
| 100 | +enso_param.save_netcdf = True |
99 | 101 | params.append(enso_param) |
100 | 102 |
|
101 | 103 | trop_param = TropicalSubseasonalParameter() |
|
109 | 111 | trop_param.ref_start_yr = "2001" |
110 | 112 | trop_param.ref_end_yr = "2010" |
111 | 113 |
|
| 114 | +trop_param.save_netcdf = True |
112 | 115 | params.append(trop_param) |
| 116 | + |
113 | 117 | qbo_param = QboParameter() |
114 | 118 | qbo_param.test_data_path = test_ts |
115 | 119 | # qbo_param.test_name = short_name |
|
121 | 125 | # Obs |
122 | 126 | qbo_param.reference_data_path = ref_ts |
123 | 127 |
|
| 128 | +qbo_param.save_netcdf = True |
124 | 129 | params.append(qbo_param) |
| 130 | + |
125 | 131 | dc_param = DiurnalCycleParameter() |
126 | 132 | dc_param.test_data_path = "/global/cfs/cdirs/e3sm/chengzhu/tutorial2024/v3.LR.historical_0101/post/atm/180x360_aave/clim_diurnal_8xdaily/" |
127 | 133 | # dc_param.short_test_name = short_name |
|
131 | 137 | # Obs |
132 | 138 | dc_param.reference_data_path = ref_climo |
133 | 139 |
|
| 140 | +dc_param.save_netcdf = True |
134 | 141 | params.append(dc_param) |
| 142 | + |
135 | 143 | streamflow_param = StreamflowParameter() |
136 | 144 | streamflow_param.reference_data_path = ref_ts |
137 | 145 | streamflow_param.test_data_path = "/global/cfs/cdirs/e3sm/chengzhu/tutorial2024/v3.LR.historical_0101/post/rof/native/ts/monthly/15yr/" |
|
146 | 154 | ) |
147 | 155 | streamflow_param.ref_end_yr = "1995" |
148 | 156 |
|
| 157 | +streamflow_param.save_netcdf = True |
149 | 158 | params.append(streamflow_param) |
| 159 | + |
150 | 160 | tc_param = TCAnalysisParameter() |
151 | 161 | tc_param.test_data_path = "/global/cfs/cdirs/e3sm/chengzhu/tutorial2024/v3.LR.historical_0101/post/atm/tc-analysis_2000_2014" |
152 | 162 | # tc_param.short_test_name = short_name |
|
162 | 172 | tc_param.ref_start_yr = "1979" |
163 | 173 | tc_param.ref_end_yr = "2018" |
164 | 174 |
|
| 175 | +tc_param.save_netcdf = True |
165 | 176 | params.append(tc_param) |
166 | 177 |
|
167 | 178 | arm_param = ARMDiagsParameter() |
|
180 | 191 | arm_param.ref_start_yr = "0001" |
181 | 192 | arm_param.ref_end_yr = "0001" |
182 | 193 |
|
| 194 | +arm_param.save_netcdf = True |
183 | 195 | params.append(arm_param) |
184 | 196 |
|
185 | 197 | # Run |
|
0 commit comments