Changes between Version 1 and Version 2 of Doc/panc/stdtpl/units


Ignore:
Timestamp:
Nov 30, 2007, 10:58:22 AM (18 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Charles Loomis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/panc/stdtpl/units

    v1 v2  
    22[[TracNav]]
    33
     4This template contains multiplier variable definitions that allow the consistent use of units throughout a machine configuration.  The base units assumed by this template are megabytes (MB) and megahertz (MHz); that is, those multipliers have a value of 1.  The multipliers and their values are:
     5   * mb or MB = 1
     6   * gb or GB = 1024 * MB;
     7   * tb or TB = 1024 * GB;
     8   * MHz = 1
     9   * GHz = 1000 * MHz;
     10These are available as global variables and can be used as in the following example:
     11{{{
     12  variable myspeed = 366 * GHz;
     13  variable mysize = 24 * GB;
     14}}}
     15Using these units consistently throughout is clearer and helps avoid inconsistencies in the parameters.
     16
     17