Differences between revisions 11 and 12
Revision 11 as of 2019-04-04 07:02:49
Size: 1248
Comment:
Revision 12 as of 2019-04-30 11:39:54
Size: 1403
Editor: NicoleThomas
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
Installing on a remote computer like JURECA works identically. If you want to use your ssh-keys from the workstation cluster for downloading the code, you may connect to JURECA by
{{{
ssh -A [-X] <user>@jureca.fz-juelich.de
}}}
Line 19: Line 24:
Line 24: Line 28:
Installing on a remote computer like JURECA works identically. If you want to use your ssh-keys from the workstation cluster for downloading the code, you may connect to JURECA by For compilation of a specific program ''progname'' in package ''package-name'':
Line 26: Line 30:
ssh -A [-X] <user>@jureca.fz-juelich.de cd target-directory
make libs
cd package-name
make progname

CLaMS Installation

The CLaMS source code can be downloaded from the GitLab server https://jugit.fz-juelich.de.

This version contains all modules, libraries and programs needed for a classical CLaMS simulation employing a ksh-script. It does not include supplementary programs e.g. needed for the conversion of the meteorological data.

To download the CLaMS code from the gitlab server, one needs to be registered by the server (login once) and then given access by the maintainer Nicole Thomas (n.thomas@fz-juelich.de). The ssh keys should be uploaded to the GitLab Server. Then the code of the CLaMS version 2.0 can be downloaded by

git clone https://clams.icg.kfa-juelich.de:clams/CLaMS.git [target-directory]    

Respectively, internally the develop version of CLaMS is available here:

git clone git@jugit.fz-juelich.de:clams/clams-git.git [target-directory]

Installing on a remote computer like JURECA works identically. If you want to use your ssh-keys from the workstation cluster for downloading the code, you may connect to JURECA by

ssh -A [-X] <user>@jureca.fz-juelich.de

For compilation of all CLaMS program, go to the target directory and simply type

make all 

For compilation of a specific program progname in package package-name:

cd target-directory
make libs
cd package-name
make progname

GitLabInstructions (last edited 2023-09-25 07:57:42 by NicoleThomas)