source: XIOS/trunk/src/config/domain_attribute.conf @ 657

Last change on this file since 657 was 657, checked in by mhnguyen, 9 years ago

Making changes in domain to make sure unstructed grid work with new method of index distribution

+) Change the way define i_index and j_index of a domain
+) Remove some redundant attributes of domain
+) Adjust the way to calculate index distribution on server side

Test
+) Make some minor change to test_unstruct_complete to work with new XIOS
+) On Curie
+) All test pass and correct

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.4 KB
Line 
1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
5
6/* Spécifique */
7DECLARE_ATTRIBUTE(StdString       , domain_group_ref)
8
9/* GLOBAL */
10DECLARE_ATTRIBUTE(int             , ni_glo)
11DECLARE_ATTRIBUTE(int             , nj_glo)
12
13/* LOCAL */
14DECLARE_ATTRIBUTE(int             , ibegin)
15DECLARE_ATTRIBUTE(int             , ni)
16
17/* LOCAL */
18DECLARE_ATTRIBUTE(int             , jbegin)
19DECLARE_ATTRIBUTE(int             , nj)
20
21
22DECLARE_ARRAY(int,1             , i_index)
23DECLARE_ARRAY(int,1             , j_index)
24
25/* LOCAL */
26DECLARE_ARRAY(bool, 1 , mask_1D)
27DECLARE_ARRAY(bool, 2 , mask_2D)
28DECLARE_ARRAY(bool, 2 , mask)
29
30/* GLOBAL */
31DECLARE_ATTRIBUTE(int             , data_dim)
32
33/* LOCAL */
34DECLARE_ATTRIBUTE(int             , data_ni)
35DECLARE_ATTRIBUTE(int             , data_nj)
36DECLARE_ATTRIBUTE(int             , data_ibegin)
37DECLARE_ATTRIBUTE(int             , data_jbegin)
38
39/* LOCAL */
40DECLARE_ATTRIBUTE(int             , data_n_index)
41DECLARE_ARRAY(int, 1 , data_i_index)
42DECLARE_ARRAY(int, 1,  data_j_index)
43
44/* LOCAL */
45DECLARE_ARRAY(double, 1, lonvalue)
46DECLARE_ARRAY(double, 1, latvalue)
47DECLARE_ATTRIBUTE(int, nvertex)
48DECLARE_ARRAY(double, 2, bounds_lon)
49DECLARE_ARRAY(double, 2, bounds_lat)
50DECLARE_ARRAY(double, 2, area)
51
52DECLARE_ENUM3(type,regular,curvilinear,unstructured) //rectilinear
53DECLARE_ATTRIBUTE(StdString, domain_ref)
54
Note: See TracBrowser for help on using the repository browser.