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

when executing for WRF-V4.5

Dev

New member
File name that is causing troubles =
You can try 1) ensure that the input file was created with WRF v4 pre-processors, or
2) use force_use_old_data=T in the time_control record of the namelist.input file
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 333
---- ERROR: The input file appears to be from a pre-v4 version of WRF initialization routines
-------------------------------------------
 
and when I use " force_use_old_data=T"
I get below as an error:-
DYNAMICS OPTION: Eulerian Mass Coordinate
alloc_space_field: domain 1 , 48538628 bytes allocated
med_initialdata_input: calling input_input
Error trying to read metadata
Input data is acceptable to use:
---- ERROR: wrf_get_dom_ti_integer getting dimension information from dataset
dx and dy from file 1.35631564E-19 1.35631564E-19
dx and dy from namelist 15000.0000 15000.0000
---- ERROR: DX and DY do not match comparing namelist to the input file
MMINLU error on input
input_wrf.F: SIZE MISMATCH: namelist e_we = 73
input_wrf.F: SIZE MISMATCH: input file WEST-EAST_GRID_DIMENSION = 0
---- ERROR: Mismatch between namelist and input file dimensions
input_wrf.F: SIZE MISMATCH: namelist e_sn = 81
input_wrf.F: SIZE MISMATCH: input file SOUTH-NORTH_GRID_DIMENSION = 538976288
---- ERROR: Mismatch between namelist and input file dimensions
input_wrf.F: SIZE MISMATCH: namelist e_vert = 45
input_wrf.F: SIZE MISMATCH: input file BOTTOM-TOP_GRID_DIMENSION = 538976288
---- ERROR: Mismatch between namelist and input file dimensions
---- ERROR: Cannot have old input data when requesting use_theta_m=1
1 input_wrf: wrf_get_next_time current_date: Status = -102
---- ERROR: Could not find matching time in input file
NOTE: 7 namelist vs input data inconsistencies found.
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 1298
NOTE: Please check and reset these options
-------------------------------------------
 
Hi,
All of these errors indicate that your input files (if this happens when you run real.exe, then it means the met_em* files) have different domain sizes than your namelist.input file is requesting. You need to make sure you are setting the namelist variables to match those for wps.
 
metgrid data has this which is similar to what it is reading :-

:TITLE = "OUTPUT FROM METGRID V4.5" ;
:SIMULATION_START_DATE = "2023-09-10_08_00_00" ;
:WEST-EAST_GRID_DIMENSION = 73 ;
:SOUTH-NORTH_GRID_DIMENSION = 81 ;
:BOTTOM-TOP_GRID_DIMENSION = 34 ;
:WEST-EAST_PATCH_START_UNSTAG = 1 ;
:WEST-EAST_PATCH_END_UNSTAG = 72 ;
:WEST-EAST_PATCH_START_STAG = 1 ;
:WEST-EAST_PATCH_END_STAG = 73 ;
:SOUTH-NORTH_PATCH_START_UNSTAG = 1 ;
:SOUTH-NORTH_PATCH_END_UNSTAG = 80 ;
:SOUTH-NORTH_PATCH_START_STAG = 1 ;
:SOUTH-NORTH_PATCH_END_STAG = 81 ;
 
Can you attach your namelist.input file and namelist.wps file so I can take a look? Thanks!
 
sure, thank you. Please find the attached namelists
 

Attachments

  • namelist_ved.input
    10.5 KB · Views: 4
  • namelist_ved.wps
    1.3 KB · Views: 3
Thanks for sending those. Can you now do the following:

1) In the wrf running directory, issue
Code:
ls -ls >& ls.txt

2) I assume you're getting this error when running real.exe. If that's the case, then issue
Code:
ncdump -h met_em.d01.2023-09-09_00:00:00.nc >& ncdump_met.txt

or, if you are getting this error when running wrf.exe, then issue
Code:
ncdump -h wrfinput_d01 >& ncdump_wrfinput.txt

and then please attach the above *.txt files, as well as the full error log (e.g., rsl.error.0000). Thanks!
 
Thank you for your response; the issue was resolved by downloading GEOS files.
 
Last edited:
@Arya
Since it's been a while since this original thread started, do you mind starting a new, clean thread with the information specific to your simulation? Please attach any files that may be useful for us to look at. Thanks!
 
Top