Ignore:
Timestamp:
12/14/18 10:55:21 (5 years ago)
Author:
omamce
Message:

O.M. : mostly improvment of documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TOOLS/MOSAIX/RunoffWeights.py

    r4188 r4195  
    33### 
    44### Compute runoff weights. 
    5 ### For LMDZ only. Not suitable for DYNAMICO 
    65### 
    76### =========================================================================== 
     
    9897if atm_Name.find('LMD') >= 0 : atm_n = 'lmd' ; atmDomainType = 'rectilinear' 
    9998if atm_Name.find('ICO') >= 0 : atm_n = 'ico' ; atmDomainType = 'unstructured' 
     99if oce_Name.find('ORC') >= 0 : oce_n = 'orc' ; oceDomainType = 'curvilinear' 
    100100 
    101101print ('atmQuantity : ' + str (myargs.atmQuantity) ) 
     
    152152oce_grid_imask = oce_grid_imask2D.ravel() 
    153153##  
    154 print ("Determination d'une bande cotiere ocean") 
     154print ("Defines a coastal bands (on ocean) in the ocean") 
    155155 
    156156oceLand2D  = np.reshape ( np.where (oce_grid_pmask[:] < 0.5, True, False), (oce_jpj, oce_jpi) ) 
     
    179179oceCoast_address         = oce_address        [oceCoast] 
    180180 
    181 print ("Determination d'une bande cotiere atmosphere " ) 
     181print ("Defines a coastal bands (on land) in the atmosphere" ) 
    182182atmLand      = np.where (o2aFrac[:] < epsfrac       , True, False) 
    183183atmLandFrac  = np.where (o2aFrac[:] < zone-epsfrac  , True, False) 
Note: See TracChangeset for help on using the changeset viewer.