You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 47 Next »



License

OpenIFS is provided free-of-charge and licenses are usually per institution.

Only licensed users are provided with the username and password to access the ftp site. For more information, or to request a license, please email: openifs-support@ecmwf.int.

OpenIFS directory layout

The model will unpack into a directory called 'oifs'. The directory structure for the OpenIFS model and code will depend on local installation requirements. A suggested directory structure has all source code and data organised under a single directory 'oifs'.  If desired, the grib_api could also be installed under the oifs directory but it's recommended it is placed elsewhere.




On this page



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
38r1/Contains OpenIFS versions based on Cycle 38 Release 1 of IFS.
40r1/Contains OpenIFS versions based on Cycle 40 Release 1 of IFS

Download source code

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):

% ftp ftp.ecmwf.int
user: openifs
cd src/openifs/40r1
ls
get oifs40r1v2.tar.gz
quit

% tar zxf oifs40r1v2.tar.gz


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.

For more information please contact: openifs-support@ecmwf.int.

Download data files

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

Contents of directory data:Description
40r1/Contains OpenIFS versions based on Cycle 40 Release 1 of IFS.

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>.tgz15MbContains the various long-lived gases and aerosol climatologies used by the model. Unpacks into a directory called climate.
<version>/ifsdata_<version>_climate_t*.tar.gzvaries

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

For example, unpacks into two directories, 40 and 40r1. The files in 40r1 link to the files in 40 but allow for model version specific changes.

These contain data split one file per horizontal resolution.
If you want to save space, you can download just the resolutions you intend working with.
<version>/ifsdata_rtables_<version>.tar.gz<1MbContains 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: rtables
<version>/ifsdata_vtables_<version>.tar.gz<1MbContains namelists defining the coefficients for the supported vertical resolutions. File name suffix refers to the number of levels. Unpacks to a directory: vtables.

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.

% 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:

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

% ls
40r1  vtables  rtables


Additional software

OpenIFS users may also find the Metview and MAGICS graphics software useful with OpenIFS.





  • No labels