Ignore:
Timestamp:
02/07/19 10:04:07 (5 years ago)
Author:
omamce
Message:

O.M. : MOSAIX

  • Two versions of fraction on atmosphere grid to be compatible with both DYNAMICO and LMDZ
  • Various improvments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TOOLS/MOSAIX/CalvingWeights.py

    r4199 r4259  
    347347v_remap_matrix = f_calving.createVariable ( 'remap_matrix', 'f8', ('num_links', 'num_wgts') ) 
    348348v_src_address  = f_calving.createVariable ( 'src_address' , 'i4', ('num_links',) ) 
    349 v_src_address  = f_calving.createVariable ( 'dst_address' , 'i4', ('num_links',) ) 
     349v_src_address.convention = "Fortran style addressing, starting at 1" 
     350v_dst_address  = f_calving.createVariable ( 'dst_address' , 'i4', ('num_links',) ) 
     351v_dst_address.convention = "Fortran style addressing, starting at 1" 
    350352 
    351353v_remap_matrix[:] = remap_matrix 
    352354v_src_address [:] = src_address 
    353 v_src_address [:] = src_address 
     355v_dst_address [:] = dst_address 
    354356 
    355357v_src_grid_dims       = f_calving.createVariable ( 'src_grid_dims'      , 'i4', ('src_grid_rank',) ) 
Note: See TracChangeset for help on using the changeset viewer.