| Method Summary |
| |
__init__(self,
where,
pattern,
altering)
Initialise a PDE Coefficient type |
bool
|
definesNumEquation(self)
checks if the coefficient allows to estimate the number of
equations |
bool
|
definesNumSolutions(self)
checks if the coefficient allows to estimate the number of solution
components |
tuple of two int values or
None
|
estimateNumEquationsAndNumSolutions(self,
domain,
shape)
tries to estimate the number of equations and number of solutions if
the coefficient has the given shape |
FunctionSpace
|
getFunctionSpace(self,
domain,
reducedEquationOrder,
reducedSolutionOrder)
defines the FunctionSpace of the coefficient |
tuple of int values
|
getShape(self,
domain,
numEquations,
numSolutions)
builds the required shape of the coefficient |
Data
|
getValue(self)
returns the value of the coefficient |
bool
|
isAlteringOperator(self)
checks if the coefficient alters the operator of the PDE |
bool
|
isAlteringRightHandSide(self)
checks if the coefficeint alters the right hand side of the PDE |
| |
resetValue(self)
resets coefficient value to default |
| |
setValue(self,
domain,
numEquations,
numSolutions,
reducedEquationOrder,
reducedSolutionOrder,
newValue)
set the value of the coefficient to a new value |
| Inherited from object |
| |
__delattr__(...)
x.__delattr__('name') <==> del x.name |
| |
__getattribute__(...)
x.__getattribute__('name') <==> x.name |
| |
__hash__(x)
x.__hash__() <==> hash(x) |
| |
__new__(T,
S,
...)
T.__new__(S, ...) -> a new object with type S, a subtype of T |
| |
__reduce__(...)
helper for pickle |
| |
__reduce_ex__(...)
helper for pickle |
| |
__repr__(x)
x.__repr__() <==> repr(x) |
| |
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
| |
__str__(x)
x.__str__() <==> str(x) |
| Class Variable Summary |
int |
BOTH: indicator that the the coefficient alters the operator as well as the
right hand side of the PDE |
int |
BOUNDARY: indicator that coefficient is defined on the boundary of the PDE
domain |
int |
BY_DIM: indicator that the dimension of the coefficient shape is defined by
the spatial dimension |
int |
BY_EQUATION: indicator that the dimension of the coefficient shape is defined by
the number PDE equations |
int |
BY_SOLUTION: indicator that the dimension of the coefficient shape is defined by
the number PDE solutions |
int |
CONTACT: indicator that coefficient is defined on the contact region within the
PDE domain |
int |
INTERIOR: indicator that coefficient is defined on the interior of the PDE
domain |
int |
OPERATOR: indicator that the the coefficient alters the operator of the PDE |
int |
REDUCED: indicator that coefficient is defined trough a reduced solution of the
PDE |
int |
RIGHTHANDSIDE: indicator that the the coefficient alters the right hand side of the
PDE |
int |
SOLUTION: indicator that coefficient is defined trough a solution of the PDE |