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 V4.3ERRORS while reading one or more namelists from namelist.input

Few things that might fix this.
Code:
   end_day                 =   24,    04,   24,

to

   end_day                 =   24,    24,   24,

Fixes the date error where your end day wasn't the same across all files


Code:
   time_step                 = 60,
  
   to
  
   time_step                 = 150,

time step can be up to 6*dx (6*27 = 162) but since you are using 3:1 ratios 150 divides easier just a personal preference


Code:
   radt                      = 30, 30, 30,
  
   to
  
   radt                      = 27, 27, 27,

the wrf users guide says that it is best to have radt = to the largest dx


Code:
   cu_physics                          = 1,    1,     1,
  
   to
  
   cu_physics                          = 1,    1,     0,

cu_physics can be turned off when under ~5km resolution since the model can resolve confection explicitly


Code:
   diff_opt                          = 1,      1,      1,
  
   to
  
   diff_opt                          = 1,

this variable only needs to be set for the first domain


Code:
   specified = .true., .true., .true.,
  
   to
  
  
   specified = .true., .false., .false.,
   nested    = .false.,   .true.,  .true.,

since you are using nesting for the other two domains the specified doesn't need to be set true for all three and the nested ones are added.

1728942406751.png
 

Attachments

  • namelist.input.changes.txt
    3.5 KB · Views: 1
Few things that might fix this.
Code:
   end_day                 =   24,    04,   24,

to

   end_day                 =   24,    24,   24,

Fixes the date error where your end day wasn't the same across all files


Code:
   time_step                 = 60,
 
   to
 
   time_step                 = 150,

time step can be up to 6*dx (6*27 = 162) but since you are using 3:1 ratios 150 divides easier just a personal preference


Code:
   radt                      = 30, 30, 30,
 
   to
 
   radt                      = 27, 27, 27,

the wrf users guide says that it is best to have radt = to the largest dx


Code:
   cu_physics                          = 1,    1,     1,
 
   to
 
   cu_physics                          = 1,    1,     0,

cu_physics can be turned off when under ~5km resolution since the model can resolve confection explicitly


Code:
   diff_opt                          = 1,      1,      1,
 
   to
 
   diff_opt                          = 1,

this variable only needs to be set for the first domain


Code:
   specified = .true., .true., .true.,
 
   to
 
 
   specified = .true., .false., .false.,
   nested    = .false.,   .true.,  .true.,

since you are using nesting for the other two domains the specified doesn't need to be set true for all three and the nested ones are added.

View attachment 15930
Hello, thank you for your reply. I have modified my namelist.input according to your suggestions. Additionally, I encountered a small issue where I mistakenly typed "e_sn" as "s_sn". I have already corrected this mistake, but the error still persists. Looking forward to your response.this is my error and my namelist.input
 

Attachments

  • 屏幕截图 2024-10-15 170835.png
    屏幕截图 2024-10-15 170835.png
    40.3 KB · Views: 3
  • namelist_new.input
    3.5 KB · Views: 2
Hello, thank you for your reply. I have modified my namelist.input according to your suggestions. Additionally, I encountered a small issue where I mistakenly typed "e_sn" as "s_sn". I have already corrected this mistake, but the error still persists. Looking forward to your response.this is my error and my namelist.input
try making gwd_opt 1 across all the domains
 
Hello, thank you for your reply. I have modified my namelist.input according to your suggestions. Additionally, I encountered a small issue where I mistakenly typed "e_sn" as "s_sn". I have already corrected this mistake, but the error still persists. Looking forward to your response.this is my error and my namelist.input
I'm not sure if this is causing the issue, but can you try removing the extra "/" after gwd_opt and see if that makes any difference?
 
Top