Changeset 1066 for XIOS


Ignore:
Timestamp:
03/03/17 14:20:39 (7 years ago)
Author:
ymipsl
Message:

Bug fix : in some interpolation with mask on source grid and with some MPI process ditrisbution, part of the interpolation was dropped.
=> intialize root node on the sphere (1,0,0) instead of origin (0,0,0).
YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/extern/remap/src/tree.cpp

    r951 r1066  
    142142        root->parent = 0; 
    143143        root->leafCount = 0; 
    144         root->centre = ORIGIN; 
     144// initialize root node on the sphere 
     145  root->centre.x=1 ; root->centre.y=0 ; root->centre.z=0 ;  
    145146        root->radius = 0.; 
    146147        root->reinserted = false; 
Note: See TracChangeset for help on using the changeset viewer.