Changes between Version 3 and Version 4 of SmoothFile


Ignore:
Timestamp:
05/09/11 13:52:57 (13 years ago)
Author:
mmaipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SmoothFile

    v3 v4  
    11= Smoothfiles = 
    2 Smooth\Files section is a "get files" section with frequency informations for all initial map and files get in libIGCM configurations. 
     2Smooth``Files section is a "get files" section with frequency informations for all initial map and files get in libIGCM configurations. 
    33 
    44It is an optionnal section. 
    55 
    6 All frequency values are in Cumul\Period unit. See section Smooth\Modulo below for usage of frequency vector. 
     6All frequency values are in Cumul``Period unit. See section Smooth``Modulo below for usage of frequency vector. 
    77 
    88== How to use Smoothfile section ? == 
     
    2323 
    2424=== Original branch === 
    25 Smooth\Files branch begin at commit #6 see first import in changset [8]. 
    26 It use a new function IGCM_Smooth\Modulo to analyse A string of min max and modulo like definition of Scilab vectors. 
     25Smooth``Files branch begin at commit #6 see first import in changset [8]. 
     26It use a new function IGCM_Smooth``Modulo to analyse A string of min max and modulo like definition of Scilab vectors. 
    2727{{{ 
    2828IGCM_SmoothModulo StringModulo value 
     
    4646Changeset [409] : [[BR]] 
    4747For Smooth file, first access is always true for Period=1.  
    48 Get Files when Smooth\Min<=Cumul\Period<=Smooth\Max and modulo [min]:[modulo:][max] is true. [BR] 
     48Get Files when Smooth``Min<=Cumul``Period<=Smooth``Max and modulo [min]:[modulo:][max] is true. [BR] 
    4949see ticket #44 
    5050{{{ 
     
    5252        387                     if ( [ X${ret} = Xtrue ] || ( [ ${Period} -eq 1 ] && [ ${CumulPeriod} -ge ${SmoothMin} ] && [ ${CumulPeriod} -le ${SmoothMax} ) ) ; then  
    5353}}} 
    54 This force the file to be get in the fist Period of a re-submission '''AND''' Smooth\Min <= Cumul\Period <= Smooth\Max. 
     54This force the file to be get in the fist Period of a re-submission '''AND''' Smooth``Min <= Cumul``Period <= Smooth``Max. 
    5555 
    5656=== Bug on re-submission === 
     
    7474You should only use this version. 
    7575 
    76 == SmoothModulo function == 
     76== Smooth``Modulo function == 
    7777Definition of Smooth modulo function  
    7878 
    79 Function IGCM_Smooth\Modulo analyses a string of "min max and modulo" like definition of Scilab vectors. 
     79Function IGCM_Smooth``Modulo analyses a string of "min max and modulo" like definition of Scilab vectors. 
    8080 
    8181usage : 
     
    8484}}} 
    8585 
    86 String\Modulo : A string of min:module:max like definition of Scilab vectors.  
     86String``Modulo : A string of min:module:max like definition of Scilab vectors.  
    8787{{{ 
    8888[min]:[modulo:][max]  
     
    9797 
    9898Example :  
    99  * 1:12: for a 1M Period\Length means in all january only through the end (defaut end corresponds to Date\End) 
    100  * 1:12:124 for a 1M Period\Length meansthen same, but only if Cumul\Period < 125. 
     99 * 1:12: for a 1M Period``Length means in all january only through the end (defaut end corresponds to Date``End) 
     100 * 1:12:124 for a 1M Period``Length meansthen same, but only if Cumul``Period < 125. 
    101101 * :12:124 is the same a previous (default init is 1). 
    102  * 1:124 means always before Cumul\Period < 125. 
    103  * : always. You can use Boundary\Files section to do this.  
     102 * 1:124 means always before Cumul``Period < 125. 
     103 * : always. You can use Boundary``Files section to do this.