Skip to content
Snippets Groups Projects
Commit 63faeb09 authored by Arnd Plumhoff's avatar Arnd Plumhoff
Browse files

Merge branch 'master' of git.se.informatik.uni-kiel.de:oceandsl/case-study-mitgcm

parents 13f61f98 627c2d45
No related branches found
No related tags found
No related merge requests found
# case-study-MITgcm
This example uses the MITgcm numerical model.
## Getting started
### With Docker
Folder: /docker
Make sure you have Docker installed.
Before deploying the docker container make sure to have valid data in the data folder. Use your own code/data or use code from the verification folder in the MITgcm git repository for testing purposes (e.g. https://github.com/MITgcm/MITgcm/tree/master/verification/tutorial_barotropic_gyre).
* Deploy the container by using docker-compose
```
docker-compose up -d
```
* or using plain docker by runnning
```
docker image build -t case-study-mitgcm .
docker run -v $(pwd)/../data/:/data --name case-study-mitgcm case-study-mitgcm
```
### Without Docker
Folder: /bare
You can use build.sh to run code on your machine, use the -x flag to use example code
e.g. ./build.sh -x -i
```
OPTIONS:
-d dir location of data (mandatory)
-i install required packages
-k keep binary files
-a architecture [amd64(default), ia32]
-x use example data (WARNING: deletes the content of the data folder and replaces it with example code)
-h help
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment