-first read wrfems/conf/ems_run/arw/run_io.conf.README
Create your my_iofields_list.txt and place it in wrfems/data/tables/wrf/
Here is my example:
Code: Select all
+:h:1:UST,OLR
+:h:0:E,F
Coriolis Factor to the main history output stream (0).
We now have to call this file properly at runtime:
Step 1
edit wrfems/data/tables/wrf/namelist.arw
add these lines in &time_control section
Code: Select all
iofields_filename = "my_iofields_list.txt"
ignore_iofields_warning = T
open wrfems/strc/ems_run/Models/WRF/WRFrun.pm and add 'my_iofields'_list.txt to the symlink calls at lines 242 and 509 so these read
Code: Select all
my @tables = ($core =~ /nmm/i) ? qw(ETAMPNEW_DATA ETAMPNEW_DATA.expanded_rain RRTM_DATA GENPARM.TBL LANDUSE.TBL
SOILPARM.TBL VEGPARM.TBL MPTABLE.TBL tr49t67 tr49t85 tr67t85 gribmap.txt
grib2map.tbl co2_trans my_iofields_list.txt)
: qw(ETAMPNEW_DATA ETAMPNEW_DATA.expanded_rain RRTM_DATA RRTMG_LW_DATA RRTMG_SW_DATA
CAM_ABS_DATA CAM_AEROPT_DATA ozone.formatted ozone_lat.formatted ozone_plev.formatted
GENPARM.TBL LANDUSE.TBL SOILPARM.TBL URBPARM.TBL VEGPARM.TBL MPTABLE.TBL tr49t67
tr49t85 tr67t85 gribmap.txt grib2map.tbl my_iofields_list.txt);
Code: Select all
#
TIME_CONTROL:iofields_filename = "my_iofields_list.txt"
TIME_CONTROL:ignore_iofields_warning = T
David