wrfrun 0.1.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wrfrun/__init__.py +3 -0
- wrfrun/core/__init__.py +5 -0
- wrfrun/core/base.py +680 -0
- wrfrun/core/config.py +717 -0
- wrfrun/core/error.py +80 -0
- wrfrun/core/replay.py +113 -0
- wrfrun/core/server.py +212 -0
- wrfrun/data.py +418 -0
- wrfrun/extension/__init__.py +1 -0
- wrfrun/extension/littler/__init__.py +1 -0
- wrfrun/extension/littler/utils.py +599 -0
- wrfrun/extension/utils.py +66 -0
- wrfrun/model/__init__.py +7 -0
- wrfrun/model/base.py +14 -0
- wrfrun/model/plot.py +54 -0
- wrfrun/model/utils.py +34 -0
- wrfrun/model/wrf/__init__.py +6 -0
- wrfrun/model/wrf/_metgrid.py +71 -0
- wrfrun/model/wrf/_ndown.py +39 -0
- wrfrun/model/wrf/core.py +805 -0
- wrfrun/model/wrf/exec_wrap.py +101 -0
- wrfrun/model/wrf/geodata.py +301 -0
- wrfrun/model/wrf/namelist.py +377 -0
- wrfrun/model/wrf/scheme.py +311 -0
- wrfrun/model/wrf/vtable.py +65 -0
- wrfrun/pbs.py +86 -0
- wrfrun/plot/__init__.py +1 -0
- wrfrun/plot/wps.py +188 -0
- wrfrun/res/__init__.py +22 -0
- wrfrun/res/config.toml.template +136 -0
- wrfrun/res/extension/plotgrids.ncl +216 -0
- wrfrun/res/job_scheduler/pbs.template +6 -0
- wrfrun/res/job_scheduler/slurm.template +6 -0
- wrfrun/res/namelist/namelist.input.da_wrfvar.template +261 -0
- wrfrun/res/namelist/namelist.input.dfi.template +260 -0
- wrfrun/res/namelist/namelist.input.real.template +256 -0
- wrfrun/res/namelist/namelist.input.wrf.template +256 -0
- wrfrun/res/namelist/namelist.wps.template +44 -0
- wrfrun/res/namelist/parame.in.template +11 -0
- wrfrun/res/run.sh.template +16 -0
- wrfrun/run.py +264 -0
- wrfrun/utils.py +257 -0
- wrfrun/workspace.py +88 -0
- wrfrun-0.1.7.dist-info/METADATA +67 -0
- wrfrun-0.1.7.dist-info/RECORD +46 -0
- wrfrun-0.1.7.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
&time_control
|
|
2
|
+
run_days = 0
|
|
3
|
+
run_hours = 0
|
|
4
|
+
run_minutes = 0
|
|
5
|
+
run_seconds = 0
|
|
6
|
+
start_year = 2022, 2022, 2022
|
|
7
|
+
start_month = 5, 5, 5
|
|
8
|
+
start_day = 19, 19, 19
|
|
9
|
+
start_hour = 18, 18, 18
|
|
10
|
+
start_minute = 0, 0, 0
|
|
11
|
+
start_second = 0, 0, 0
|
|
12
|
+
end_year = 2022, 2022, 2022
|
|
13
|
+
end_month = 5, 5, 5
|
|
14
|
+
end_day = 19, 22, 22
|
|
15
|
+
end_hour = 18, 18, 18
|
|
16
|
+
end_minute = 0, 0, 0
|
|
17
|
+
end_second = 0, 0, 0
|
|
18
|
+
interval_seconds = 10800
|
|
19
|
+
input_from_file = .true., .true., .true.
|
|
20
|
+
fine_input_stream = 0, 0, 2
|
|
21
|
+
history_interval = 180, 180, 60
|
|
22
|
+
frames_per_outfile = 1000, 1000, 1000
|
|
23
|
+
history_outname = 'wrfout_d<domain>'
|
|
24
|
+
restart = .false.
|
|
25
|
+
restart_interval = 5000
|
|
26
|
+
override_restart_timers = .false.
|
|
27
|
+
io_form_history = 2
|
|
28
|
+
io_form_restart = 2
|
|
29
|
+
io_form_input = 2
|
|
30
|
+
io_form_boundary = 2
|
|
31
|
+
io_form_auxinput4 = 2
|
|
32
|
+
io_form_auxinput2 = 2
|
|
33
|
+
debug_level = 0
|
|
34
|
+
auxinput1_inname = './met_em.d<domain>.<date>'
|
|
35
|
+
auxinput4_inname = 'wrflowinp_d<domain>'
|
|
36
|
+
auxinput4_interval_s = 10800, 10800, 10800
|
|
37
|
+
inputout_interval = 180
|
|
38
|
+
input_outname = 'wrfvar_d<domain>_<date>'
|
|
39
|
+
adjust_output_times = .true.
|
|
40
|
+
/
|
|
41
|
+
|
|
42
|
+
&domains
|
|
43
|
+
time_step = 180
|
|
44
|
+
time_step_fract_num = 0
|
|
45
|
+
time_step_fract_den = 1
|
|
46
|
+
max_dom = 1
|
|
47
|
+
time_step_dfi = 90
|
|
48
|
+
s_we = 1, 1, 1
|
|
49
|
+
e_we = 110, 151, 133
|
|
50
|
+
s_sn = 1, 1, 1
|
|
51
|
+
e_sn = 120, 181, 133
|
|
52
|
+
s_vert = 1, 1, 1
|
|
53
|
+
e_vert = 44, 44, 57
|
|
54
|
+
eta_levels = 1.0, 0.9975, 0.9925, 0.985, 0.9775, 0.97, 0.954, 0.934,
|
|
55
|
+
0.909, 0.88, 0.8506, 0.8212, 0.7918, 0.7625, 0.7084, 0.6573,
|
|
56
|
+
0.609, 0.5634, 0.5204, 0.4798, 0.4415, 0.4055, 0.3716,
|
|
57
|
+
0.3397, 0.3097, 0.2815, 0.2551, 0.2303, 0.2071, 0.1854,
|
|
58
|
+
0.1651, 0.1461, 0.1284, 0.1118, 0.0965, 0.0822, 0.0689,
|
|
59
|
+
0.0566, 0.0452, 0.0346, 0.0249, 0.0159, 0.0076, 0.0
|
|
60
|
+
num_metgrid_levels = 38
|
|
61
|
+
num_metgrid_soil_levels = 3
|
|
62
|
+
p_top_requested = 5000
|
|
63
|
+
vert_refine_fact = 1
|
|
64
|
+
interp_theta = .false.
|
|
65
|
+
hypsometric_opt = 2
|
|
66
|
+
interp_type = 2
|
|
67
|
+
extrap_type = 2
|
|
68
|
+
t_extrap_type = 2
|
|
69
|
+
lowest_lev_from_sfc = .false.
|
|
70
|
+
force_sfc_in_vinterp = 1
|
|
71
|
+
use_surface = .true.
|
|
72
|
+
dx = 30000, 10000, 3333.333
|
|
73
|
+
dy = 30000, 10000, 3333.333
|
|
74
|
+
grid_id = 1, 2, 3
|
|
75
|
+
parent_id = 1, 1, 2
|
|
76
|
+
i_parent_start = 1, 35, 40
|
|
77
|
+
j_parent_start = 1, 34, 40
|
|
78
|
+
parent_grid_ratio = 1, 3, 3
|
|
79
|
+
parent_time_step_ratio = 1, 3, 4
|
|
80
|
+
feedback = 1
|
|
81
|
+
smooth_option = 2
|
|
82
|
+
nproc_x = -1
|
|
83
|
+
nproc_y = -1
|
|
84
|
+
numtiles = 6
|
|
85
|
+
use_adaptive_time_step = .false.
|
|
86
|
+
step_to_output_time = .true.
|
|
87
|
+
target_cfl = 1.1, 1.1, 1.1
|
|
88
|
+
max_step_increase_pct = 5, 51, 51
|
|
89
|
+
starting_time_step = 120, 40, 10
|
|
90
|
+
max_time_step = 240, 80, 20
|
|
91
|
+
min_time_step = 60, 20, 10
|
|
92
|
+
adaptation_domain = 1
|
|
93
|
+
/
|
|
94
|
+
|
|
95
|
+
&dfi_control
|
|
96
|
+
dfi_opt = 3
|
|
97
|
+
dfi_nfilter = 7
|
|
98
|
+
dfi_write_filtered_input = .true.
|
|
99
|
+
dfi_write_dfi_history = .false.
|
|
100
|
+
dfi_cutoff_seconds = 3600
|
|
101
|
+
dfi_time_dim = 9000
|
|
102
|
+
dfi_bckstop_year = 2022
|
|
103
|
+
dfi_bckstop_month = 5
|
|
104
|
+
dfi_bckstop_day = 19
|
|
105
|
+
dfi_bckstop_hour = 17
|
|
106
|
+
dfi_bckstop_minute = 0
|
|
107
|
+
dfi_bckstop_second = 0
|
|
108
|
+
dfi_fwdstop_year = 2022
|
|
109
|
+
dfi_fwdstop_month = 5
|
|
110
|
+
dfi_fwdstop_day = 19
|
|
111
|
+
dfi_fwdstop_hour = 18
|
|
112
|
+
dfi_fwdstop_minute = 30
|
|
113
|
+
dfi_fwdstop_second = 0
|
|
114
|
+
/
|
|
115
|
+
|
|
116
|
+
&physics
|
|
117
|
+
chem_opt = 0
|
|
118
|
+
mp_physics = 2, 2, 2
|
|
119
|
+
progn = 0, 0, 0
|
|
120
|
+
mp_zero_out = 2
|
|
121
|
+
mp_zero_out_thresh = 1e-08
|
|
122
|
+
do_radar_ref = 1
|
|
123
|
+
gsfcgce_hail = 0
|
|
124
|
+
gsfcgce_2ice = 0
|
|
125
|
+
no_mp_heating = 0
|
|
126
|
+
ra_lw_physics = 4, 4, 4
|
|
127
|
+
ra_sw_physics = 4, 4, 4
|
|
128
|
+
radt = 15, 15, 10
|
|
129
|
+
sf_sfclay_physics = 1, 1, 1
|
|
130
|
+
iz0tlnd = 1
|
|
131
|
+
sf_surface_physics = 2, 2, 2
|
|
132
|
+
sf_urban_physics = 1, 1, 1
|
|
133
|
+
bl_pbl_physics = 1, 1, 1
|
|
134
|
+
bl_mynn_tkeadvect = .true., .true., .true.
|
|
135
|
+
ysu_topdown_pblmix = 1
|
|
136
|
+
topo_wind = 1
|
|
137
|
+
bldt = 0, 0, 0
|
|
138
|
+
opt_thcnd = 2
|
|
139
|
+
grav_settling = 2, 2, 2
|
|
140
|
+
cu_physics = 1, 1, 0
|
|
141
|
+
ishallow = 0
|
|
142
|
+
cudt = 0, 0, 0
|
|
143
|
+
kfeta_trigger = 1
|
|
144
|
+
cu_rad_feedback = .true., .true., .true.
|
|
145
|
+
cugd_avedx = 1
|
|
146
|
+
isfflx = 1
|
|
147
|
+
ifsnow = 0
|
|
148
|
+
icloud = 1
|
|
149
|
+
surface_input_source = 1
|
|
150
|
+
num_land_cat = 21
|
|
151
|
+
num_soil_cat = 16
|
|
152
|
+
usemonalb = .true.
|
|
153
|
+
sst_update = 0
|
|
154
|
+
num_soil_layers = 4
|
|
155
|
+
maxiens = 1
|
|
156
|
+
maxens = 3
|
|
157
|
+
maxens2 = 3
|
|
158
|
+
maxens3 = 16
|
|
159
|
+
ensdim = 144
|
|
160
|
+
slope_rad = 1
|
|
161
|
+
topo_shading = 1
|
|
162
|
+
shadlen = 25000.0
|
|
163
|
+
sf_ocean_physics = 0
|
|
164
|
+
oml_hml0 = 50
|
|
165
|
+
oml_gamma = 0.14
|
|
166
|
+
isftcflx = 0
|
|
167
|
+
fractional_seaice = 0
|
|
168
|
+
/
|
|
169
|
+
|
|
170
|
+
&fdda
|
|
171
|
+
obs_nudge_opt = 0, 0, 0
|
|
172
|
+
max_obs = 36000
|
|
173
|
+
fdda_start = 360.0, 360.0, 360.0
|
|
174
|
+
fdda_end = 99999.0, 99999.0, 99999.0
|
|
175
|
+
obs_nudge_wind = 1, 1, 1
|
|
176
|
+
obs_coef_wind = 0.0004, 0.0004, 0.0004
|
|
177
|
+
obs_nudge_temp = 1, 1, 1
|
|
178
|
+
obs_coef_temp = 0.0004, 0.0004, 0.0004
|
|
179
|
+
obs_nudge_mois = 1, 1, 1
|
|
180
|
+
obs_coef_mois = 2e-05, 2e-05, 2e-05
|
|
181
|
+
obs_rinxy = 240.0, 60.0, 180.0
|
|
182
|
+
obs_rinsig = 0.1
|
|
183
|
+
obs_twindo = 0.666667
|
|
184
|
+
obs_npfi = 10
|
|
185
|
+
obs_ionf = 2
|
|
186
|
+
obs_idynin = 0
|
|
187
|
+
obs_dtramp = 40.0
|
|
188
|
+
obs_ipf_errob = .true.
|
|
189
|
+
obs_ipf_nudob = .true.
|
|
190
|
+
obs_ipf_in4dob = .true.
|
|
191
|
+
grid_fdda = 0, 0
|
|
192
|
+
gfdda_inname = 'wrffdda_d<domain>'
|
|
193
|
+
gfdda_end_h = 72, 72
|
|
194
|
+
io_form_gfdda = 2
|
|
195
|
+
fgdt = 0, 0
|
|
196
|
+
if_no_pbl_nudging_uv = 0, 0
|
|
197
|
+
if_no_pbl_nudging_t = 1, 1
|
|
198
|
+
if_no_pbl_nudging_q = 1, 1
|
|
199
|
+
guv = 0.0004, 0.0004
|
|
200
|
+
gt = 0.0004, 0.0004
|
|
201
|
+
gq = 0.0004, 0.0004
|
|
202
|
+
if_ramping = 0
|
|
203
|
+
dtramp_min = 60
|
|
204
|
+
/
|
|
205
|
+
|
|
206
|
+
&dynamics
|
|
207
|
+
rk_ord = 3
|
|
208
|
+
w_damping = 1
|
|
209
|
+
diff_opt = 2
|
|
210
|
+
km_opt = 4
|
|
211
|
+
diff_6th_opt = 2, 2, 2
|
|
212
|
+
diff_6th_factor = 0.12, 0.12, 0.12
|
|
213
|
+
use_theta_m = 1
|
|
214
|
+
use_q_diabatic = 1
|
|
215
|
+
base_temp = 290.0
|
|
216
|
+
use_baseparam_fr_nml = .true.
|
|
217
|
+
damp_opt = 3
|
|
218
|
+
zdamp = 5000.0, 5000.0, 5000.0
|
|
219
|
+
dampcoef = 0.2, 0.2, 0.2
|
|
220
|
+
khdif = 0, 0, 0
|
|
221
|
+
kvdif = 0, 0, 0
|
|
222
|
+
non_hydrostatic = .true., .true., .true.
|
|
223
|
+
moist_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
224
|
+
moist_adv_dfi_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
225
|
+
scalar_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
226
|
+
chem_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
227
|
+
tracer_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
228
|
+
tke_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
229
|
+
gwd_opt = 0
|
|
230
|
+
/
|
|
231
|
+
|
|
232
|
+
&bdy_control
|
|
233
|
+
spec_bdy_width = 5
|
|
234
|
+
spec_zone = 1
|
|
235
|
+
relax_zone = 4
|
|
236
|
+
specified = .true., .false., .false.
|
|
237
|
+
nested = .false., .true., .true.
|
|
238
|
+
constant_bc = .true.
|
|
239
|
+
have_bcs_moist = .false.
|
|
240
|
+
have_bcs_scalar = .false.
|
|
241
|
+
/
|
|
242
|
+
|
|
243
|
+
&tc
|
|
244
|
+
insert_bogus_storm = .false.
|
|
245
|
+
remove_storm = .false.
|
|
246
|
+
num_storm = 1
|
|
247
|
+
latc_loc = 25.0
|
|
248
|
+
lonc_loc = 127.0
|
|
249
|
+
vmax_meters_per_second = 60.0
|
|
250
|
+
rmax = 60000.0
|
|
251
|
+
vmax_ratio = 0.85
|
|
252
|
+
/
|
|
253
|
+
|
|
254
|
+
&grib2
|
|
255
|
+
/
|
|
256
|
+
|
|
257
|
+
&namelist_quilt
|
|
258
|
+
nio_tasks_per_group = 0
|
|
259
|
+
nio_groups = 1
|
|
260
|
+
/
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
&time_control
|
|
2
|
+
run_days = 0
|
|
3
|
+
run_hours = 72
|
|
4
|
+
run_minutes = 0
|
|
5
|
+
run_seconds = 0
|
|
6
|
+
start_year = 2022, 2022, 2022
|
|
7
|
+
start_month = 5, 5, 5
|
|
8
|
+
start_day = 19, 19, 19
|
|
9
|
+
start_hour = 18, 18, 18
|
|
10
|
+
start_minute = 0, 0, 0
|
|
11
|
+
start_second = 0, 0, 0
|
|
12
|
+
end_year = 2022, 2022, 2022
|
|
13
|
+
end_month = 5, 5, 5
|
|
14
|
+
end_day = 22, 22, 22
|
|
15
|
+
end_hour = 18, 18, 18
|
|
16
|
+
end_minute = 0, 0, 0
|
|
17
|
+
end_second = 0, 0, 0
|
|
18
|
+
interval_seconds = 10800
|
|
19
|
+
input_from_file = .true., .true., .true.
|
|
20
|
+
fine_input_stream = 0, 0, 2
|
|
21
|
+
history_interval = 180, 180, 60
|
|
22
|
+
frames_per_outfile = 1000, 1000, 1000
|
|
23
|
+
history_outname = 'wrfout_d<domain>'
|
|
24
|
+
restart = .false.
|
|
25
|
+
restart_interval = 5000
|
|
26
|
+
override_restart_timers = .false.
|
|
27
|
+
io_form_history = 2
|
|
28
|
+
io_form_restart = 2
|
|
29
|
+
io_form_input = 2
|
|
30
|
+
io_form_boundary = 2
|
|
31
|
+
io_form_auxinput4 = 2
|
|
32
|
+
io_form_auxinput2 = 2
|
|
33
|
+
debug_level = 0
|
|
34
|
+
auxinput1_inname = './met_em.d<domain>.<date>'
|
|
35
|
+
auxinput4_inname = 'wrflowinp_d<domain>'
|
|
36
|
+
auxinput4_interval_s = 10800, 10800, 10800
|
|
37
|
+
inputout_interval = 180
|
|
38
|
+
input_outname = 'wrfvar_d<domain>_<date>'
|
|
39
|
+
adjust_output_times = .true.
|
|
40
|
+
/
|
|
41
|
+
|
|
42
|
+
&domains
|
|
43
|
+
time_step = 180
|
|
44
|
+
time_step_fract_num = 0
|
|
45
|
+
time_step_fract_den = 1
|
|
46
|
+
max_dom = 2
|
|
47
|
+
time_step_dfi = 0
|
|
48
|
+
s_we = 1, 1, 1
|
|
49
|
+
e_we = 110, 151, 133
|
|
50
|
+
s_sn = 1, 1, 1
|
|
51
|
+
e_sn = 120, 181, 133
|
|
52
|
+
s_vert = 1, 1, 1
|
|
53
|
+
e_vert = 45, 45, 57
|
|
54
|
+
num_metgrid_levels = 38
|
|
55
|
+
num_metgrid_soil_levels = 3
|
|
56
|
+
p_top_requested = 5000
|
|
57
|
+
vert_refine_fact = 1
|
|
58
|
+
interp_theta = .false.
|
|
59
|
+
hypsometric_opt = 2
|
|
60
|
+
interp_type = 2
|
|
61
|
+
extrap_type = 2
|
|
62
|
+
t_extrap_type = 2
|
|
63
|
+
lowest_lev_from_sfc = .false.
|
|
64
|
+
force_sfc_in_vinterp = 1
|
|
65
|
+
use_surface = .true.
|
|
66
|
+
dx = 30000, 10000, 3333.333
|
|
67
|
+
dy = 30000, 10000, 3333.333
|
|
68
|
+
grid_id = 1, 2, 3
|
|
69
|
+
parent_id = 1, 1, 2
|
|
70
|
+
i_parent_start = 1, 35, 40
|
|
71
|
+
j_parent_start = 1, 34, 40
|
|
72
|
+
parent_grid_ratio = 1, 3, 3
|
|
73
|
+
parent_time_step_ratio = 1, 3, 4
|
|
74
|
+
feedback = 1
|
|
75
|
+
smooth_option = 2
|
|
76
|
+
nproc_x = -1
|
|
77
|
+
nproc_y = -1
|
|
78
|
+
numtiles = 6
|
|
79
|
+
use_adaptive_time_step = .false.
|
|
80
|
+
step_to_output_time = .true.
|
|
81
|
+
target_cfl = 1.1, 1.1, 1.1
|
|
82
|
+
max_step_increase_pct = 5, 51, 51
|
|
83
|
+
starting_time_step = 120, 40, 10
|
|
84
|
+
max_time_step = 240, 80, 20
|
|
85
|
+
min_time_step = 60, 20, 10
|
|
86
|
+
adaptation_domain = 1
|
|
87
|
+
/
|
|
88
|
+
|
|
89
|
+
&dfi_control
|
|
90
|
+
dfi_opt = 0
|
|
91
|
+
dfi_nfilter = 7
|
|
92
|
+
dfi_write_filtered_input = .true.
|
|
93
|
+
dfi_write_dfi_history = .false.
|
|
94
|
+
dfi_cutoff_seconds = 3600
|
|
95
|
+
dfi_time_dim = 9000
|
|
96
|
+
dfi_bckstop_year = 9991
|
|
97
|
+
dfi_bckstop_month = 9992
|
|
98
|
+
dfi_bckstop_day = 9993
|
|
99
|
+
dfi_bckstop_hour = 9994
|
|
100
|
+
dfi_bckstop_minute = 0
|
|
101
|
+
dfi_bckstop_second = 0
|
|
102
|
+
dfi_fwdstop_year = 8881
|
|
103
|
+
dfi_fwdstop_month = 8882
|
|
104
|
+
dfi_fwdstop_day = 8883
|
|
105
|
+
dfi_fwdstop_hour = 8884
|
|
106
|
+
dfi_fwdstop_minute = 30
|
|
107
|
+
dfi_fwdstop_second = 0
|
|
108
|
+
/
|
|
109
|
+
|
|
110
|
+
&physics
|
|
111
|
+
chem_opt = 0
|
|
112
|
+
mp_physics = 2, 2, 2
|
|
113
|
+
progn = 0, 0, 0
|
|
114
|
+
mp_zero_out = 2
|
|
115
|
+
mp_zero_out_thresh = 1e-08
|
|
116
|
+
do_radar_ref = 1
|
|
117
|
+
gsfcgce_hail = 0
|
|
118
|
+
gsfcgce_2ice = 0
|
|
119
|
+
no_mp_heating = 0
|
|
120
|
+
ra_lw_physics = 4, 4, 4
|
|
121
|
+
ra_sw_physics = 4, 4, 4
|
|
122
|
+
radt = 15, 15, 10
|
|
123
|
+
sf_sfclay_physics = 1, 1, 1
|
|
124
|
+
iz0tlnd = 1
|
|
125
|
+
sf_surface_physics = 2, 2, 2
|
|
126
|
+
sf_urban_physics = 1, 1, 1
|
|
127
|
+
bl_pbl_physics = 1, 1, 1
|
|
128
|
+
bl_mynn_tkeadvect = .true., .true., .true.
|
|
129
|
+
ysu_topdown_pblmix = 1
|
|
130
|
+
topo_wind = 1
|
|
131
|
+
bldt = 0, 0, 0
|
|
132
|
+
opt_thcnd = 2
|
|
133
|
+
grav_settling = 2, 2, 2
|
|
134
|
+
cu_physics = 1, 1, 0
|
|
135
|
+
ishallow = 0
|
|
136
|
+
cudt = 0, 0, 0
|
|
137
|
+
kfeta_trigger = 1
|
|
138
|
+
cu_rad_feedback = .true., .true., .true.
|
|
139
|
+
cugd_avedx = 1
|
|
140
|
+
isfflx = 1
|
|
141
|
+
ifsnow = 0
|
|
142
|
+
icloud = 1
|
|
143
|
+
surface_input_source = 1
|
|
144
|
+
num_land_cat = 21
|
|
145
|
+
num_soil_cat = 16
|
|
146
|
+
usemonalb = .true.
|
|
147
|
+
rdlai2d = .true.
|
|
148
|
+
sst_update = 1
|
|
149
|
+
num_soil_layers = 4
|
|
150
|
+
maxiens = 1
|
|
151
|
+
maxens = 3
|
|
152
|
+
maxens2 = 3
|
|
153
|
+
maxens3 = 16
|
|
154
|
+
ensdim = 144
|
|
155
|
+
slope_rad = 1
|
|
156
|
+
topo_shading = 1
|
|
157
|
+
shadlen = 25000.0
|
|
158
|
+
sf_ocean_physics = 0
|
|
159
|
+
oml_hml0 = 50
|
|
160
|
+
oml_gamma = 0.14
|
|
161
|
+
isftcflx = 0
|
|
162
|
+
fractional_seaice = 0
|
|
163
|
+
/
|
|
164
|
+
|
|
165
|
+
&fdda
|
|
166
|
+
obs_nudge_opt = 0, 0, 0
|
|
167
|
+
max_obs = 36000
|
|
168
|
+
fdda_start = 360.0, 360.0, 360.0
|
|
169
|
+
fdda_end = 99999.0, 99999.0, 99999.0
|
|
170
|
+
obs_nudge_wind = 1, 1, 1
|
|
171
|
+
obs_coef_wind = 0.0004, 0.0004, 0.0004
|
|
172
|
+
obs_nudge_temp = 1, 1, 1
|
|
173
|
+
obs_coef_temp = 0.0004, 0.0004, 0.0004
|
|
174
|
+
obs_nudge_mois = 1, 1, 1
|
|
175
|
+
obs_coef_mois = 2e-05, 2e-05, 2e-05
|
|
176
|
+
obs_rinxy = 240.0, 60.0, 180.0
|
|
177
|
+
obs_rinsig = 0.1
|
|
178
|
+
obs_twindo = 0.666667
|
|
179
|
+
obs_npfi = 10
|
|
180
|
+
obs_ionf = 2
|
|
181
|
+
obs_idynin = 0
|
|
182
|
+
obs_dtramp = 40.0
|
|
183
|
+
obs_ipf_errob = .true.
|
|
184
|
+
obs_ipf_nudob = .true.
|
|
185
|
+
obs_ipf_in4dob = .true.
|
|
186
|
+
grid_fdda = 0, 0
|
|
187
|
+
gfdda_inname = 'wrffdda_d<domain>'
|
|
188
|
+
gfdda_end_h = 72, 72
|
|
189
|
+
io_form_gfdda = 2
|
|
190
|
+
fgdt = 0, 0
|
|
191
|
+
if_no_pbl_nudging_uv = 0, 0
|
|
192
|
+
if_no_pbl_nudging_t = 1, 1
|
|
193
|
+
if_no_pbl_nudging_q = 1, 1
|
|
194
|
+
guv = 0.0004, 0.0004
|
|
195
|
+
gt = 0.0004, 0.0004
|
|
196
|
+
gq = 0.0004, 0.0004
|
|
197
|
+
if_ramping = 0
|
|
198
|
+
dtramp_min = 60
|
|
199
|
+
/
|
|
200
|
+
|
|
201
|
+
&dynamics
|
|
202
|
+
rk_ord = 3
|
|
203
|
+
w_damping = 1
|
|
204
|
+
diff_opt = 2
|
|
205
|
+
km_opt = 4
|
|
206
|
+
diff_6th_opt = 2, 2, 2
|
|
207
|
+
diff_6th_factor = 0.12, 0.12, 0.12
|
|
208
|
+
use_theta_m = 1
|
|
209
|
+
use_q_diabatic = 1
|
|
210
|
+
base_temp = 290.0
|
|
211
|
+
use_baseparam_fr_nml = .true.
|
|
212
|
+
damp_opt = 3
|
|
213
|
+
zdamp = 5000.0, 5000.0, 5000.0
|
|
214
|
+
dampcoef = 0.2, 0.2, 0.2
|
|
215
|
+
khdif = 0, 0, 0
|
|
216
|
+
kvdif = 0, 0, 0
|
|
217
|
+
non_hydrostatic = .true., .true., .true.
|
|
218
|
+
use_input_w = .true.
|
|
219
|
+
moist_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
220
|
+
moist_adv_dfi_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
221
|
+
scalar_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
222
|
+
chem_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
223
|
+
tracer_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
224
|
+
tke_adv_opt = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
|
225
|
+
gwd_opt = 0
|
|
226
|
+
/
|
|
227
|
+
|
|
228
|
+
&bdy_control
|
|
229
|
+
spec_bdy_width = 5
|
|
230
|
+
spec_zone = 1
|
|
231
|
+
relax_zone = 4
|
|
232
|
+
specified = .true., .false., .false.
|
|
233
|
+
nested = .false., .true., .true.
|
|
234
|
+
constant_bc = .false.
|
|
235
|
+
have_bcs_moist = .false.
|
|
236
|
+
have_bcs_scalar = .false.
|
|
237
|
+
/
|
|
238
|
+
|
|
239
|
+
&tc
|
|
240
|
+
insert_bogus_storm = .false.
|
|
241
|
+
remove_storm = .false.
|
|
242
|
+
num_storm = 1
|
|
243
|
+
latc_loc = 25.0
|
|
244
|
+
lonc_loc = 127.0
|
|
245
|
+
vmax_meters_per_second = 60.0
|
|
246
|
+
rmax = 60000.0
|
|
247
|
+
vmax_ratio = 0.85
|
|
248
|
+
/
|
|
249
|
+
|
|
250
|
+
&grib2
|
|
251
|
+
/
|
|
252
|
+
|
|
253
|
+
&namelist_quilt
|
|
254
|
+
nio_tasks_per_group = 0
|
|
255
|
+
nio_groups = 1
|
|
256
|
+
/
|