./wrf.exe question

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

2023xiaoli -a

New member
Hello, everyone. I have a problem. I'm running/ wrf. Exe, there is an error that can't be solved. I don't know if you know something about the solution. My error report is as follows. It will appear at last,your application terminated with the exit string :Terminated (signal 15)
 

Attachments

Your namelist.inout indicates that this is a nested case. However, you only specify grid intervals for D0. Some other options are also not correct. For example, the following should be changed from
Code:
 dx                                  = 9000,
 dy                                  = 9000,
 parent_grid_ratio                   = 1,     5,    5,
 parent_time_step_ratio              = 1,     3,    3,
to
Code:
 dx                                  = 9000, 3000, 1000,
 dy                                  = 9000, 3000, 1000,
 parent_grid_ratio                   = 1,     3,    3,
 parent_time_step_ratio              = 1,     3,    3,

Please double check your options to make sure they are correctly specified, then rerun the case.
 
Back
Top