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

geogrid.exe

rookie

New member
At line 141 of file gridinfo_module.f90 (unit = 10, file = 'namelist.wps')
Fortran runtime error: Cannot match namelist object name 3000

My namelist.wps:
&share
wrf_core = 'ARW',
max_dom = 3,
start_date = '2013-10-05_00:00:00','2013-10-05_00:00:00','2013-10-05_00:00:00',
end_date = '2013-10-07_18:00:00','2013-10-07_18:00:00','2013-10-05_00:00:00',
interval_seconds = 21600,
io_form_geogrid = 2,
/

&geogrid
parent_id = 1, 1, 2,
parent_grid_ratio = 1, 3, 3,
i_parent_start = 1, 31, 61,
j_parent_start = 1, 31, 61,
e_we = 120, 120, 120,
e_sn = 120, 120, 120,
geog_data_res = 'default', 'default', 'default',
dx = 9000, 3000, 1000,
dy = 9000, 3000, 1000,
map_proj = 'lambert',
ref_lat = 31.6,
ref_lon = 73.45,
truelat1 = 30.0,
truelat2 = 40.0,
stand_lon = 73.45,
geog_data_path = '/home/test/WRFV4/GEOG'
/

&ungrib
out_format = 'WPS',
prefix = 'ungrib_output/FILE'
/

&metgrid
fg_name = 'ungrib_output/FILE',
io_form_metgrid = 2,
opt_output_from_metgrid_path = 'metgrid_output/'
/
 
At line 141 of file gridinfo_module.f90 (unit = 10, file = 'namelist.wps')
Fortran runtime error: Cannot match namelist object name 3000

My namelist.wps:
&share
wrf_core = 'ARW',
max_dom = 3,
start_date = '2013-10-05_00:00:00','2013-10-05_00:00:00','2013-10-05_00:00:00',
end_date = '2013-10-07_18:00:00','2013-10-07_18:00:00','2013-10-05_00:00:00',
interval_seconds = 21600,
io_form_geogrid = 2,
/

&geogrid
parent_id = 1, 1, 2,
parent_grid_ratio = 1, 3, 3,
i_parent_start = 1, 31, 61,
j_parent_start = 1, 31, 61,
e_we = 120, 120, 120,
e_sn = 120, 120, 120,
geog_data_res = 'default', 'default', 'default',
dx = 9000, 3000, 1000,
dy = 9000, 3000, 1000,
map_proj = 'lambert',
ref_lat = 31.6,
ref_lon = 73.45,
truelat1 = 30.0,
truelat2 = 40.0,
stand_lon = 73.45,
geog_data_path = '/home/test/WRFV4/GEOG'
/

&ungrib
out_format = 'WPS',
prefix = 'ungrib_output/FILE'
/

&metgrid
fg_name = 'ungrib_output/FILE',
io_form_metgrid = 2,
opt_output_from_metgrid_path = 'metgrid_output/'
/
Try changing this
Code:
dx = 9000, 3000, 1000,
dy = 9000, 3000, 1000,

to this

Code:
dx = 9000,
dy = 9000,
 
Code:
start_date = '2013-10-05_00:00:00','2013-10-05_00:00:00','2013-10-05_00:00:00',
end_date = '2013-10-07_18:00:00','2013-10-07_18:00:00','2013-10-05_00:00:00',

also check your start and end dates
 
Please change the following namelist options from:

Code:
 e_we = 120, 120, 120,
e_sn = 120, 120, 120,
geog_data_res = 'default', 'default', 'default',
dx = 9000, 3000, 1000,
dy = 9000, 3000, 1000,

to:

Code:
 e_we = 120, 121, 121,
e_sn = 120, 121, 121,
geog_data_res = 'default', 'default', 'default',
dx = 9000, 
dy = 9000,

Then try again. Let me know if you still have issues to run geogrid.exe.
 
Top