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

documentation update for v17.9.0-beta.3 #153

Merged
merged 3 commits into from
Mar 18, 2020
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: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,25 @@

#### Load Build Modules

In your `.bashrc` or `.tcshrc` or other rc file add a line:
Make sure the correct module from the GMAO SI team is loaded:

##### NCCS (SLES11)
##### NCCS (SLES11 or SLES12)

```
module use -a /discover/swdev/gmao_SIteam/modulefiles-SLES11
```
or
```
module use -a /discover/swdev/gmao_SIteam/modulefiles-SLES12
```
or add the following to your `.cshrc`:
```
if ( ! -f /etc/os-release ) then
module use -a /discover/swdev/gmao_SIteam/modulefiles-SLES11
else
module use -a /discover/swdev/gmao_SIteam/modulefiles-SLES12
endif
```

##### NAS
```
Expand Down Expand Up @@ -118,6 +130,8 @@ make -j6 install
---

## Setup up a run
If you are using SLES12 at NCCS, you **must** run setup on an interactive compute node. SLES12 login nodes no longer allow running MPI.

```
cd ../(some_architecture)/bin
source g5_modules
Expand Down
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ _These are additions put in development, that will be in the next stable tag_
Overview of Git tags:
============================

[v17.9.0-beta.3](https://github.com/GEOS-ESM/GEOSldas/releases/tag/v17.9.0-beta.3) - 2020-03-18
------------------------------
- Additional RESTART options, incl. from re-tiling MERRA-2, FP, or other restarts on different tile space or with different boundary conditions
- Bug fixes

------------------------------
[v17.9.0-beta.2](https://github.com/GEOS-ESM/GEOSldas/releases/tag/v17.9.0-beta.2) - 2020-02-26
------------------------------
- New/Updated Science Functionality:
Expand Down