-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjust plumbing to USE cable_surface_types offline (#446)
# CABLE The same module name can indeed be USEd as there are seperate versions picked up by coupled/offline apps. However some additional plumbing needs to be tweaked offline. Please see issue for further details: Fixes #436 ## Type of change ## Checklist - [x] The new content is accessible and located in the appropriate section. - [x] I have checked that links are valid and point to the intended content. - [x] I have checked my code/text and corrected any misspellings Please add a reviewer when ready for review. <!-- readthedocs-preview cable start --> ---- 📚 Documentation preview 📚: https://cable--446.org.readthedocs.build/en/446/ <!-- readthedocs-preview cable end --> --------- Co-authored-by: Ben Schroeter <benjschroeter@gmail.com> Co-authored-by: Claire Carouge <claire.carouge@anu.edu.au>
- Loading branch information
1 parent
babfe01
commit af51c0a
Showing
10 changed files
with
117 additions
and
88 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
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,37 @@ | ||
!#define UM_CBL YES | ||
!****************************************************************************** | ||
! This source code is part of the Community Atmosphere Biosphere Land Exchange | ||
! (CABLE) model. This work is licensed under the CSIRO Open Source Software | ||
! License Agreement (variation of the BSD / MIT License).You may not use this | ||
! this file except in compliance with this License. A copy of the License is | ||
! available at https://trac.nci.org.au/trac/cable/wiki/license. | ||
!****************************************************************************** | ||
|
||
MODULE cable_surface_types_mod | ||
|
||
IMPLICIT NONE | ||
|
||
PUBLIC | ||
|
||
!----------------------------------------------------------------------------- | ||
! cable_surface_type (nml) Index | ||
INTEGER, PARAMETER :: evergreen_needleleaf = 1 | ||
INTEGER, PARAMETER :: evergreen_broadleaf = 2 | ||
INTEGER, PARAMETER :: deciduous_needleleaf = 3 | ||
INTEGER, PARAMETER :: deciduous_broadleaf = 4 | ||
INTEGER, PARAMETER :: shrub_cable = 5 | ||
INTEGER, PARAMETER :: c3_grassland = 6 | ||
INTEGER, PARAMETER :: c4_grassland = 7 | ||
INTEGER, PARAMETER :: tundra = 8 | ||
INTEGER, PARAMETER :: c3_cropland = 9 | ||
INTEGER, PARAMETER :: c4_cropland = 10 | ||
INTEGER, PARAMETER :: wetland = 11 | ||
INTEGER, PARAMETER :: empty1 = 12 | ||
INTEGER, PARAMETER :: empty2 = 13 | ||
INTEGER, PARAMETER :: barren_cable = 14 | ||
INTEGER, PARAMETER :: urban_cable = 15 | ||
INTEGER, PARAMETER :: lakes_cable = 16 | ||
INTEGER, PARAMETER :: ice_cable = 17 | ||
|
||
END MODULE cable_surface_types_mod | ||
|
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
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
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
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