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-CHEM: STOP in Noah-MP read_mp_veg_parameters

sirian

New member
WHEN I RAN WRF-CHEM, SOMETHING ERROR HAS BEEN SHOWN LIKE THIS:
D01: Ratio Including Maximum Map Factor = 2.265266 (s/km)
D01: NML defined reasonable_time_step_ratio = 6.000000
Climate GHG input from file from year 1765 to 2499
CO2 range = 277.913000000000 579.264000000000 ppm
N2O range = 274.372000000000 359.798000000000 ppb
CH4 range = 738.986000000000 997.311000000000 ppb
CFC11 range = 0.000000000000000E+000 1.400000000000000E-002 ppt
CFC12 range = 0.000000000000000E+000 2.88100000000000 ppt
Normal ending of CAMtr_volume_mixing_ratio file
GHG annual values from CAM trace gas file
Year = 2023 , Julian day = 249
CO2 = 4.238006584352245E-004 volume mixing ratio
N2O = 3.345788330264087E-007 volume mixing ratio
CH4 = 1.944125805123638E-006 volume mixing ratio
CFC11 = 2.093445666909734E-010 volume mixing ratio
CFC12 = 4.799311804936921E-010 volume mixing ratio
WARNING: Unrecognized DATASET_IDENTIFIER in subroutine READ_MP_VEG_PARAMETERS
WARNING: DATASET_IDENTIFIER = ''
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 11500

STOP in Noah-MP read_mp_veg_parameters

&&&I CAN NOT FIND HOW COULD I SOLVE THIS. PLEASE HELP ME. THANK U~
 
Hello Sirian,
I encountered the same problem: "STOP in Noah-MP read_mp_veg_parameters" when running WRF-Chem after WRF hybrid data assimilation. I would like to ask if you have any tips or solutions for this error. If you are willing to provide me with some advice, I would greatly appreciate it!
 
Hello Sirian,
I encountered the same problem: "STOP in Noah-MP read_mp_veg_parameters" when running WRF-Chem after WRF hybrid data assimilation. I would like to ask if you have any tips or solutions for this error. If you are willing to provide me with some advice, I would greatly appreciate it!
This is because the attribute MMINLU = " " in wrfinput_d01, which may be modified by WRF running. You can modifiy it by Python, for example:
import netCDF4 as nc

filename = "./wrfinput_d02"
ncfile = nc.Dataset(filename, 'r+')
ncfile.MMINLU = "MODIFIED_IGBP_MODIS_NOAH"
ncfile.ISWATER = 17
ncfile.ISLAKE = 21
ncfile.ISICE = 15
ncfile.ISURBAN = 13
ncfile.close()
 
Top