Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fvdycore:
GEOSchem_GridComp:
local: ./src/Components/GEOSctm_GridComp/@GEOSchem_GridComp
remote: ../GEOSchem_GridComp.git
tag: v1.16.0
tag: v1.16.1
develop: develop

HEMCO:
Expand Down Expand Up @@ -104,7 +104,7 @@ TR:
GMI:
local: ./src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/@GMI
remote: ../GMI.git
tag: v1.5.0
tag: v1.5.1
develop: develop

StratChem:
Expand Down
1 change: 0 additions & 1 deletion src/Applications/GEOSctm_App/GEOSCTM.rc.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# GEOS-CTM resource file, modeled after AGCM.rc
SimType: CTM
FeedBack_QV: .FALSE.

# Atmospheric Model Configuration Parameters
# ------------------------------------------
Expand Down
12 changes: 1 addition & 11 deletions src/Applications/GEOSctm_App/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
As of November 7, 2025:
As of January 6, 2026:

Requires modifications in these repo's:

Expand All @@ -12,16 +12,6 @@ Requires modifications in these repo's:
git merge remotes/origin/feature/mmanyin/update_for_CTM
popd

CHEM :
pushd src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/
git merge remotes/origin/feature/mmanyin/update_for_CTM
popd

GMI :
pushd src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/@GMI
git merge remotes/origin/feature/mmanyin/august_ctm_edits
popd

TR will work w/ the default options in ctm_setup

ExtData2G is TRUE by default, using yaml files.
Expand Down
5 changes: 5 additions & 0 deletions src/Applications/GEOSctm_App/ctm_setup
Original file line number Diff line number Diff line change
Expand Up @@ -3282,6 +3282,11 @@ else if ( $ctmGMI == TRUE ) then
cat $EXPDIR/RC/GEOS_ChemGridComp.tmp | \
awk '{ if ($1~"ENABLE_GOCART_DATA:") { sub(/TRUE/,"FALSE") }; print }' > $EXPDIR/RC/GEOS_ChemGridComp.rc

/bin/mv $EXPDIR/RC/GMI_GridComp.rc $EXPDIR/RC/GMI_GridComp.tmp
cat $EXPDIR/RC/GMI_GridComp.tmp | \
awk '{ if ($1~"FeedBack_QV:") { sub(/T/,"F") }; print }' > $EXPDIR/RC/GMI_GridComp.rc
/bin/rm $EXPDIR/RC/GMI_GridComp.tmp

if( $DATA_DRIVEN == TRUE ) then
if( $MEG == 1 ) then
/bin/mv $EXPDIR/RC/GEOS_ChemGridComp.rc $EXPDIR/RC/GEOS_ChemGridComp.tmp
Expand Down