Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove NCEPlibs from repo #108

Merged
merged 9 commits into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ CCPP infrastructure code and physics code, both of which are included as git
submodules within the SCM code. This package can be considered a simple example
for an atmospheric model to interact with physics through the CCPP.

## Prerequisite
There are several utility libraries as part of the NCEPlibs package that must be installed prior to building the SCM.
* bacio - Binary I/O Library
* sp - Spectral Transformation Library
* w3nco - GRIB decoder and encoder library

These libraries are prebuilt on most NOAA machines using the Intel compiler. For those needing to build the libraries themselves, GMTB recommends using the source code from GitHub at https://github.com/NCAR/NCEPlibs.git, which includes build files for various compilers and machines using OpenMP flags and which are threadsafe. Instructions for installing NCEPlibs are included on the GitHub repository webpage, but for the sake of example, execute the following for obtaining and building from source in /usr/local/NCEPlibs on a Mac:
1. `cd /usr/local/src`
2. `git clone https://github.com/NCAR/NCEPlibs.git`
3. `cd NCEPlibs`
4. `./make_ncep_libs.sh -s macosx -c gnu -d /usr/local/NCEPlibs -o 1`

Once NCEPlibs is built, the NCEPLIBS_DIR environment variable must be set to the location of the installation. For example, if NCEPlibs was installed in /usr/local/NCEPlibs, one would execute

`export NCEPLIB_DIR=/usr/local/NCEPlibs`

If using Theia or Cheyenne HPC systems, this environment variable is automatically set to an appropriate installation of NCEPlibs on those machines through use of one of the setup scripts described below.

## Obtaining Code
1. Download a compressed file or clone the source using
* `git clone https://[username]@github.com/NCAR/gmtb-scm.git`
Expand Down
2 changes: 1 addition & 1 deletion ccpp/framework
Submodule framework updated 36 files
+3 −3 CMakeLists.txt
+19 −0 doc/CCPPtechnical/Makefile
+29 −0 doc/CCPPtechnical/README
+4 −0 doc/CCPPtechnical/build/.gitignore
+35 −0 doc/CCPPtechnical/make.bat
+141 −0 doc/CCPPtechnical/source/Acronyms.rst
+69 −0 doc/CCPPtechnical/source/AddingNewSchemes.rst
+438 −0 doc/CCPPtechnical/source/AutoGenPhysCaps.rst
+292 −0 doc/CCPPtechnical/source/CCPPPreBuild.rst
+379 −0 doc/CCPPtechnical/source/CodeManagement.rst
+277 −0 doc/CCPPtechnical/source/CompliantPhysicsParams.rst
+48 −0 doc/CCPPtechnical/source/ConfigBuildOptions.rst
+338 −0 doc/CCPPtechnical/source/ConstructingSuite.rst
+146 −0 doc/CCPPtechnical/source/Glossary.rst
+547 −0 doc/CCPPtechnical/source/HostSideCoding.rst
+35 −0 doc/CCPPtechnical/source/Introduction.rst
+151 −0 doc/CCPPtechnical/source/Overview.rst
+564 −0 doc/CCPPtechnical/source/ScientificDocRules.inc
+ doc/CCPPtechnical/source/_static/CCPP_Ecosystem_Detailed-Diagram_only.png
+ doc/CCPPtechnical/source/_static/DoxygenCallGraph.png
+ doc/CCPPtechnical/source/_static/DoxygenFileList.png
+ doc/CCPPtechnical/source/_static/ccpp_arch_host.png
+ doc/CCPPtechnical/source/_static/ccpp_build_option.png
+ doc/CCPPtechnical/source/_static/ccpp_dynamic_build.png
+ doc/CCPPtechnical/source/_static/ccpp_ecosystem.png
+ doc/CCPPtechnical/source/_static/ccpp_prebuild.png
+ doc/CCPPtechnical/source/_static/ccpp_sdf_dynamic_static.png
+ doc/CCPPtechnical/source/_static/ccpp_static_build.png
+9 −0 doc/CCPPtechnical/source/_static/custom.css
+4 −0 doc/CCPPtechnical/source/_templates/.gitignore
+24 −0 doc/CCPPtechnical/source/ccpp_framework.txt
+6 −0 doc/CCPPtechnical/source/ccpp_physics.txt
+203 −0 doc/CCPPtechnical/source/conf.py
+24 −0 doc/CCPPtechnical/source/index.rst
+4 −0 doc/CCPPtechnical/source/prolog.inc
+63 −0 doc/CCPPtechnical/source/references.bib
2 changes: 1 addition & 1 deletion ccpp/physics
Submodule physics updated 1 files
+7 −24 CMakeLists.txt
56 changes: 0 additions & 56 deletions external/bacio/v2.0.1/src/CMakeLists.txt

This file was deleted.

43 changes: 0 additions & 43 deletions external/bacio/v2.0.1/src/Makefile

This file was deleted.

Loading