Ignore:
Timestamp:
Apr 6, 2007, 6:06:24 PM (18 years ago)
Author:
dkearney
Message:

Updates to Rappture::Utils::progress for all languages
removed the dependancy on Rappture.Units from within number.py, it should only depend on Rappture which will include Rappture.Units
added Rappture.Units as a module to load when people import Rappture in python.
added -V pbs variable to queue.py to include qsub environment variables in the submitted job.
updated setup.py.in to install Rappture.Utils
added progress bar to all app-fermi examples showing how to use the Rappture::Utils::progress function in all languages.
added destructor definitions to Node classes in src2/core

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/app-fermi/perl/fermi.pl

    r555 r665  
    4141while( $E < $Emax ) {
    4242        $f = 1.0 / ( 1.0 + exp(($E - $Ef) / $kT));
     43    Rappture::Utils::progress((($E-$Emin)/($Emax-$Emin)*100),"Iterating");
    4344        $driver->put("output.curve(f12).component.xy", "$f $E\n", 1);
    4445        $E = $E + $dE;
Note: See TracChangeset for help on using the changeset viewer.