Package PyFoam :: Package Execution :: Module StepAnalyzedRunner
[hide private]
[frames] | no frames]

Source Code for Module PyFoam.Execution.StepAnalyzedRunner

 1  #  ICE Revision: $Id: StepAnalyzedRunner.py 7832 2007-08-28 13:07:26Z bgschaid $  
 2  """An Analyzed Runner that does something at every time-step""" 
 3   
 4  from BasicRunner import BasicRunner 
 5  from StepAnalyzedCommon import StepAnalyzedCommon 
 6   
7 -class StepAnalyzedRunner(StepAnalyzedCommon,BasicRunner):
8 """The output of a command is analyzed while being run. At every time-step a command is performed""" 9
10 - def __init__(self,analyzer,argv=None,silent=False,logname="PyFoamSolve",smallestFreq=0.,server=False):
11 """@param smallestFreq: the smallest intervall of real time (in seconds) that the time change is honored""" 12 BasicRunner.__init__(self,argv,silent,logname,server=server) 13 StepAnalyzedCommon.__init__(self,logname,analyzer,smallestFreq=smallestFreq)
14