Skip to content

Commit 620d855

Browse files
committed
Merge remote-tracking branch 'ESCOMP/cam_development' into compset_names
2 parents 3fe9175 + a12dd47 commit 620d855

File tree

16 files changed

+343
-29
lines changed

16 files changed

+343
-29
lines changed

.gitmodules

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
[submodule "atmos_phys"]
3737
path = src/atmos_phys
3838
url = https://github.com/ESCOMP/atmospheric_physics
39-
fxtag = atmos_phys0_05_000
39+
fxtag = atmos_phys0_05_001
4040
fxrequired = AlwaysRequired
4141
fxDONOTUSEurl = https://github.com/ESCOMP/atmospheric_physics
4242

@@ -144,28 +144,28 @@ fxDONOTUSEurl = https://github.com/ESCOMP/mizuRoute
144144
[submodule "ccs_config"]
145145
path = ccs_config
146146
url = https://github.com/ESMCI/ccs_config_cesm.git
147-
fxtag = ccs_config_cesm1.0.0
147+
fxtag = ccs_config_cesm1.0.7
148148
fxrequired = ToplevelRequired
149149
fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git
150150

151151
[submodule "cime"]
152152
path = cime
153153
url = https://github.com/ESMCI/cime
154-
fxtag = cime6.1.0
154+
fxtag = cime6.1.29
155155
fxrequired = ToplevelRequired
156156
fxDONOTUSEurl = https://github.com/ESMCI/cime
157157

158158
[submodule "cmeps"]
159159
path = components/cmeps
160160
url = https://github.com/ESCOMP/CMEPS.git
161-
fxtag = cmeps1.0.2
161+
fxtag = cmeps1.0.16
162162
fxrequired = ToplevelRequired
163163
fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git
164164

165165
[submodule "cdeps"]
166166
path = components/cdeps
167167
url = https://github.com/ESCOMP/CDEPS.git
168-
fxtag = cdeps1.0.48
168+
fxtag = cdeps1.0.53
169169
fxrequired = ToplevelRequired
170170
fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS.git
171171

@@ -179,7 +179,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share
179179
[submodule "parallelio"]
180180
path = libraries/parallelio
181181
url = https://github.com/NCAR/ParallelIO
182-
fxtag = pio2_6_2
182+
fxtag = pio2_6_3
183183
fxrequired = ToplevelRequired
184184
fxDONOTUSEurl = https://github.com/NCAR/ParallelIO
185185

@@ -193,13 +193,13 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CESM_CICE
193193
[submodule "clm"]
194194
path = components/clm
195195
url = https://github.com/ESCOMP/CTSM
196-
fxtag = ctsm5.2.027
196+
fxtag = ctsm5.3.002
197197
fxrequired = ToplevelRequired
198198
fxDONOTUSEurl = https://github.com/ESCOMP/CTSM
199199

200200
[submodule "fms"]
201201
path = libraries/FMS
202202
url = https://github.com/ESCOMP/FMS_interface
203-
fxtag = fi_240516
203+
fxtag = fi_240828
204204
fxrequired = ToplevelRequired
205205
fxDONOTUSEurl = https://github.com/ESCOMP/FMS_interface

bld/configure

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2191,9 +2191,9 @@ sub write_filepath
21912191

21922192
if ($simple_phys) {
21932193
print $fh "$camsrcdir/src/physics/simple\n";
2194-
print $fh "$camsrcdir/src/atmos_phys/kessler\n";
2195-
print $fh "$camsrcdir/src/atmos_phys/held_suarez\n";
2196-
print $fh "$camsrcdir/src/atmos_phys/tj2016\n";
2194+
print $fh "$camsrcdir/src/atmos_phys/schemes/kessler\n";
2195+
print $fh "$camsrcdir/src/atmos_phys/schemes/held_suarez\n";
2196+
print $fh "$camsrcdir/src/atmos_phys/schemes/tj2016\n";
21972197
}
21982198

21992199
# Weak scaling fix. This has to come before physics/cam and before dycores
@@ -2334,9 +2334,10 @@ sub write_filepath
23342334
print $fh "$camsrcdir/src/physics/cam\n";
23352335

23362336
#Add the CCPP'ized subdirectories
2337-
print $fh "$camsrcdir/src/atmos_phys/tropopause_find\n";
2338-
print $fh "$camsrcdir/src/atmos_phys/zhang_mcfarlane\n";
2339-
print $fh "$camsrcdir/src/atmos_phys/dry_adiabatic_adjust\n";
2337+
print $fh "$camsrcdir/src/atmos_phys/schemes/tropopause_find\n";
2338+
print $fh "$camsrcdir/src/atmos_phys/schemes/zhang_mcfarlane\n";
2339+
print $fh "$camsrcdir/src/atmos_phys/schemes/dry_adiabatic_adjust\n";
2340+
print $fh "$camsrcdir/src/atmos_phys/schemes/utilities\n";
23402341

23412342
# Dynamics package and test utilities
23422343
print $fh "$camsrcdir/src/dynamics/$dyn\n";
@@ -2362,8 +2363,6 @@ sub write_filepath
23622363
print $fh "$camsrcdir/src/control\n";
23632364
print $fh "$camsrcdir/src/utils\n";
23642365
print $fh "$camsrcdir/src/utils/cam_ccpp\n";
2365-
print $fh "$camsrcdir/src/atmos_phys/utilities\n";
2366-
23672366

23682367
$fh->close;
23692368
}

ccs_config

Submodule ccs_config updated 116 files

cime

Submodule cime updated 55 files

cime_config/SystemTests/plb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from CIME.SystemTests.system_tests_compare_two import SystemTestsCompareTwo
1212
from CIME.XML.standard_module_setup import *
1313
from CIME.SystemTests.test_utils.user_nl_utils import append_to_user_nl_files
14-
from CIME.utils import append_testlog
14+
from CIME.status import append_testlog
1515

1616
logger = logging.getLogger(__name__)
1717

cime_config/SystemTests/sct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from CIME.XML.standard_module_setup import *
1515
from CIME.SystemTests.test_utils.user_nl_utils import append_to_user_nl_files
1616
from CIME.test_status import *
17-
from CIME.utils import append_testlog
17+
from CIME.status import append_testlog
1818

1919

2020
logger = logging.getLogger(__name__)

cime_config/SystemTests/sub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from CIME.SystemTests.system_tests_compare_two import SystemTestsCompareTwo
1212
from CIME.XML.standard_module_setup import *
1313
from CIME.SystemTests.test_utils.user_nl_utils import append_to_user_nl_files
14-
from CIME.utils import append_testlog
14+
from CIME.status import append_testlog
1515

1616

1717
logger = logging.getLogger(__name__)

cime_config/SystemTests/tmc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from CIME.XML.standard_module_setup import *
66
from CIME.SystemTests.system_tests_common import SystemTestsCommon
77
from CIME.test_status import *
8-
from CIME.utils import append_testlog
8+
from CIME.status import append_testlog
99
from CIME.baselines.performance import get_latest_cpl_logs
1010
import glob, gzip
1111

components/clm

Submodule clm updated 135 files

0 commit comments

Comments
 (0)