Skip to content

Commit fcb7310

Browse files
committed
add run script
1 parent 79c1fbf commit fcb7310

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import os
2+
from e3sm_diags.parameter.lat_lon_land_parameter import LatLonLandParameter # Note the change.
3+
from e3sm_diags.run import runner
4+
5+
param = LatLonLandParameter()
6+
param.test_data_path = '/lcrc/group/e3sm2/ac.zhang40/E3SMv3/v3.LR.piControl_land_ilamb/post/lnd/native/clim/50yr'
7+
param.test_name = 'v3.LR.piControl'
8+
#param.short_test_name = 'alpha20_rrm_test'
9+
param.reference_data_path = '/lcrc/group/e3sm2/ac.zhang40/E3SMv3/v3.LR.piControl_land_ilamb/post/lnd/native/clim/50yr'
10+
param.ref_name = 'v3.LR.piControl'
11+
12+
param.run_type = 'model_vs_model'
13+
prefix = '/lcrc/group/e3sm/public_html/diagnostic_output/ac.zhang40/tests/999-all-land-var'
14+
param.seasons = ["ANN"]
15+
param.multiprocessing = True
16+
#param.num_workers = 16
17+
param.results_dir = os.path.join(prefix, 'lat_lon_test_land_model_vs_model')
18+
runner.sets_to_run = ['lat_lon_land'] # Note the change
19+
runner.run_diags([param])

0 commit comments

Comments
 (0)