Represents a file with the solution data for one OpenFOAM-field at one
point of time
Currently this can only handle uniform field values (and never will
handle more because the ParsedParameterFile-class does a much better
job)
|
__init__(self,
directory,
name)
|
|
dimensionPattern(self)
pattern for the dimension string
|
|
internalPatternUniform(self)
pattern for internal fields
|
|
internalPattern(self)
pattern for internal fields
|
|
internalPatternGeneral(self)
general pattern for internal fields
|
|
valuePattern(self)
pattern for values
|
|
stopPattern(self)
pattern that ends a boundary
|
|
readBoundary(self,
name)
read the value at a boundary
|
|
replaceBoundary(self,
name,
newval)
write the value at a boundary
|
|
readInternal(self)
read the value of the internal field
|
|
readDimension(self)
read the dimension of the field
|
|
getDimensionString(self)
builds a dimension string from the dimension information in the
file
|
|
readInternalUniform(self)
read the value of the internal field
|
|
replaceInternal(self,
newval)
overwrite the value of the internal field
|
Inherited from FileBasis.FileBasis :
__str__ ,
closeFile ,
copyRest ,
goMatch ,
goTo ,
makeTemp ,
openFile ,
parse ,
purgeFile ,
readFile ,
writeFile
Inherited from Basics.Utilities.Utilities :
execute ,
listDirectory ,
writeDictionaryHeader
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__
|