forked from ufs-community/ufs-weather-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into develop
- Loading branch information
Showing
118 changed files
with
4,903 additions
and
5,062 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
Submodule CMEPS
updated
16 files
+4 −4 | doc/source/addendum/req_attributes.rst | |
+19 −19 | doc/source/esmflds.rst | |
+1 −1 | doc/source/generic.rst | |
+66 −66 | doc/source/introduction.rst | |
+9 −10 | doc/source/prep.rst | |
+1 −1 | mediator/CMakeLists.txt | |
+1 −1 | mediator/ESMFConvenienceMacros.h | |
+1 −2 | mediator/ESMFVersionDefine.h | |
+2 −2 | mediator/Makefile | |
+9 −9 | mediator/esmFldsExchange_ufs_mod.F90 | |
+5 −5 | mediator/med.F90 | |
+3 −3 | mediator/med_fraction_mod.F90 | |
+2 −2 | mediator/med_internalstate_mod.F90 | |
+2 −2 | mediator/med_map_mod.F90 | |
+6 −6 | mediator/med_phases_aofluxes_mod.F90 | |
+1 −2 | mediator/med_phases_prep_atm_mod.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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
|
||
#%Module###################################################################### | ||
## | ||
## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers | ||
|
||
echo "Setting environment variables for UFS Model on Linux with gcc/gfortran" | ||
|
||
## | ||
## load programming environment: compiler, flags, paths | ||
## | ||
export CC=${CC:-mpicc} | ||
export CXX=${CXX:-mpicxx} | ||
export F77=${F77:-mpif77} | ||
export F90=${F90:-mpif90} | ||
export FC=${FC:-mpif90} | ||
|
||
## | ||
## set up variables for ../cmake/configure_linux.intel.cmake | ||
## | ||
export CMAKE_Platform=linux.intel | ||
|
||
## | ||
## use own NetCDF library | ||
## | ||
export NETCDF=${NETCDF:-/home/builder/opt} | ||
|
||
## | ||
## use pre-compiled EMSF library for above compiler / MPI combination | ||
## | ||
export ESMFMKFILE=${ESMFMKFILE:-/home/builder/opt/lib/esmf.mk} | ||
|
||
## | ||
## NCEP libraries (need to download and build manually, see doc/README_{UBUNTU,CENTOS,...}.txt and https://github.com/NCAR/NCEPlibs) | ||
## | ||
export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} | ||
export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} |
Oops, something went wrong.