Hi guys. I would like to ask for your assistance. I am running WRF in 3 nested domains over an HPC. Real.exe runs fine but there seems to be problem with wrf.exe. It just stops all of a sudden. I am using 16 and 64 processors for real and wrf, respectively. Using
, rsl.error shows
wrf produces the following only and then terminates the job.
wrfout_d01_2018-08-01_00:00:00
wrfout_d02_2018-08-01_00:00:00
wrfout_d03_2018-08-01_00:00:00
Here is my namelist.input
I tried looking for answers in the net, but there was no definite answers. Thanks for your help
Code:
grep -i error rsl*
Code:
WRF TILE 1 IS 234 IE 272 JS 125 JE 165
WRF NUMBER OF TILES = 1
Fatal error in PMPI_Wait: Unknown error class, error stack:
PMPI_Wait(203)........................: MPI_Wait(request=0x4a3b8f4, status=0x7ffd251757e0) failed
MPIR_Wait_impl(100)...................:
MPIDU_Complete_posted_with_error(1137): Process failed
wrf produces the following only and then terminates the job.
wrfout_d01_2018-08-01_00:00:00
wrfout_d02_2018-08-01_00:00:00
wrfout_d03_2018-08-01_00:00:00
Here is my namelist.input
Code:
&time_control
run_days = 1,
run_hours = 0,
run_minutes = 0,
run_seconds = 0,
start_year = 2018, 2018, 2018,
start_month = 08, 08, 08,
start_day = 01, 01, 01,
start_hour = 00, 00, 00,
start_minute = 00, 00, 00,
start_second = 00, 00, 00,
end_year = 2018, 2018, 2018,
end_month = 08, 08, 08,
end_day = 02, 02, 02,
end_hour = 00, 00, 00,
end_minute = 00, 00, 00,
end_second = 00, 00, 00,
interval_seconds = 21600,
input_from_file = .true., .true., .true.,
history_interval = 180, 60, 60,
frames_per_outfile = 1, 1, 1,
restart = .false.,
restart_interval = 5000,
io_form_history = 2,
io_form_restart = 2,
io_form_input = 2,
io_form_boundary = 2,
debug_level = 0,
/
&domains
eta_levels = 1.000, 0.9947, 0.9895, 0.9843, 0.979,
0.9739, 0.9684, 0.9626, 0.9564, 0.9498,
0.9426, 0.9348, 0.9262, 0.9167, 0.9062,
0.8946, 0.8816, 0.8671, 0.8509, 0.833,
0.813, 0.7909, 0.7667, 0.7402, 0.7116,
0.6809, 0.6483, 0.6141, 0.5785, 0.5419,
0.5047, 0.4672, 0.4299, 0.3931, 0.357,
0.322, 0.2883, 0.256, 0.2253, 0.1963,
0.169, 0.1435, 0.1171, 0.0952, 0.0753,
0.0571, 0.0407, 0.0257, 0.0122, 0.000,
time_step = 45,
time_step_fract_num = 0,
time_step_fract_den = 1,
max_dom = 3,
e_we = 161, 221, 311,
e_sn = 211, 261, 331,
e_vert = 50, 50, 50,
p_top_requested = 10286.1,
num_metgrid_levels = 32,
num_metgrid_soil_levels = 4,
dx = 7500, 1500, 300,
dy = 7500, 1500, 300,
grid_id = 1, 2, 3,
parent_id = 1, 1, 2,
i_parent_start = 1, 46, 77,
j_parent_start = 1, 117, 105,
parent_grid_ratio = 1, 5, 5,
parent_time_step_ratio = 1, 5, 5,
feedback = 1,
smooth_option = 0,
/
&physics
mp_physics = 6, 6, 6,
ra_lw_physics = 1, 1, 1,
ra_sw_physics = 1, 1, 1,
radt = 30, 30, 30,
sf_sfclay_physics = 1, 1, 1,
sf_surface_physics = 2, 2, 2,
bl_pbl_physics = 1, 1, 1,
bldt = 0, 0, 0,
cu_physics = 1, 1, 0,
cudt = 5, 5, 5,
isfflx = 1,
ifsnow = 0,
icloud = 1,
surface_input_source = 1,
num_land_cat = 20,
num_soil_layers = 4,
sf_urban_physics = 0, 0, 0,
maxiens = 1,
maxens = 3,
maxens2 = 3,
maxens3 = 16,
ensdim = 144,
/
&fdda
/
&dynamics
w_damping = 0,
diff_opt = 1,
km_opt = 4,
diff_6th_opt = 0, 0, 0,
diff_6th_factor = 0.12, 0.12, 0.12,
base_temp = 290.,
damp_opt = 0,
zdamp = 5000., 5000., 5000.,
dampcoef = 0.2, 0.2, 0.2,
khdif = 0, 0, 0,
kvdif = 0, 0, 0,
non_hydrostatic = .true., .true., .true.,
moist_adv_opt = 1, 1, 1,
scalar_adv_opt = 1, 1, 1,
/
&bdy_control
spec_bdy_width = 5,
spec_zone = 1,
relax_zone = 4,
specified = .true., .false., .false.,
nested = .false., .true., .true.,
/
&grib2
/
&namelist_quilt
nio_tasks_per_group = 0,
nio_groups = 1,
/
I tried looking for answers in the net, but there was no definite answers. Thanks for your help