https://github.com/e3sm-project/iesm
The Integrated Earth System Model (iESM) couples GCAM (http://www.globalchange.umd.edu/gcam/) to the Community Earth System Model
https://github.com/e3sm-project/iesm
climate-model climate-science economics-models
Last synced: 7 months ago
JSON representation
The Integrated Earth System Model (iESM) couples GCAM (http://www.globalchange.umd.edu/gcam/) to the Community Earth System Model
- Host: GitHub
- URL: https://github.com/e3sm-project/iesm
- Owner: E3SM-Project
- License: other
- Created: 2017-06-07T18:27:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T13:53:22.000Z (over 8 years ago)
- Last Synced: 2025-02-01T08:23:29.736Z (8 months ago)
- Topics: climate-model, climate-science, economics-models
- Language: Fortran
- Homepage:
- Size: 43 MB
- Stars: 14
- Watchers: 153
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.cesm
- Changelog: ChangeLog
- License: license.txt
Awesome Lists containing this project
README
The Community Climate System Model version 4.0 (CCSM4.0)
http://www.ccsm.ucar.edu
See the CCSM web site for documentation and information.
For commits to the ccsm svn repo
1) check out the latest ccsm4 tag but do not populate external directories
> svn co --ignore-externals $SVNREPO/ccsm4/tags/ccsm4_0_alpha## my_sandbox
> svn co -N $SVNREPO/ccsm4/tags/ccsm4_0_alpha## my_sandbox2) modify the file SVN_EXTERNAL_DIRECTORIES with any changes to
component tags
> cd my_sandbox
> emacs SVN_EXTERNAL_DIRECTORIES3) set the property for the external definitions - don't forget the dot at the end
> svn propset svn:externals -F SVN_EXTERNAL_DIRECTORIES .4) populate your sandbox with the external files
> svn update5) test
6) document your mods
> cp ChangeLog_template ChangeLog.new
> cat ChangeLog >> ChangeLog.new
> emacs ChangeLog.new
> mv ChangeLog.new ChangeLog7) copy your sandbox to a new tag in the repository
> svn copy . $SVNREPO/ccsm4/tags/ccsm4_0_alpha## -m "created tag ccsm4_0_alpha##"