Ignore:
Timestamp:
01/29/14 11:49:29 (10 years ago)
Author:
ymipsl
Message:

Add functionnalities for reduced gaussian grid support.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.hpp

    r449 r467  
    6060      private : 
    6161 
    62          void checkGlobalDomain(void); 
     62         void checkDomain(void); 
    6363 
    6464         void checkLocalIDomain(void); 
     
    102102          
    103103          
    104         vector<int> connectedServer,nbSenders ; 
    105         vector<int> ib_srv, ie_srv, in_srv ; 
    106         vector<int> jb_srv, je_srv, jn_srv ; 
     104        vector<int> connectedServer ; // list of connected server  
     105        vector<int> nbSenders ; // for each communication with a server, number of communicating client 
     106        vector<int> nbDataSrv ; // size of data to send to each server  
     107        vector< vector<int> > i_indSrv ; // for each server, i global index to send 
     108        vector< vector<int> > j_indSrv ; // for each server, j global index to send 
     109        
     110        CArray<int,2> mapConnectedServer ;  // (ni,nj) => mapped to connected server number, -1 if no server is target 
     111                
     112//        vector<int> ib_srv, ie_srv, in_srv ; 
     113//        vector<int> jb_srv, je_srv, jn_srv ; 
    107114          
    108115      public : 
Note: See TracChangeset for help on using the changeset viewer.