Ignore:
Timestamp:
01/11/17 15:14:22 (7 years ago)
Author:
mhnguyen
Message:

Merging working version of coupler

+) Add some changes of domain and axis: Retransfer the atttributes in a generic ways for each level of client (or server)
+) Remove some spoiled files from the previous commits

Test
+) No test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/config/domain_attribute.conf

    r953 r1025  
    99 
    1010/* LOCAL */ 
    11 DECLARE_ATTRIBUTE(int             , ibegin) 
    12 DECLARE_ATTRIBUTE(int             , ni) 
     11DECLARE_ATTRIBUTE(int             , ibegin, false) 
     12DECLARE_ATTRIBUTE(int             , ni, false) 
    1313 
    1414/* LOCAL */ 
    15 DECLARE_ATTRIBUTE(int             , jbegin) 
    16 DECLARE_ATTRIBUTE(int             , nj) 
     15DECLARE_ATTRIBUTE(int             , jbegin, false) 
     16DECLARE_ATTRIBUTE(int             , nj, false) 
    1717 
    1818 
    19 DECLARE_ARRAY(int,1             , i_index) 
    20 DECLARE_ARRAY(int,1             , j_index) 
     19DECLARE_ARRAY(int,1             , i_index, false) 
     20DECLARE_ARRAY(int,1             , j_index, false) 
    2121 
    2222/* LOCAL */ 
    23 DECLARE_ARRAY(bool, 1 , mask_1d) 
     23DECLARE_ARRAY(bool, 1 , mask_1d, false) 
    2424DECLARE_ARRAY(bool, 2 , mask_2d) 
    2525 
     
    2828 
    2929/* LOCAL */ 
    30 DECLARE_ATTRIBUTE(int             , data_ni) 
    31 DECLARE_ATTRIBUTE(int             , data_nj) 
    32 DECLARE_ATTRIBUTE(int             , data_ibegin) 
    33 DECLARE_ATTRIBUTE(int             , data_jbegin) 
     30DECLARE_ATTRIBUTE(int             , data_ni, false) 
     31DECLARE_ATTRIBUTE(int             , data_nj, false) 
     32DECLARE_ATTRIBUTE(int             , data_ibegin, false) 
     33DECLARE_ATTRIBUTE(int             , data_jbegin, false) 
    3434 
    3535/* LOCAL */ 
    36 DECLARE_ARRAY(int, 1 , data_i_index) 
    37 DECLARE_ARRAY(int, 1,  data_j_index) 
     36DECLARE_ARRAY(int, 1 , data_i_index, false) 
     37DECLARE_ARRAY(int, 1,  data_j_index, false) 
    3838 
    3939/* LOCAL */ 
    40 DECLARE_ARRAY(double, 1, lonvalue_1d) 
    41 DECLARE_ARRAY(double, 1, latvalue_1d) 
    42 DECLARE_ARRAY(double, 2, lonvalue_2d) 
    43 DECLARE_ARRAY(double, 2, latvalue_2d) 
     40DECLARE_ARRAY(double, 1, lonvalue_1d, false) 
     41DECLARE_ARRAY(double, 1, latvalue_1d, false) 
     42DECLARE_ARRAY(double, 2, lonvalue_2d, false) 
     43DECLARE_ARRAY(double, 2, latvalue_2d, false) 
    4444 
    4545DECLARE_ATTRIBUTE(int, nvertex) 
    46 DECLARE_ARRAY(double, 2, bounds_lon_1d) 
    47 DECLARE_ARRAY(double, 2, bounds_lat_1d) 
    48 DECLARE_ARRAY(double, 3, bounds_lon_2d) 
    49 DECLARE_ARRAY(double, 3, bounds_lat_2d) 
     46DECLARE_ARRAY(double, 2, bounds_lon_1d, false) 
     47DECLARE_ARRAY(double, 2, bounds_lat_1d, false) 
     48DECLARE_ARRAY(double, 3, bounds_lon_2d, false) 
     49DECLARE_ARRAY(double, 3, bounds_lat_2d, false) 
    5050 
    5151DECLARE_ARRAY(double, 2, area) 
Note: See TracChangeset for help on using the changeset viewer.