Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2019-04-10 08:58:50
Size: 1127
Editor: NicoleThomas
Comment:
Revision 8 as of 2020-09-14 14:21:05
Size: 1954
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
 To download the MESSy source code from the DKRZ server, one needs an account on this server and access to the repository given by the maintainer Patrick Jöckel (Patrick.Joeckel@dlr.de). The ssh keys should be uploaded to this GitLab Server. Then the source code can be downloaded by:  To download the MESSy source code from the DKRZ server, one needs an account on this server and access to the repository given by the maintainer Patrick Jöckel (Patrick.Joeckel@dlr.de). For that one needs to create first an account at DKRZ from https://luv.dkrz.de, then join the existing project "853 ESCIMo" and login once into the GitLab server https://gitlab.dkrz.de with the user id defined by the previous process. Then ask Patrick Jöckel to be added to the MESSy project group on the GitLab server. The ssh keys should be uploaded to this GitLab Server. <<BR>><<BR>>

Then the source code can be downloaded by:
Line 10: Line 12:
 }}}

 Outgoing ssh communication from JURECA/JUWELS is currently blocked. <<BR>> The source code can be downloaded to these systems via https (with userid and password):
 {{{
git clone https://gitlab.dkrz.de/MESSy/MESSy.git [target-directory]
Line 12: Line 19:
 If the MESSy code is already installed by ssh, it is possible to switch the gitlab server access to https by
 {{{
git remote set-url origin https://gitlab.dkrz.de/MESSy/MESSy.git
}}}
 For access, one needs to use the DKRZ user number and password.
Line 13: Line 25:
 * On JURECA load the following modules:  * On JURECA/JUWELS load the following modules:
Line 17: Line 29:
module load Mercurial

MESSy/CLaMS: Installation

The MESSy development repository is located on the DKRZ server https://gitlab.dkrz.de/MESSy/MESSy

  • Download the source code:

    To download the MESSy source code from the DKRZ server, one needs an account on this server and access to the repository given by the maintainer Patrick Jöckel (Patrick.Joeckel@dlr.de). For that one needs to create first an account at DKRZ from https://luv.dkrz.de, then join the existing project "853 ESCIMo" and login once into the GitLab server https://gitlab.dkrz.de with the user id defined by the previous process. Then ask Patrick Jöckel to be added to the MESSy project group on the GitLab server. The ssh keys should be uploaded to this GitLab Server.

    Then the source code can be downloaded by:

    git clone git@gitlab.dkrz.de:MESSy/MESSy.git  [target-directory]

    Outgoing ssh communication from JURECA/JUWELS is currently blocked.
    The source code can be downloaded to these systems via https (with userid and password):

    git clone https://gitlab.dkrz.de/MESSy/MESSy.git [target-directory]
    If the MESSy code is already installed by ssh, it is possible to switch the gitlab server access to https by
    git remote set-url origin https://gitlab.dkrz.de/MESSy/MESSy.git
    For access, one needs to use the DKRZ user number and password.
  • On JURECA/JUWELS load the following modules:
    module load intel-para 
    module load netCDF-Fortran
  • On IEK-7-Cluster add the bin subdirectory of the installation directory of MPICH library to your path:
    PATH=/usr/nfs/software/icg1/local/mpich-3.2.1-ifort-18.0.3/bin:$PATH
    export PATH
  • Create and run configure file in messy main directory:

    autoconf
    configure
  • Compile all (in messy main directory):
    make
  • Compile only basemodel CLaMS (in messy main directory):
    make mbm target=clams

messy/Install (last edited 2025-02-06 12:18:55 by NicoleThomas)