|
| NewPoissonOp4 () |
|
virtual | ~NewPoissonOp4 () |
|
|
void | define (const RealVect &a_dx, const ProblemDomain &a_domain, BCFunc a_bc) |
|
virtual void | createCoarsened (FArrayBox &a_lhs, const FArrayBox &a_rhs, const int &a_refRat) |
|
virtual void | residual (FArrayBox &a_lhs, const FArrayBox &a_phi, const FArrayBox &a_rhs, bool a_homogeneous=false) |
|
virtual void | preCond (FArrayBox &a_correction, const FArrayBox &a_residual) |
|
virtual void | applyOp (FArrayBox &a_lhs, const FArrayBox &a_phi, bool a_homogeneous=false) |
|
virtual void | create (FArrayBox &a_lhs, const FArrayBox &a_rhs) |
|
virtual void | assign (FArrayBox &a_lhs, const FArrayBox &a_rhs) |
|
virtual Real | dotProduct (const FArrayBox &a_1, const FArrayBox &a_2) |
|
virtual void | incr (FArrayBox &a_lhs, const FArrayBox &a_x, Real a_scale) |
|
virtual void | axby (FArrayBox &a_lhs, const FArrayBox &a_x, const FArrayBox &a_y, Real a, Real b) |
|
virtual void | scale (FArrayBox &a_lhs, const Real &a_scale) |
|
virtual Real | norm (const FArrayBox &a_x, int a_ord) |
|
virtual void | setToZero (FArrayBox &a_x) |
|
|
virtual void | relax (FArrayBox &a_e, const FArrayBox &a_residual, int iterations) |
|
virtual void | createCoarser (FArrayBox &a_coarse, const FArrayBox &a_fine, bool ghost) |
|
virtual void | restrictResidual (FArrayBox &a_resCoarse, FArrayBox &a_phiFine, const FArrayBox &a_rhsFine) |
|
virtual void | prolongIncrement (FArrayBox &a_phiThisLevel, const FArrayBox &a_correctCoarse) |
|
| MGLevelOp () |
| Constructor. More...
|
|
virtual | ~MGLevelOp () |
| Destructor. More...
|
|
virtual void | relaxNF (FArrayBox &a_phi, const FArrayBox *a_phiCoarse, const FArrayBox &a_rhs, int a_iterations) |
| specialized no-fine relax function, useful for full-multigrid schemes, defaults to regular relax More...
|
|
virtual void | restrictResidual (FArrayBox &a_resCoarse, FArrayBox &a_phiFine, const FArrayBox *a_phiCoarse, const FArrayBox &a_rhsFine, bool homogeneous) |
| full-multigrid version of restrictResidual, useful for FAS-type schemes. Defaults to standard restriction More...
|
|
virtual void | restrictR (FArrayBox &a_phiCoarse, const FArrayBox &a_phiFine) |
| simple restriction function More...
|
|
void | addObserver (MGLevelOpObserver< FArrayBox > *a_observer) |
|
virtual void | applyOpMg (FArrayBox &a_lhs, FArrayBox &a_phi, FArrayBox *a_phiCoarse, bool a_homogeneous) |
| Apply an operator. More...
|
|
virtual void | residualNF (FArrayBox &a_lhs, FArrayBox &a_phi, const FArrayBox *a_phiCoarse, const FArrayBox &a_rhs, bool a_homogeneous=false) |
|
void | removeObserver (MGLevelOpObserver< FArrayBox > *a_observer) |
|
void | addCoarserObserver (MGLevelOp< FArrayBox > *a_operator, int a_coarseningFactor) |
|
void | notifyObserversOfChange () |
| This should be called whenever the operator's data is updated. More...
|
|
virtual void | finerOperatorChanged (const MGLevelOp< FArrayBox > &a_operator, int a_coarseningFactor) |
|
int | numObservers () const |
| Returns the number of objects observing this operator. More...
|
|
virtual | ~LinearOp () |
|
virtual void | clear (FArrayBox &a_lhs) |
|
virtual void | assignLocal (FArrayBox &a_lhs, const FArrayBox &a_rhs) |
|
virtual void | mDotProduct (const FArrayBox &a_1, const int a_sz, const FArrayBox a_2[], Real a_mdots[]) |
|
virtual Real | dx () const |
|
virtual void | write (const FArrayBox *a, const char *filename) |
|
| MGLevelOpObserver () |
| Base level Constructor. Called by all subclasses. More...
|
|
virtual | ~MGLevelOpObserver () |
| Destructor. More...
|
|
virtual void | operatorChanged (const MGLevelOp< FArrayBox > &a_operator) |
|
void | setObservee (MGLevelOp< FArrayBox > *a_observee) |
|
void | clearObservee () |
|
virtual void NewPoissonOp4::createCoarser |
( |
FArrayBox & |
a_coarse, |
|
|
const FArrayBox & |
a_fine, |
|
|
bool |
ghosted |
|
) |
| |
|
virtual |
Create a coarsened (by two) version of the input data. This does not include averaging the data. So if a_fine is over a Box of (0, 0, 0) (63, 63, 63), a_fine should be over a Box (0, 0, 0) (31, 31, 31).
Implements MGLevelOp< FArrayBox >.