Skip to content

Commit 5aeb40b

Browse files
authored
Merge pull request #59 from GEOS-ESM/feature/mmanyin/chem_gmi_uptick_202501
fix QV feedback, and uptick CHEM/GMI
2 parents 2c66821 + c52f7da commit 5aeb40b

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

components.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fvdycore:
6161
GEOSchem_GridComp:
6262
local: ./src/Components/GEOSctm_GridComp/@GEOSchem_GridComp
6363
remote: ../GEOSchem_GridComp.git
64-
tag: v1.16.0
64+
tag: v1.16.1
6565
develop: develop
6666

6767
HEMCO:
@@ -104,7 +104,7 @@ TR:
104104
GMI:
105105
local: ./src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/@GMI
106106
remote: ../GMI.git
107-
tag: v1.5.0
107+
tag: v1.5.1
108108
develop: develop
109109

110110
StratChem:

src/Applications/GEOSctm_App/GEOSCTM.rc.tmpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# GEOS-CTM resource file, modeled after AGCM.rc
22
SimType: CTM
3-
FeedBack_QV: .FALSE.
43

54
# Atmospheric Model Configuration Parameters
65
# ------------------------------------------

src/Applications/GEOSctm_App/README

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As of November 7, 2025:
1+
As of January 6, 2026:
22

33
Requires modifications in these repo's:
44

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

15-
CHEM :
16-
pushd src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/
17-
git merge remotes/origin/feature/mmanyin/update_for_CTM
18-
popd
19-
20-
GMI :
21-
pushd src/Components/GEOSctm_GridComp/@GEOSchem_GridComp/@GMI
22-
git merge remotes/origin/feature/mmanyin/august_ctm_edits
23-
popd
24-
2515
TR will work w/ the default options in ctm_setup
2616

2717
ExtData2G is TRUE by default, using yaml files.

src/Applications/GEOSctm_App/ctm_setup

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3282,6 +3282,11 @@ else if ( $ctmGMI == TRUE ) then
32823282
cat $EXPDIR/RC/GEOS_ChemGridComp.tmp | \
32833283
awk '{ if ($1~"ENABLE_GOCART_DATA:") { sub(/TRUE/,"FALSE") }; print }' > $EXPDIR/RC/GEOS_ChemGridComp.rc
32843284

3285+
/bin/mv $EXPDIR/RC/GMI_GridComp.rc $EXPDIR/RC/GMI_GridComp.tmp
3286+
cat $EXPDIR/RC/GMI_GridComp.tmp | \
3287+
awk '{ if ($1~"FeedBack_QV:") { sub(/T/,"F") }; print }' > $EXPDIR/RC/GMI_GridComp.rc
3288+
/bin/rm $EXPDIR/RC/GMI_GridComp.tmp
3289+
32853290
if( $DATA_DRIVEN == TRUE ) then
32863291
if( $MEG == 1 ) then
32873292
/bin/mv $EXPDIR/RC/GEOS_ChemGridComp.rc $EXPDIR/RC/GEOS_ChemGridComp.tmp

0 commit comments

Comments
 (0)