Ignore:
Timestamp:
03/21/07 10:14:37 (17 years ago)
Author:
pinsard
Message:

new idldoc html and assistant outputs

Location:
trunk/SRC/Documentation/idldoc_assistant_output/Computation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/idldoc_assistant_output/Computation/curl.html

    r200 r234  
    7272      <h2>curl  <font size="-1" color="#006633"> 
    7373 Calculation 
    74  </font></h2> 
     74</font></h2> 
    7575 
    7676      <p><font face="Courier"><i>result = </i>curl(<i><a href="#_curl_keyword_uu">uu</a>, <a href="#_curl_keyword_vv">vv</a></i>, <a href="#_curl_keyword_DIREC">DIREC</a>=<i>scalar string</i>)</font></p> 
     
    103103 A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    104104 a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    105  note that the dimension of the arry must suit the domain dimension. 
     105 note that the dimension of the array must suit the domain dimension. 
    106106 
    107107     
     
    119119    </h4> 
    120120 
    121       
     121     
    122122 Matrix representing the meridional coordinates (V point) of a field of vectors 
    123123 A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    124124 a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    125  note that the dimension of the arry must suit the domain dimension. 
     125 note that the dimension of the array must suit the domain dimension. 
    126126 
    127127     
     
    151151     
    152152 
    153     <h3>Examples</h3> 
     153    <h3>Examples</h3><pre> 
    154154 IDL> @tst_initorca2 
    155155 IDL> plt, curl(dist(jpi,jpj), dist(jpi,jpj)) 
    156156 
    157     <h3>Version history</h3> 
     157    </pre><h3>Version history</h3> 
    158158     
    159159    <h4>Version</h4> 
    160  $Id: curl.pro 168 2006-09-06 10:46:29Z pinsard $ 
    161  
    162     <h4>History</h4>  
     160 $Id: curl.pro 231 2007-03-19 17:15:51Z pinsard $ 
     161 
     162    <h4>History</h4> 
    163163 Guillaume Roullet (grlod@ipsl.jussieu.fr) 
    164164 Sebastien Masson (smasson@lodyc.jussieu.fr) 
    165165 adaptation to work with a reduce domain 
    166166 21/5/1999: missing values at !values.f_nan 
    167   
     167 
    168168     
    169169 
     
    171171     
    172172     
    173     <h4>Todo items</h4>  
     173    <h4>Todo items</h4> 
    174174 code the 4d case 
    175175    <h4>Restrictions</h4> 
    176176 
    177  - Works only for Arakawa C-grid.  
     177 - Works only for Arakawa C-grid. 
    178178 - UU must be on U grid, VV must be on V grid 
    179179 - 4d case is not coded yet 
    180180 - the common variable jpt is used to differ xyz (jpt=1) and xyt (jpt=1) cases. 
    181  - U and V arrays are cut in the same geographic domain. Because of the shift between  
    182    T, U, V and F grids, it is possible that these two arrays do not have the same  
    183    size and refer to different indexes. In this case, arrays are re-cut on  
    184    common indexes. To avoid these re-cuts, use the keyword /memeindice in domdef.pro 
     181 - U and V arrays are cut in the same geographic domain. Because of the shift between 
     182   T, U, V and F grids, it is possible that these two arrays do not have the same 
     183   size and refer to different indexes. In this case, arrays are re-cut on 
     184   common indexes. To avoid these re-cuts, use the keyword /memeindice in 
     185 <a href=".//../../ToBeReviewed/GRILLE/domdef.html">domdef</a> 
    185186 - When computing the divergence, we update, vargrid, varname, varunits and the 
    186187   grid position parameters (firstxf, lastxf, nxf, firstyf, lastyf, nyf). 
    187  - points that cannot be computed (domain bondaries, coastline) are set to NaN 
     188 - points that cannot be computed (domain boundaries, coastline) are set to NaN 
    188189 
    189190 
     
    192193     
    193194    <h4>Uses routines</h4> 
    194  cm_4cal, cm_4data, cm_4mmesh  
     195 cm_4cal, cm_4data, cm_4mmesh 
    195196 
    196197     
  • trunk/SRC/Documentation/idldoc_assistant_output/Computation/div.html

    r200 r234  
    9999    </h4> 
    100100 
    101       
     101     
    102102 Matrix representing the zonal coordinates (U point) of a field of vectors 
    103103 A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    104104 a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    105  note that the dimension of the arry must suit the domain dimension. 
     105 note that the dimension of the array must suit the domain dimension. 
    106106 
    107107     
     
    119119    </h4> 
    120120 
    121       
     121     
    122122 Matrix representing the meridional coordinates (V point) of a field of vectors 
    123123 A 2D (xy), 3D (xyz or yt) or a structure readable by litchamp and containing 
    124124 a 2D (xy), 3D (xyz or yt) array (4d case is not coded yet). 
    125  note that the dimension of the arry must suit the domain dimension. 
     125 note that the dimension of the array must suit the domain dimension. 
    126126 
    127127     
     
    151151     
    152152 
    153     <h3>Examples</h3> 
     153    <h3>Examples</h3><pre> 
    154154 IDL> @tst_initorca2 
    155155 IDL> plt, div(dist(jpi,jpj), dist(jpi,jpj)) 
    156156 
    157     <h3>Version history</h3> 
     157    </pre><h3>Version history</h3> 
    158158     
    159159    <h4>Version</h4> 
    160  $Id: div.pro 168 2006-09-06 10:46:29Z pinsard $ 
     160 $Id: div.pro 231 2007-03-19 17:15:51Z pinsard $ 
    161161 
    162162    <h4>History</h4> 
     
    170170     
    171171     
    172     <h4>Todo items</h4>  
     172    <h4>Todo items</h4> 
    173173 code the 4d case 
    174174    <h4>Restrictions</h4> 
    175175 
    176  - Works only for Arakawa C-grid.  
     176 - Works only for Arakawa C-grid. 
    177177 - UU must be on U grid, VV must be on V grid 
    178178 - 4d case is not coded yet 
    179179 - the common variable jpt is used to differ xyz (jpt=1) and xyt (jpt=1) cases. 
    180  - U and V arrays are cut in the same geographic domain. Because of the shift between  
    181    T, U, V and F grids, it is possible that these two arrays do not have the same  
    182    size and refer to different indexes. In this case, arrays are re-cut on  
    183    common indexes. To avoid these re-cuts, use the keyword /memeindice in domdef.pro 
     180 - U and V arrays are cut in the same geographic domain. Because of the shift between 
     181   T, U, V and F grids, it is possible that these two arrays do not have the same 
     182   size and refer to different indexes. In this case, arrays are re-cut on 
     183   common indexes. To avoid these re-cuts, use the keyword /memeindice in  
     184 <a href=".//../../ToBeReviewed/GRILLE/domdef.html">domdef</a> 
    184185 - When computing the divergence, we update, vargrid, varname, varunits and the 
    185186   grid position parameters (firstxt, lastxt, nxt, firstyt, lastyt, nyt). 
    186  - points that cannot be computed (domain bondaries, coastline) are set to NaN 
     187 - points that cannot be computed (domain boundaries, coastline) are set to NaN 
    187188 
    188189 
     
    191192     
    192193    <h4>Uses routines</h4> 
    193  cm_4cal, cm_4data, cm_4mmesh  
     194 cm_4cal, cm_4data, cm_4mmesh 
    194195 
    195196     
  • trunk/SRC/Documentation/idldoc_assistant_output/Computation/grad.html

    r200 r234  
    7878     
    7979 
     80 
    8081    <h3>Return value</h3> RES {type=2D, 3D or 4D array} 
    8182 the gradient of the input data (with the same size) 
     
    102103 3D (xyz or yt) or 4D (xyzt) array or a structure readable by litchamp 
    103104 and containing a 2D (xy), 3D (xyz or yt) or 4D (xyzt) array. 
    104  note that the dimension of the arry must suit the domain dimension. 
     105 note that the dimension of the array must suit the domain dimension. 
    105106 
    106107     
     
    126127     
    127128 
    128     <h3>Examples</h3> 
     129    <h3>Examples</h3><pre> 
    129130 IDL> @tst_initorca2 
    130131 IDL> plt, grad({arr:gphit,g:'T'}, 'x') 
    131132 IDL> plt, grad({arr:gphit,g:'T'}, 'y') 
    132133 
    133     <h3>Version history</h3> 
     134    </pre><h3>Version history</h3> 
    134135     
    135136    <h4>Version</h4> 
    136  $Id: grad.pro 168 2006-09-06 10:46:29Z pinsard $ 
     137 $Id: grad.pro 232 2007-03-20 16:59:36Z pinsard $ 
    137138 
    138139    <h4>History</h4> 
     
    146147     
    147148    <h4>Restrictions</h4> 
    148  - Works only for Arakawa C-grid.  
     149 - Works only for Arakawa C-grid. 
    149150 - When computing the gradient, the result is not on the same grid point 
    150151   than the input data. In consequence, we update, vargrid and the grid position 
    151152   parameters (firstx[tuvf], lastx[tuvf], nx[tuvf], firsty[tuvf], lasty[tuvf], 
    152153   ny[tuvf], firstz[tw], lastz[tw], nz[tw]). 
    153  - points that cannot be computed (domain bondaries, coastline) are set to NaN 
     154 - points that cannot be computed (domain boundaries, coastline) are set to NaN 
    154155 - the common variable jpt is used to differ xyz (jpt=1) and xyt (jpt=1) cases. 
    155156 
     
    159160     
    160161    <h4>Uses routines</h4> 
    161  cm_4cal, cm_4data, cm_4mmesh  
     162 cm_4cal, cm_4data, cm_4mmesh 
    162163 
    163164     
Note: See TracChangeset for help on using the changeset viewer.