Changeset 242 for trunk/SRC/Computation


Ignore:
Timestamp:
04/06/07 10:35:17 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers + replace some message by some report

Location:
trunk/SRC/Computation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Computation/curl.pro

    r238 r242  
    1010; Matrix representing the zonal coordinates (U point) of a field of vectors 
    1111; A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    12 ; a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    13 ; note that the dimension of the array must suit the domain dimension. 
     12; a 2D (xy), 3D (xyz or yt) array (4D case is not coded yet). 
     13; Note that the dimension of the array must suit the domain dimension. 
    1414; 
    1515; @param VV 
    1616; Matrix representing the meridional coordinates (V point) of a field of vectors 
    1717; A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    18 ; a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    19 ; note that the dimension of the array must suit the domain dimension. 
     18; a 2D (xy), 3D (xyz or yt) array (4D case is not coded yet). 
     19; Note that the dimension of the array must suit the domain dimension. 
    2020; 
    2121; @keyword DIREC {type=scalar string} 
     
    3636; - Works only for Arakawa C-grid. 
    3737; - UU must be on U grid, VV must be on V grid 
    38 ; - 4d case is not coded yet 
     38; - 4D case is not coded yet 
    3939; - the common variable jpt is used to differ xyz (jpt=1) and xyt (jpt\=1) cases. 
    4040; - U and V arrays are cut in the same geographic domain. Because of the shift between 
     
    6161; 
    6262; @todo 
    63 ; code the 4d case 
     63; code the 4D case 
    6464; 
    6565;- 
  • trunk/SRC/Computation/div.pro

    r238 r242  
    1010; Matrix representing the zonal coordinates (U point) of a field of vectors 
    1111; A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    12 ; a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
     12; a 2D (xy), 3D (xyz or yt) array (4D case is not coded yet). 
    1313; note that the dimension of the array must suit the domain dimension. 
    1414; 
     
    1616; Matrix representing the meridional coordinates (V point) of a field of vectors 
    1717; A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    18 ; a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
     18; a 2D (xy), 3D (xyz or yt) array (4D case is not coded yet). 
    1919; note that the dimension of the array must suit the domain dimension. 
    2020; 
     
    3636; - Works only for Arakawa C-grid. 
    3737; - UU must be on U grid, VV must be on V grid 
    38 ; - 4d case is not coded yet 
     38; - 4D case is not coded yet 
    3939; - the common variable jpt is used to differ xyz (jpt=1) and xyt (jpt\=1) cases. 
    4040; - U and V arrays are cut in the same geographic domain. Because of the shift between 
     
    6060; 
    6161; @todo 
    62 ; code the 4d case 
     62; code the 4D case 
    6363; 
    6464;- 
    6565; 
    66 FUNCTION div, uu, vv, DIREC = DIREC 
     66FUNCTION div, uu, vv, DIREC = direc 
    6767; 
    6868  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Computation/grad.pro

    r238 r242  
    99; @param FIELD 
    1010; The field for which we want to compute the gradient. A 2D (xy), 
    11 ; 3D (xyz or yt) or 4D (xyzt) array or a structure readable by litchamp 
     11; 3D (xyz or yt) or 4D (xyzt) array or a structure readable by  
     12; <proidl>litchamp</proidl> 
    1213; and containing a 2D (xy), 3D (xyz or yt) or 4D (xyzt) array. 
    13 ; note that the dimension of the array must suit the domain dimension. 
     14; Note that the dimension of the array must suit the domain dimension. 
    1415; 
    1516; @param DIREC {type=scalar string} 
     
    308309      ENDIF 
    309310    END 
    310 ;------------------------------------------------------------ 
    311 ;------------------------------------------------------------ 
    312311    ELSE:return, report('input array must have 2, 3 or 4 dimensions') 
    313312  ENDCASE 
    314 ;------------------------------------------------------------ 
    315  
    316  
    317 ;------------------------------------------------------------ 
    318313  return, res 
    319314END 
    320  
    321  
    322  
    323  
    324  
    325  
Note: See TracChangeset for help on using the changeset viewer.