-
Notifications
You must be signed in to change notification settings - Fork 7
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 #717 from GEOS-ESM/develop
Sync develop into main
- Loading branch information
Showing
86 changed files
with
5,011 additions
and
1,485 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
539 changes: 538 additions & 1 deletion
539
GEOSagcm_GridComp/GEOSphysics_GridComp/GEOSsurface_GridComp/GEOS_SurfaceGridComp.F90
Large diffs are not rendered by default.
Oops, something went wrong.
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
29 changes: 29 additions & 0 deletions
29
.../GEOSsurface_GridComp/GEOSland_GridComp/GEOScatchCN_GridComp/Shared/clm_varpar_shared.F90
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,29 @@ | ||
module clm_varpar_shared | ||
|
||
!----------------------------------------------------------------------- | ||
!BOP | ||
! | ||
! !MODULE: clm_varpar_shared | ||
! | ||
! !DESCRIPTION: | ||
! Module containing CLM parameters | ||
! | ||
! !USES: | ||
! | ||
! !PUBLIC TYPES: | ||
implicit none | ||
save | ||
! | ||
! Define number of levels | ||
|
||
integer, parameter :: numpft_CN = 19 ! actual # of pfts (without bare), same as in Catchment-CN.clm4 | ||
|
||
integer, parameter, PUBLIC :: NUM_ZON_CN=3 ! number of CN hydrology zones per tile | ||
integer, parameter, PUBLIC :: NUM_VEG_CN=4 ! number of CN PFTs per zone | ||
integer, parameter, PUBLIC :: VAR_COL_40=40 ! number of CN column restart variables | ||
integer, parameter, PUBLIC :: VAR_PFT_40=74 ! number of CN PFT variables per column | ||
integer, parameter, PUBLIC :: VAR_COL_45=35 ! number of CN column restart variables | ||
integer, parameter, PUBLIC :: VAR_PFT_45=75 ! number of CN PFT variables per column | ||
|
||
!------------------------------------------------------------------------------ | ||
end module clm_varpar_shared |
22 changes: 22 additions & 0 deletions
22
...Sphysics_GridComp/GEOSsurface_GridComp/GEOSland_GridComp/GEOSigni_GridComp/CMakeLists.txt
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,22 @@ | ||
esma_set_this () | ||
|
||
|
||
set (resource_files | ||
GEOS_IgniGridComp.rc | ||
) | ||
|
||
install( FILES ${resource_files} | ||
DESTINATION etc | ||
) | ||
|
||
set (srcs | ||
GEOS_IgniGridComp.F90 | ||
cffwi.F90 | ||
) | ||
|
||
|
||
esma_add_library (${this} | ||
SRCS ${srcs} | ||
DEPENDENCIES MAPL GEOS_Shared esmf | ||
) | ||
|
Oops, something went wrong.