forked from ESCOMP/CTSM
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ESCOMP#43 from ekluzek/shbangandcheckdir
Change shebang lines, abort if direction file not set, add a compset
- Loading branch information
Showing
6 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ core.* | |
*.gz | ||
*.log | ||
cime_config/buildnmlc | ||
__pycache__ | ||
|
||
# test and case directories | ||
tests/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python3 | ||
""" | ||
Build the mosart component library | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0"?> | ||
|
||
<compsets version="2.0"> | ||
|
||
<help> | ||
========================================= | ||
compset naming convention | ||
========================================= | ||
The compset longname below has the specified order | ||
atm, lnd, ice, ocn, river, glc wave cesm-options | ||
|
||
The notation for the compset longname is | ||
TIME_ATM[%phys]_LND[%phys]_ICE[%phys]_OCN[%phys]_ROF[%phys]_GLC[%phys]_WAV[%phys][_BGC%phys] | ||
Where for the CAM specific compsets below the following is supported | ||
TIME = Time period (e.g. 2000, HIST, RCP8...) | ||
ATM = [CAM40, CAM50, CAM55, CAM60] | ||
LND = [CLM45, CLM50, DLND, SLND] | ||
ICE = [CICE, DICE, SICE] | ||
OCN = [DOCN, SOCN, POP2, MOM] | ||
ROF = [RTM, MOSART, MIZUROUTE, DROF, SROF] | ||
GLC = [CISM1, CISM2, SGLC] | ||
WAV = [SWAV, WWW] | ||
BGC = optional BGC scenario | ||
|
||
The OPTIONAL %phys attributes specify submodes of the given system | ||
For example DOCN%DOM is the data ocean model for DOCN | ||
ALL the possible %phys choices for each component are listed | ||
with the -list command for create_newcase | ||
ALL data models must have a %phys option that corresponds to the data model mode | ||
|
||
Each compset node is associated with the following elements | ||
- lname | ||
- alias | ||
- science_support (if this compset is supported scientifically with control simulations) | ||
</help> | ||
|
||
<!-- R compsets --> | ||
|
||
<compset> | ||
<alias>R2000MOSART</alias> | ||
<lname>2000_SATM_DLND%LCPL_SICE_SOCN_MIZUROUTE_SGLC_SWAV</lname> | ||
</compset> | ||
|
||
</compsets> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters