Post

Visualizzazione dei post con l'etichetta ECMWF

How to run the MESO-NH model using operational ECMWF-IFS data (on model levels) as ICs & BCs

1. Download IFS data (on ecgate) as follows: -bash-4.1$ cat STATIC.REQ retrieve, class = od, expver = 1, stream = oper, date = 2020-11-15, time = 00, area = -10/-85.0/-50.0/-60.0, step = 0/to/6/by/6, type = fc, levtype = sfc, param = 129.128/172.128, grid = 0.1/0.1, target = "STATIC_20201115-00.grib{edition}" -bash-4.1$ cat SFC.REQ retrieve, class = od, expver = 1, stream = oper, date = 2020-11-15, time = 00, area = -10/-85.0/-50.0/-60.0, step = 0/to/6/by/6, type = fc, levtype = sfc, param = 39/40/41/42/139/141/170/183/236, grid = 0.1/0.1, target = "SFC_20201115-00.grib{edition}" -bash-4.1$ cat ML1.REQ retrieve, class = od, expver = 1, stream = oper, date = 2020-11-15, time = 00, area = -10/-85.0/-50.0/-60.0, step = 0/to/6/by/6, type = fc, levtype = ml, levelist= 1, param = 152, grid = 0.1/0.1, target = "ML1_20201115-00.grib{edition}" -bash-4.1$ cat ML.REQ retrieve, class = od, ex...

How to run the BOLAM/MOLOCH models with ERA5 data (on model levels)

Immagine

Downscaling ERA-5 reanalysis data for coastal climate applications (and evaluation of uncertainty of coastal data)

Immagine
Here's the abstract and the link to the oral presentation I gave this morning at the 5th International Conference on Reanalysys held in Rome, 13-17 November 2017 in the outstanding venue of Angelicum University located in the very centre of Rome. Downscaling ERA-5 reanalysis data for coastal climate applications (and evaluation of uncertainty of coastal data) : The management of coastal zones requires precise data concerning past wind/wave regimes and future climate trends. Many studies have been based on low resolution reanalysis data that cannot allow a detailed description of the variability induced by local conditions. We present a feasibility study where a simple dynamical downscaling of ERA5 reanalysis data is applied through a cascade of regional atmospheric/wave models. A long-term goal of this study is to identify the long-term trends in the last 30-35 years in order to better understand the effects linked to the impact of climate change along the coast. The methodology ...

How to compute SBUs usage on ECMWF cca/ccb

The accounting currency on ECMWF supercomputer is the SBU (System Billing Unit) The accounting system is fully described here: https://software.ecmwf.int/wiki/display/UDOC/HPC+accounting Basically, " To ensure that computing resources are distributed equitably and to discourage irresponsible use users' jobs are charged " and SBU = P * (ELAPSED_TIME) where P = 50365140 / (3617 * 36 * 86400) is a fixed proportionality factor, adjusted so that the system will deliver 50365140 units per day on a "typical" ECMWF job mix on the ccb system (3617 * 36 is the number of physical CPUs of the cray system and 86400 the number of seconds in a day) ELAPSED_TIME is the elapsed time (real time in seconds) recorded for a job, multiplied by the number of physical CPUs used by the job Examples (copied from ECMWF User Documentation): A serial job using 1 hour (3600 seconds) of elapsed time will be charged about 16.11 SBU. A parallel j...

How to compile the WRF model on ECMWF cca/ccb

#Prerequisites: #- This has been tested with the GNU compiler suite version 4.9.3 #- You should have all the needed libraries and WRF sources in the $PERM directory. Namely: #  * zlib-1.2.7.tar.gz          (This is a compression library necessary for compiling WPS (specifically ungrib) with GRIB2 capability) #  * libpng-1.2.50.tar.gz       (This is a compression library necessary for compiling WPS (specifically ungrib) with GRIB2 capability) #  * WRFV3.8.1.tar.gz           (WRF model) #  * WPSV3.8.1.tar.gz           (WRF Preprocessing System) #  * DTC_upp_v3.1.tar.gz        (Unified PostProcessing system) #------------------------------------------- # 1. Log in to cca (or ccb) #------------------------------------------- ssh -Y cca #----...