Chombo + EB
3.0
|
#include <MultiGrid.H>
Public Member Functions | |
MGLevelOp () | |
Constructor. More... | |
virtual | ~MGLevelOp () |
Destructor. More... | |
virtual void | createCoarser (T &a_coarse, const T &a_fine, bool ghosted)=0 |
virtual void | relax (T &a_correction, const T &a_residual, int a_iterations)=0 |
virtual void | restrictResidual (T &a_resCoarse, T &a_phiFine, const T &a_rhsFine)=0 |
virtual void | prolongIncrement (T &a_phiThisLevel, const T &a_correctCoarse)=0 |
void | addObserver (MGLevelOpObserver< T > *a_observer) |
void | removeObserver (MGLevelOpObserver< T > *a_observer) |
void | addCoarserObserver (MGLevelOp< T > *a_operator, int a_coarseningFactor) |
void | notifyObserversOfChange () |
This should be called whenever the operator's data is updated. More... | |
virtual void | finerOperatorChanged (const MGLevelOp< T > &a_operator, int a_coarseningFactor) |
int | numObservers () const |
Returns the number of objects observing this operator. More... | |
![]() | |
virtual | ~LinearOp () |
virtual void | residual (T &a_lhs, const T &a_phi, const T &a_rhs, bool a_homogeneous=false)=0 |
virtual void | preCond (T &a_cor, const T &a_residual)=0 |
virtual void | applyOp (T &a_lhs, const T &a_phi, bool a_homogeneous=false)=0 |
virtual void | create (T &a_lhs, const T &a_rhs)=0 |
virtual void | clear (T &a_lhs) |
virtual void | assign (T &a_lhs, const T &a_rhs)=0 |
virtual void | assignLocal (T &a_lhs, const T &a_rhs) |
virtual Real | dotProduct (const T &a_1, const T &a_2)=0 |
virtual void | mDotProduct (const T &a_1, const int a_sz, const T a_2[], Real a_mdots[]) |
virtual void | incr (T &a_lhs, const T &a_x, Real a_scale)=0 |
virtual void | axby (T &a_lhs, const T &a_x, const T &a_y, Real a_a, Real a_b)=0 |
virtual void | scale (T &a_lhs, const Real &a_scale)=0 |
virtual Real | norm (const T &a_rhs, int a_ord)=0 |
virtual Real | dx () const |
virtual void | setToZero (T &a_lhs)=0 |
virtual void | write (const T *a, const char *filename) |
![]() | |
MGLevelOpObserver () | |
Base level Constructor. Called by all subclasses. More... | |
virtual | ~MGLevelOpObserver () |
Destructor. More... | |
virtual void | operatorChanged (const MGLevelOp< T > &a_operator) |
void | setObservee (MGLevelOp< T > *a_observee) |
void | clearObservee () |
Private Member Functions | |
MGLevelOp (const MGLevelOp &) | |
MGLevelOp & | operator= (const MGLevelOp &) |
Private Attributes | |
std::vector< MGLevelOpObserver< T > * > | m_observers |
List of observers for the operator. More... | |
std::vector< int > | m_coarseningFactors |
Multigrid coarsening factors. More... | |
This class handles the additional tasks of coordinating operations between this level and the level one coarser than this 'level'. This class is also an MGLevelOpObserver, so objects of this type can observe other MGLevelOp objects.
|
pure 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).
Implemented in EBAMRPoissonOp, EBConductivityOp, EBViscousTensorOp, slowEBCO, ViscousTensorOp, EBPoissonOp, AMRPoissonOp, ResistivityOp, AMRNodeOp, NewPoissonOp, and NewPoissonOp4.
|
pure virtual |
Use your relaxtion operator to remove the high frequency wave numbers from the correction so that it may be averaged to a coarser refinement. A point relaxtion scheme, for example takes the form a_correction -= lambda*(L(a_correction) - a_residual).
Implemented in EBAMRPoissonOp, EBConductivityOp, EBViscousTensorOp, slowEBCO, ViscousTensorOp, EBPoissonOp, AMRPoissonOp, ResistivityOp, AMRNodeOp, NewPoissonOp, and NewPoissonOp4.
Referenced by AMRMultiGrid< LevelData< T > >::getAMROperators().
|
pure virtual |
calculate restricted residual a_resCoarse[2h] = I[h->2h] (rhsFine[h] - L[h](phiFine[h])
Implemented in EBAMRPoissonOp, EBConductivityOp, EBViscousTensorOp, slowEBCO, ViscousTensorOp, EBPoissonOp, AMRPoissonOp, ResistivityOp, AMRNodeOp, NewPoissonOp, NewPoissonOp4, and VCAMRPoissonOp2.
|
pure virtual |
correct the fine solution based on coarse correction a_phiThisLevel += I[2h->h](a_correctCoarse)
Implemented in EBAMRPoissonOp, EBConductivityOp, EBViscousTensorOp, slowEBCO, ViscousTensorOp, EBPoissonOp, AMRPoissonOp, ResistivityOp, AMRNodeOp, NewPoissonOp, and NewPoissonOp4.
|
inline |
This adds a new observer to this operator. Note that this operator does not own the resources for the observer, so you must be careful to ensure that the observer does not go out of scope while the operator lives. If the observer is already observing the operator, this operation has no effect.
a_observer | An observer to be notified when the operator changes. |
|
inline |
Removes the given observer from the operator's list of observers. This method has no effect if the observer is not found in the list.
a_observer | An observer to be removed from the operator's observer list. |
|
inline |
Adds a MGLevelOp observer to this operator that is notified when the operator changes so that it can coarsen its corresponding data. This is used to implement dependencies between multigrid operators at different grid levels.
a_operator | The multigrid operator that will observe this operator. No operator may observe itself. If a_operator is already observing this operator, this method has no effect. |
a_coarseningFactor | The refinement factor between the grid level for a_operator and that for this one. |
|
inline |
This should be called whenever the operator's data is updated.
Notify our observers that the operator's data has changed, taking special care to pass multigrid operators their level.
|
inlinevirtual |
Overload this method to implement the response of a multigrid operator to a change in a finer operator that it is observing. This allows the coarser observer to coarsen any data that has been changed in the finer operator.
a_operator | The operator whose state has changed. |
a_coarseningFactor | The factor by which this operator's data is coarsened with respect to that of a_operator. |
Reimplemented in EBConductivityOp, EBViscousTensorOp, and VCAMRPoissonOp2.
Referenced by MGLevelOp< LevelData< NodeFArrayBox > >::notifyObserversOfChange().
|
inline |
Returns the number of objects observing this operator.
Referenced by AMRMultiGridInspector< T >::~AMRMultiGridInspector().
|
private |
List of observers for the operator.
|
private |
Multigrid coarsening factors.