2275 |
@param debug: if True debug informations are printed. |
@param debug: if True debug informations are printed. |
2276 |
|
|
2277 |
""" |
""" |
2278 |
super(Helmholtz, self).__init__(domain,1,1,debug) |
super(AdvectionDiffusion, self).__init__(domain,1,1,debug) |
2279 |
self.COEFFICIENTS={"omega": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_EQUATION,),PDECoefficient.OPERATOR), |
self.COEFFICIENTS={"omega": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_EQUATION,),PDECoefficient.OPERATOR), |
2280 |
"k": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_DIM,PDECoefficient.BY_DIM),PDECoefficient.OPERATOR), |
"k": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_DIM,PDECoefficient.BY_DIM),PDECoefficient.OPERATOR), |
2281 |
"f": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_EQUATION,),PDECoefficient.RIGHTHANDSIDE), |
"f": PDECoefficient(PDECoefficient.INTERIOR,(PDECoefficient.BY_EQUATION,),PDECoefficient.RIGHTHANDSIDE), |
2313 |
depending of reduced order is used for the representation of the equation. |
depending of reduced order is used for the representation of the equation. |
2314 |
@raise IllegalCoefficient: if an unknown coefficient keyword is used. |
@raise IllegalCoefficient: if an unknown coefficient keyword is used. |
2315 |
""" |
""" |
2316 |
super(Helmholtz, self).setValue(**coefficients) |
super(AdvectionDiffusion, self).setValue(**coefficients) |
2317 |
|
|
2318 |
def getCoefficientOfGeneralPDE(self,name): |
def getCoefficientOfGeneralPDE(self,name): |
2319 |
""" |
""" |