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

./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

  • _namelist.input.txt
    4.9 KB · Views: 7
  • rsl.out.0000.txt
    884.8 KB · Views: 7
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.
 
Top