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.
ticket/0681 (diff) – NEMO

Changes between Version 5 and Version 6 of ticket/0681


Ignore:
Timestamp:
2010-10-07T16:37:40+02:00 (14 years ago)
Author:
djlea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0681

    v5 v6  
    1616 
    1717The OBS branch is a diagnostic branch which reads in observation files (profile temperature and salinity, sea surface temperature and sea level anomaly) and calculates the model equivalent value at the observation location. This information along with the observation value is output into a "feedback" file. This can be used for model validation and verification and also to provide information for data assimilation. 
     18 
     19See section "system changes" for example namelists and headers from example observation files. 
    1820 
    1921---- 
     
    570572}}} 
    571573 
     574Header from an example assimilation increments file  
     575 
     576{{{ 
     577netcdf assim_background_increments { 
     578dimensions: 
     579        x = 182 ; 
     580        y = 149 ; 
     581        z = 31 ; 
     582        t = UNLIMITED ; // (1 currently) 
     583variables: 
     584        float nav_lon(y, x) ; 
     585        float nav_lat(y, x) ; 
     586        float nav_lev(z) ; 
     587        double time_counter(t) ; 
     588        double time ; 
     589        double z_inc_dateb ; 
     590        double z_inc_datef ; 
     591        double bckint(t, z, y, x) ; 
     592        double bckins(t, z, y, x) ; 
     593        double bckinu(t, z, y, x) ; 
     594        double bckinv(t, z, y, x) ; 
     595        double bckineta(t, y, x) ; 
     596 
     597// global attributes: 
     598                :DOMAIN_number_total = 1 ; 
     599                :DOMAIN_number = 0 ; 
     600                :DOMAIN_dimensions_ids = 1, 2 ; 
     601                :DOMAIN_size_global = 182, 149 ; 
     602                :DOMAIN_size_local = 182, 149 ; 
     603                :DOMAIN_position_first = 1, 1 ; 
     604                :DOMAIN_position_last = 182, 149 ; 
     605                :DOMAIN_halo_size_start = 0, 0 ; 
     606                :DOMAIN_halo_size_end = 0, 0 ; 
     607                :DOMAIN_type = "BOX" ; 
     608} 
     609}}} 
     610 
    572611---- 
    573612=== Resources ===