Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Contents of directory src/openifs:Description
40r1/Contains OpenIFS versions based on Cycle 40 Release 1 of the operational IFS.
43r3/Contains OpenIFS versions based on Cycle 43 Release 3 of the operational IFS.

Download source code for OpenIFS 40r1

To obtain the source code from the ftp site, change directory to the '40r1' directory and retrieve the latest source code (the filename may be different):

Code Block
languagebash
titleUsing ftp to download
% ftp ftp.ecmwf.int
user: openifs
pass: <enter the password given to you by openifs-support>

cd src/openifs/40r1
ls
get oifs40r1v2.tar.gz
quit


Code Block
titleUsing lftp to download
% lftp ftp.ecmwf.int
lftp ftp.ecmwf.int:~> set ftp:ssl-allow no
lftp ftp.ecmwf.int:~> user openifs
Password: <enter the password 

lftp openifs@ftp.ecmwf.int:/> cd src/openifs/40r1
lftp openifs@ftp.ecmwf.int:/src/openifs/40r1/> get oifs40r1v2.tar.gz
lftp openifs@ftp.ecmwf.int:/src/openifs/40r1/> exit

Unpack OpenIFS source code

To unpack the gzipped tarfile:

Code Block
% tar zxf oifs40r1v2.tar.gz

If your version of the 'tar' command does not support gzipped archives then do it in two stages:

Code Block
% gzip -d oifs40r1v2.tar.gz
% tar xf oifs40r1v2.tar


OpenIFS git repository

A git repository for OpenIFS is hosted by ECMWF. This is intended for developers and contributors to the OpenIFS model and is not generally accessible.

...