Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

Error in HCO_Grid_ESMF_CreateCAM

sxli

llliopon
New Member
What version of the code are you using?
$ git describe
cesm2.1.1-exp17
$ ./manage_externals/checkout_externals --status --verbose
Processing externals description file : Externals.cfg
Processing externals description file : Externals_CLM.cfg
Processing externals description file : Externals_POP.cfg
Processing externals description file : Externals_CISM.cfg
Processing externals description file : Externals_CAM.cfg
Processing externals description file : Externals_HCO.cfg
Checking status of externals: clm, fates, ptclm, mosart, ww3, cime, cice, pop, cvmix, marbl, cism, source_cism, rtm, cam, clubb, hemco, hemco_src, cosp2, geoschem, chem_proc, carma,
M ./cime
modified sandbox, on cime_cesm2_1_gc_rel_01
M ./components/cam
modified sandbox, on cam_cesm2_1_1_gc_rel_01
./components/cam/chem_proc
clean sandbox, on tools/proc_atm/chem_proc/release_tags/chem_proc5_0_03_rel
./components/cam/src/chemistry/geoschem/geoschem_src
clean sandbox, on geoschem_cesm2_1_1_rel_01
M ./components/cam/src/hemco
modified sandbox, on hemco_cesm2_1_1_gc_rel_01
./components/cam/src/hemco/HEMCO
clean sandbox, on hemco_cesm2_1_1_gc_rel_01
./components/cam/src/physics/carma/base
clean sandbox, on carma/release_tags/carma3_49_rel
./components/cam/src/physics/clubb
clean sandbox, on clubb_core/release_tags/clubb_r8099_n02_rel
./components/cam/src/physics/cosp2/src
clean sandbox, on v2.0.3cesm
./components/cice
clean sandbox, on cice5_cesm2_1_1_20190321
./components/cism
clean sandbox, on release-cesm2.0.04
./components/cism/source_cism
clean sandbox, on release-cism2.1.03
./components/clm
clean sandbox, on clm_cesm2_1_gc_rel_01
./components/clm/src/fates
clean sandbox, on fates_s1.21.0_a7.0.0_br_rev2
./components/clm/tools/PTCLM
clean sandbox, on PTCLM2_180611
./components/mosart
clean sandbox, on release-cesm2.0.03
./components/pop
clean sandbox, on pop2_cesm2_1_rel_n06
./components/pop/externals/CVMix
clean sandbox, on v0.93-beta
./components/pop/externals/MARBL
clean sandbox, on cesm2.1-n00
./components/rtm
clean sandbox, on release-cesm2.0.02
./components/ww3
clean sandbox, on ww3_181001


Describe your problem or question:
I tried to run the following command with the above version of CESM:
./create_newcase --case case.FCHIST --compset FCHIST --res f09_f09_mg17 --run-unsupported

When I run ./case.submit, I get the following error:
ERROR: ABORT in HCO_ESMF_WRAPPERS. ASRT error in HCO_Grid_ESMF_CreateCAM line 1045

Line 1045 in hco_esmf_grid.F90 is:
! Create the physics decomposition ESMF mesh
CAM_PhysMesh = ESMF_MeshCreate(trim(grid_file), ESMF_FILEFORMAT_ESMFMESH, &
elementDistGrid=CAM_DistGrid, rc=RC)
ASSERT_(RC==ESMF_SUCCESS)


In atm.log, I noticed physics_grid_out=UNSET. I wonder if this is related to the error above. I am unsure how to resolve this.

I would greatly appreciate it if anyone could help me. Thanks!
 

hplin

Haipeng Lin
Moderator
Staff member
Thanks for writing.

HEMCO shouldn't have been in cesm2.1.1-exp17 (cam tag cam_cesm2_1_rel_29) -- have you made any modifications to the CAM repository?
Manage_externals shows that CAM was modified at
M ./components/cam
modified sandbox, on cam_cesm2_1_1_gc_rel_01

If you're attempting to run GEOS-Chem there is an updated release, cam_cesm2_1_1_gc_rel_01 is very old. In any case, that is unsupported development code. You may find GEOS-Chem in CESM - Geos-chem useful.
 

sxli

llliopon
New Member
Thanks for writing.

HEMCO shouldn't have been in cesm2.1.1-exp17 (cam tag cam_cesm2_1_rel_29) -- have you made any modifications to the CAM repository?
Manage_externals shows that CAM was modified at
M ./components/cam
modified sandbox, on cam_cesm2_1_1_gc_rel_01

If you're attempting to run GEOS-Chem there is an updated release, cam_cesm2_1_1_gc_rel_01 is very old. In any case, that is unsupported development code. You may find GEOS-Chem in CESM - Geos-chem useful.
Thanks for the response! I am attempting to run CESM-GC, and therefore modified CAM according to Guide to CESM 2.1 on Harvard Cannon. I will try the newer release as you suggested. Thank you very much for your reply!
 
Top