Versions Compared

Key

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

License

Only licensed users are provided with the username and password to access the OpenIFS ftp site.  OpenIFS is provided free-of-charge per institution. Please see OpenIFS Licensing for more details or email openifs-support@ecmwf.int.

OpenIFS directory layout

The OpenIFS installation consists of (i) OpenIFS source code; (ii) OpenIFS auxiliary files (climatologies, radiation tables, vertical coord tables). Both types are provided as gzipped tarfiles.

It's recommended that the OpenIFS auxiliary files are stored in a separate directory, typically named 'ifsdata' and not within the model source code. As discussed in the previous section, the ecCodes GRIB library could be stored under a directory called 'ecmwf' available to other users. The auxiliary files could be stored in the same location.

Layout of OpenIFS auxiliary files: ifsdata

Download instructions for the auxiliary files are below. They are provided as gzipped tarfiles and unpack into the directory structure shown below. 

Note that the 'ifsdata' directory needs to be created first.

Gliffy Diagram
macroId977f7594-7ddc-4242-9573-9327fd982af0
nameifsdata_layout
pagePin3

For OpenIFS version '40r1' the layout is very similar, except 'climate.v015' is called 'climate' (43r3 uses an updated climatology).


Layout of OpenIFS source files

Download instructions for the OpenIFS source files are below. The gzipped tarfile will unpack into a directory structure shown below.

Gliffy Diagram
macroIdfcab597d-2d08-40e2-875c-c315a8a26cd1
nameoifs_layout
pagePin45


OpenIFS ftp site

All the files related to the OpenIFS models are available from the ftp site: ftp.ecmwf.int. If you do not have ftp site password, please email : openifs-support@ecmwf.int. Only licensed institutes are provided with access.

The OpenIFS models are distributed as compressed tarfiles and include source code, datafiles and supporting software. Once logged into the ftp site you will see the following directories:

Contents of ftp.ecmwf.intDescription
data/OpenIFS data files; climate files, vtables, rtables and namelist.
src/openifsOpenIFS source code tar files.
src/scmSingle Column model code and files.
src/osm-htesselOffline Surface Model (HTESSEL) code and files.
metviewMetview macros for use with OpenIFS.
user_workshopsFiles used in OpenIFS user workshops.
users/

User group specific space. Model initial files provided for users will be found here.


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

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


Note

The 'set ftp:ssl-allow no' command is crucial to allow lftp to work with the ftp server at ECMWF. It disables use of a secure connection.

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


Download climatology data files

The data directory contains the following gzipped tarfiles, all of which should be downloaded.

Contents of directory data:Description
40r1/Contains data files for versions of OpenIFS 40r1.
43r3/Contains data files for versions of OpenIFS 43r3.


Info

These files are the same for all OpenIFS experiments. To save space for multiple users, it's recommended they are placed somewhere central and not copied to each user run directory. The sample job scripts provided assume that links are created from these files to the user run directory.

We suggest creating a directory ifsdata somewhere and unpacking the files there.


FilenameSizeDescription
<version>/ifsdata_climatology_<version>.tgz15Mb

Contains the various long-lived gases and aerosol climatologies used by the model.e.g. files C11CLIM, MCICA, etc.

Unpacks into a directory called <version>/ifsdata.

<version>/ifsdata_<version>_climate_<res>.tgzvaries

Contains ozone climatology for all supported horizontal and vertical resolutions, including full and reduced Gaussian grid versions.

Unpacks into a directory: <version>/climate/<resolution><grid_type>.

These contain data split one file per horizontal resolution with a suffix that corresponds to the type of model grid. For example '40r1/climate/159l_2', would correspond to the OpenIFS 40r1 model release, with a T159 linear grid. For further explanation of the model grid types, please see the user guide section.

If you want to save space, you can download just the resolutions you intend working with.

<version>/ifsdata_rtables_<version>.tgz<1Mb

Contains namelists defining the supported grid resolutions for the radiation scheme. File name suffix refers to the type of grid and last 3 digits refers to the horizontal resolution.

Unpacks to a directory: <version>/rtables

<version>/ifsdata_vtables_<version>.tgz<1Mb

Contains namelists defining the coefficients for the supported vertical resolutions. File name suffix refers to the number of levels.

Unpacks to a directory: <version>/vtables.

<version>/ifsdata_namelist_<version>.tgz<1Mb

Contains the full model namelist set for this OpenIFS version.

Unpacks to a directory: <version>/namelist.

To unpack the files either use the tar zxf command if your version of tar supports the 'z' option, or use gunzip followed by tar xf.

Code Block
% mkdir oifs/ifsdata
% cd oifs/ifsdata

% ftp ftp.ecmwf.int
Connected to ftp.ecmwf.int.
Name (ftp.ecmwf.int): openifs
331 User openifs OK. Password required
ftp> cd data/40r1
ftp> prompt
ftp> mget ifsdata_*.tgz
ftp> quit

% for ff in *.tgz; do tar zxf $ff; done
% rm *.tar.gz


OpenIFS 40r1 expects the vtables and rtables directories to be at the same directory level as the 40r1 directory. This was changed in later versions of OpenIFS.

To allow for this, make links from the 'oifs/ifsdata' created above:

Code Block
% cd oifs/ifsdata
% ln -s 40r1/vtables vtables
% ln -s 40r1/rtables rtables

% ls
40r1  vtables  rtables



Excerpt Include
Credits
Credits
nopaneltrue




Panel
borderColorgrey

On this page ...

Table of Contents
indent12px


Panel
titleIn this section...

Children Display
depth1
page5. OpenIFS Installation


Panel
titleOpenIFS User Guide ...

Children Display
depth1
pageOpenIFS User Guide