Versions Compared

Key

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

...

 

Section
Column

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 and FCM software could also be installed under the oifs directory but it's recommended they are it is placed elsewhere.

Column
width50px

 

Column
width250px

 

 

Panel
bgColorwhite
titleBGColorlightlightgrey
titleOn this page

Table of Contents
stylesquare

 

 

...

All the OpenIFS related files 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 distribution includes 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 , grib_api & FCM tar filestar files.
src/scmSingle Column model code and files.
src/osmOffline Surface model code and files.
metviewMetview macros for use with OpenIFS.
user_workshopsFiles used in OpenIFS user workshops.
users/

User group specific space. Model runs provided for groups will be found here.

...

Panel
bgColorwhite
titleSample session:
Code Block
% ftp ftp.ecmwf.int
user: openifs
cd src/openifs/38r1
ls
get oifs38r1v04.tar.gz
get oifs38r1v04_docs.tar.gz
quit

% tar zxf oifs38r1v04.tar.gz
% tar zxf oifs38r1v04_docs.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.

...

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.

Panel
bgColorwhite
titleExample session:
Code Block
% mkdir oifs/ifsdata
% cd oifs/ifsdata

% ftp ftp.ecmwf.int
Connected to ftp.ecmwf.int.
Name (ftp.ecmwf.int:nagc): openifs
331 User openifs OK. Password required
ftp> cd data
ftp> prompt
Interactive mode off.
ftp> mget ifsdata_*
ftp> quit

% tar zxf ifsdata_climatology.tar.gz
% tar zxf ifsdata_cy38_climate.tar.gz
% tar zxf ifsdata_rtables.tar.gz
% tar zxf ifsdata_vtables.tar.gz
% rm *.tar.gz
 
% ls
38  38r1  climatology  namelist  rtables  vtables

...