Ignore:
Timestamp:
Aug 24, 2006, 10:04:28 AM (18 years ago)
Author:
dkearney
Message:

added units of days (d), hours (h), minutes (min), /m2.
minutes units was not added to tcl because tcl thinks it milli-in's
added a few simple tests to test day/hour/minute/second conversions
adjusted python's queue module to get condor working mostly.
adjustments to a few make files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/units.tcl

    r488 r515  
    484484
    485485Rappture::Units::define s -type seconds -metric yes
     486# can't use min becase tcl thinks its milli-in's
     487# Rappture::Units::define min->s {min*60.00} {s/60.00}
     488Rappture::Units::define h->s {h*3600.00} {s/3600.00}
     489Rappture::Units::define d->s {d*86400.00} {s/86400.00}
    486490
    487491# can't put mol's in because tcl thinks its milli-ol's
Note: See TracChangeset for help on using the changeset viewer.