Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

ZERO VALUES IN RAINC AND RAINNC

utkarsh-7

New member
Hi,
I was trying to run the WRF model to see the precipitation data during the storm, but every time in the WRF output I get zero values in the RAINC and RAINNC variables. So is there some particular namelist configuration or some other output variable in the WRF output that gives the precipitation data?

Attached both the namelist files for reference -
Namelist.wps -
&share
nocolons = .true.
max_dom = 3
start_date = '2021-07-09_00:00:00', '2021-07-09_00:00:00', '2021-07-09_00:00:00'
end_date = '2021-07-11_00:00:00', '2021-07-11_00:00:00', '2021-07-11_00:00:00'
interval_seconds = 10800
/

&geogrid
parent_id = 1, 1, 2,
parent_grid_ratio = 1, 2, 2,
i_parent_start = 1, 55, 60
j_parent_start = 1, 38, 40
e_we = 200, 199, 171
e_sn = 150, 151, 161
map_proj = 'lambert'
dx = 12000
dy = 12000
ref_lon = -74.50
ref_lat = 41.50
geog_data_res = 'lowres', 'lowres','lowres'
geog_data_path = '/wrf_29/DATA/geog/WPS_GEOG_LOW_RES'
truelat1 = 30.0
truelat2 = 60.0
stand_lon = -74.50
/

&metgrid
fg_name = 'FILE'
/

Namelist.input -

&time_control
start_year = 2021, 2021, 2021
start_month = 7, 7, 7
start_day = 09, 09, 09
start_hour = 00, 00, 00
end_year = 2021, 2021, 2021
end_month = 7, 7, 7
end_day = 11, 11 ,11
end_hour = 00, 00, 00
interval_seconds = 10800
input_from_file = .true., .true.,.true.
history_interval = 60, 60, 60
frames_per_outfile = 1000, 1000, 1000
restart = .false.
restart_interval = 7200
io_form_history = 2
io_form_restart = 2
io_form_input = 2
io_form_boundary = 2
start_minute = 0, 0, 0
start_second = 0, 0, 0
end_minute = 0, 0, 0
end_second = 0, 0, 0
nocolons = .true.
/

&domains
time_step = 72
time_step_fract_num = 0
time_step_fract_den = 1
max_dom = 3
e_we = 200, 199, 171
e_sn = 150, 151, 161
e_vert = 33, 33, 33
p_top_requested = 5000
num_metgrid_levels = 34
num_metgrid_soil_levels = 4
dx = 12000.0,
dy = 12000.0,
grid_id = 1, 2, 3
parent_id = 1, 1, 2
i_parent_start = 1, 55, 60
j_parent_start = 1, 38, 40
parent_grid_ratio = 1, 2, 2
parent_time_step_ratio = 1, 2, 2
feedback = 1
smooth_option = 0
sfcp_to_sfcp = .true.
/

&physics
physics_suite = 'CONUS'
mp_physics = 0, 0, 0
cu_physics = 0, 0, 0
radt = 9, 3, 3
bldt = 0, 0, 0
cudt = 0, 0, 0
icloud = 0
num_land_cat = 21
sf_urban_physics = 1, 1, 1
/

&dynamics
hybrid_opt = 2
w_damping = 0
diff_opt = 1, 1, 1
km_opt = 4, 4, 4
diff_6th_opt = 0, 0, 0
diff_6th_factor = 0.12, 0.12, 0.12
base_temp = 290.0
damp_opt = 3
zdamp = 5000.0, 5000.0, 5000.0
dampcoef = 0.2, 0.2, 0.2
khdif = 0, 0, 0
kvdif = 0, 0, 0
/

&bdy_control
spec_bdy_width = 5
specified = .true.
/

&namelist_quilt
/
 
There are a few issues here:

(1) In your namelist.input, you have the options:
mp_physics = 0, 0, 0
cu_physics = 0, 0, 0

This means that you turn off microphysics and cumulus , which is physically unreasonable. Please select correct options, for example,
mp_physics = 8, 8, 8
cu_physics = 16, 16, 0

(2) please set dx and dy for all domains, i.e.,
dx = 12000.0, 6000, 2000,
dy = 12000.0, 6000, 2000
 
Top