Hi all,
I intend to regrid an fv09 Cam-Chem_ic_nudge.cam.i.2010-01-08-00000.nc file onto a SE grid. There were no errors shown in the log file during the regridding process. However, when I use it as the ncdata to run CESM2.2, I meet the following error in both the atm.log and cesm.log files:
ERROR: DYN_FIELD_EXISTS: U was not present in the input file
I checked the data before and after regridding, and it seems that the wind-related variables have disappeared in the regridded file.
Below is the code I used. Could you please advise where the issue might be?
Many thanks
I intend to regrid an fv09 Cam-Chem_ic_nudge.cam.i.2010-01-08-00000.nc file onto a SE grid. There were no errors shown in the log file during the regridding process. However, when I use it as the ncdata to run CESM2.2, I meet the following error in both the atm.log and cesm.log files:
ERROR: DYN_FIELD_EXISTS: U was not present in the input file
I checked the data before and after regridding, and it seems that the wind-related variables have disappeared in the regridded file.
Below is the code I used. Could you please advise where the issue might be?
module load use.own
module load esmf/8.6.1
module load libs/gcc/nco/4.8.1
export srcgrid=f09
export dstgrid=ne0np4.UK_ne30x16
export srcgridfile="/mnt/iusers01/fatpou01/sees01/s29826zs/scratch/MUSICARE/ne0np4.UK_ne30x16/inic/fv0.9x1.25_141008.nc"
export dstgridfile="/mnt/iusers01/fatpou01/sees01/s29826zs/scratch/MUSICARE/ne0np4.UK_ne30x16/grids/UK_ne30x16_np4_SCRIP.nc"
export srcinitfile="/mnt/iusers01/fatpou01/sees01/s29826zs/scratch/Projects/archive/2.2project/cam-chem_ic_nudge/atm/hist/cam-chem_ic_nudge.cam.i.2010-01-08-00000.nc"
export dstinitfile="/mnt/iusers01/fatpou01/sees01/s29826zs/scratch/MUSICARE/ne0np4.UK_ne30x16/inic/test.nc"
ESMF_RegridWeightGen --ignore_unmapped --method conserve --weight map_${srcgrid}_to_${dstgrid}.nc --source ${srcgridfile} --destination ${dstgridfile}
ncremap -m ./map_${srcgrid}_to_${dstgrid}.nc -i ${srcinitfile} -o ${dstinitfile}
Many thanks