New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
WorkingGroups/ConfigurationManager (diff) – NEMO

Changes between Version 14 and Version 15 of WorkingGroups/ConfigurationManager


Ignore:
Timestamp:
2013-02-25T12:00:42+01:00 (11 years ago)
Author:
jpaul
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkingGroups/ConfigurationManager

    v14 v15  
    127127 
    128128= ''' 5. How INGV creates regional configuration ''' = 
    129  1. Hypothesis 
    130  1. Limits 
    131  1. Coordinates 
    132  1. Bathymetry 
    133  1. Boundary condition 
    134  1. Initial condition 
    135  1. Tide 
    136  1. Runoff 
    137  1. Surface forcing 
     129 
     130Most of the steps are done using matlab/f90 codes; 
     131We deal only with regional configuration regular configuration, no global. 
     132Our procedure is divided into 3 steps: Grid-InitialCondition-Forcing.  
     133 1. Grid 
     134  1. required input files: high resolution bathymetry (usually 1/2km), coast line (100m resolution); 
     135  1. define the region and the discretization step (lat, lon, delta-lat, delta-lon); 
     136  1. define kind of vertical discretization, zeta, sigma; 
     137  1. we usually define a regular horizontal mesh; 
     138  1. interpolate bathymetry into the model mesh (biliniar interpolation); 
     139  1. define number of vertical levels and they distribution: we usually make use of zeta coord with partial step. 
     140  For this case, in order to fix the vertical levels distribution we use ocean observations (CTD, XBT and ARGO). 
     141  We interpolate the obs data into several vertical grids generated using NEMO algorithm and then back to the original grid (usually 1m resolution); 
     142  we check for the vertical grid providing smaller interpolation error and able to reproduce the vertical water mass distribution;  
     143  when sigma coordinates are used we compute hydrostatic consistency factor and smooth (simple laplacian filter) the topography accordingly; 
     144  1. define minimum depth; 
     145  1. refine land-sea mask on the base of the coast-line dataset (matlab GUI); The idea is to preserve realistic coast line despite the minimum depth; 
     146 
     147 1. Initial Condition 
     148  1. required input file: observations, already existing mapped climatology (SeaDataNet, MedAtlas), or parent model results; 
     149  1. In case of sparse observation we do Objective Analysis to map the data into the model grid. in case of already existing mapped data we do a simple linear interpolation; 
     150  1. after the IC file is created we check for vertical stability and correct if necessary; 
     151 
     152 1. Forcing 
     153  1. surface forcings; No specific tools are used here, just convert grib into netcdf according NEMO needs; 
     154  1. Lateral open boundary condition (up to now only OBC, simple test with BDY); up to now only ad-hoc scripts; The only common point are the integral constrains we apply. I.E. Preserve transport before and after the interpolation.  
     155 
    138156= ''' 6. Proposals to solve some limits ''' = 
    139157 * to create orca grid all over the globe (north pole, band of latitude. . . ), we could use Gridgen tool which is already in NEMO.