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

start_em: p_top from the namelist does not match p_top from the input file.

dk619

New member
Hi All,

While running WRF I'm getting p_top mismatch error.

Timing for processing wrfinput file (stream 0) for domain 1: 32.93626 elapsed seconds
Max map factor in domain 1 = 0.00. Scale the dt in the model accordingly.
D01: Time step = 120.000000 (s)
D01: Grid Distance = 24.0000000 (km)
D01: Grid Distance Ratio dt/dx = 5.00000000 (s/km)
D01: Ratio Including Maximum Map Factor = 0.00000000 (s/km)
D01: NML defined reasonable_time_step_ratio = 6.00000000
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 560
start_em: p_top from the namelist does not match p_top from the input file.
-------------------------------------------
Abort(1) on node 0 (rank 0 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0

I've tried setting an unlimited stack limit and a few other workarounds mentioned in this forum, but none of them worked.
Also, my max map factor is 0, and I'm not sure why.

Please find attached the namelist.input, namelist.wps, and rsl.error files.
Can someone please help me figure out where I'm going wrong?

Thanks
 

Attachments

  • namelist.input
    4.3 KB · Views: 2
  • namelist.wps
    1.2 KB · Views: 2
  • rsl.error.0000
    1.7 KB · Views: 0
Pleas issue the command: "ncdump -h wrfinput_d01 | grep -I p_top" and the p_top value in wrfinput.
This is the value you should specify in your namelist.input.

Please try and let me know if you still have this p_top issue.
 
Hi,

Thanks for your response.
ncdump -h wrfinput_d01 | grep -i p_top

float P_TOP(Time) ;
P_TOP:FieldType = 104 ;
P_TOP:MemoryOrder = "0 " ;
P_TOP:description = "PRESSURE TOP OF THE MODEL" ;
P_TOP:units = "Pa" ;
P_TOP:stagger = "" ;

I dont see any value above. Did you mean to check the data value?
ncdump -v P_TOP wrfinput_d01 | tail -10

:ISLAKE = 21 ;
:ISICE = 15 ;
:ISURBAN = 13 ;
:ISOILWATER = 14 ;
:HYBRID_OPT = 2 ;
:ETAC = 0.2f ;


data:
P_TOP = 5000 ;


namelist.input already has the same value as P_TOP mentioned in the wrfinput_d01 file.
 
Top