Differences between revisions 10 and 17 (spanning 7 versions)
Revision 10 as of 2019-04-04 07:02:30
Size: 1239
Comment:
Revision 17 as of 2019-09-20 08:51:34
Size: 2023
Editor: NicoleThomas
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#acl ClamsUserGroup:read,write,delete,revert All:read
Line 7: Line 9:
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
The code of the CLaMS version 2.0 can be downloaded by:
Line 10: Line 11:
git clone https://clams.icg.kfa-juelich.de:clams/CLaMS.git [target-directory] git clone https://jugit.fz-juelich.de/clams/CLaMS.git [target-directory]
Line 13: Line 14:
Respectively, internally the develop version is available here: <<BR>>

To download the developer version of CLaMS 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: <<BR>>
Add your public SSH key to your GitLab account by clicking your avatar in the upper right corner and selecting ''Settings'', navigating to ''SSH Keys'' and pasting your public key in the key field. Your key is usually contained in the file '~/.ssh/id_rsa.pub' and begins with 'ssh-rsa'. Don't use your private SSH key. Then click the ''Add key'' button.

For registered users the developer version of CLaMS is available here:
Line 17: Line 25:

For compilation of all CLaMS program, go to the target directory and simply type
Some additional CLaMS packages (conv2cf, init, i3d, isentropic, tdot) can be downloaded by:
Line 21: Line 27:
make all git clone git@jugit.fz-juelich.de:clams/clams-support.git [target-directory]
Line 28: Line 34:

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
}}}

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.

The code of the CLaMS version 2.0 can be downloaded by:

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


To download the developer version of CLaMS 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:
Add your public SSH key to your GitLab account by clicking your avatar in the upper right corner and selecting Settings, navigating to SSH Keys and pasting your public key in the key field. Your key is usually contained in the file '~/.ssh/id_rsa.pub' and begins with 'ssh-rsa'. Don't use your private SSH key. Then click the Add key button.

For registered users the developer version of CLaMS is available here:

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

Some additional CLaMS packages (conv2cf, init, i3d, isentropic, tdot) can be downloaded by:

git clone git@jugit.fz-juelich.de:clams/clams-support.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 2024-11-21 07:17:21 by NicoleThomas)