#include <nlnml_finelevelnoxinterface.H>
Public Member Functions | |
| NLNML_FineLevelNoxInterface () | |
| Constructor. | |
| virtual | ~NLNML_FineLevelNoxInterface () |
| virtual Destructor | |
| virtual bool | computeF (const Epetra_Vector &x, Epetra_Vector &F, const FillType fillFlag)=0 |
| Compute and return F (derived from NOX::Epetra::Interface::Required). | |
| virtual bool | computeJacobian (const Epetra_Vector &x, Epetra_Operator &Jac)=0 |
| Compute the current Jacobian (derived from NOX::Epetra::Interface::Jacobian). | |
| virtual Epetra_CrsMatrix * | getJacobian ()=0 |
| Return the Jacobian from the application. | |
| virtual const Epetra_CrsGraph * | getGraph ()=0 |
| Return the Graph of the fine level problem from the application. | |
| virtual const Epetra_CrsGraph * | getModifiedGraph ()=0 |
| Return the modified Graph of the fine level problem from the application. | |
| virtual const Epetra_Vector * | getSolution ()=0 |
| Return the current solution from the application. | |
| virtual const Epetra_Map & | getMap ()=0 |
| Return the Map of the current solution from the application. | |
| virtual double * | Get_Nullspace (const int nummyrows, const int numpde, const int dim_nullsp)=0 |
| Compute and return the Nullspace of the problem from the application. | |
| virtual bool | getBlockInfo (int *nblocks, vector< int > &blocks, vector< int > &block_pde)=0 |
| Compute and return the block node information from the application. | |
| virtual void | ApplyAllConstraints (Epetra_Vector &gradient, int level) |
| Dummy routine to apply constraints. | |
| virtual bool | isnewJacobian () |
| Query whether the current Jacobian matches the current solution vector. | |
| virtual int | getnumJacobian () |
| Query how often the Jacobian has been recomputed. | |
| double | getsumtime () |
| Query the summed time spent in this interface. | |
| void | resetsumtime () |
| Reset the summed time spent in this interface. | |
| int | getnumcallscomputeF () |
| Query the number of calls to the computeF method of this class. | |
| bool | setnumcallscomputeF (int ncalls) |
| Reset the number of calls to the computeF method of this class to a certain value. | |
| int | OutLevel () |
| Returns the level of output to be generated [ 0 - 10 ]. | |
Protected Attributes | |
| bool | isnewJacobian_ |
| int | numJacobian_ |
| int | printlevel_ |
| double | t_ |
| int | ncalls_computeF_ |
NLNML::NLNML_FineLevelNoxInterface is a pure virtual class that serves as an interface between the NLNML_Preconditioner and any application. It implements NOX interfaces NOX::Epetra::Interface::Required and NOX::EpetraNew::Interface::Jacobian. Besides serving as an interface for the nonlinear iteration, it also serves as an interface to do finite differencing of Jacobians and as the fine level interface all coarser level interfaces refer to. It therefore plays a major role in using the NLNML_Preconditioner.
To make use of the full functionality of this class it requires ML to be configured with the following options:
--with-ml_nox --enable-epetra --enable-epetraext --enable-nox --enable-nox-epetra --enable-prerelease --enable-aztecoo --enable-amesos
|
||||||||||||
|
Dummy routine to apply constraints. If the underlying application needs to apply constraints to the gradient computed by the preconditioner this method has to be implemented. |
|
||||||||||||||||
|
Compute and return F (derived from NOX::Epetra::Interface::Required). Compute and return F (derived from NOX::Epetra::Interface::Required). This method is called by the nonlinear preconditioner. It supplies a solution vector x and needs a residual vector F computed by this funtion on output.
|
|
||||||||||||
|
Compute the current Jacobian (derived from NOX::Epetra::Interface::Jacobian). Compute the current Jacobian (derived from NOX::Epetra::Interface::Jacobian). This method is called by the nonlinear preconditioner. It supplies a solution vector x and wants a Jacobian computed matching this solution vector on output. getJacobian will be used to obtain the Jacobian
|
|
||||||||||||||||
|
Compute and return the Nullspace of the problem from the application. Compute and return the Nullspace of the problem from the application. This method is called by the nonlinear preconditioner to obtain the Nullspace of the problem from the application. If the application returns NULL on exit, the NLNML_Preconditioner will use a default Nullspace of correct size (supplied in parameter list) and will assume constant number of dofs per node (constant block size). This will lead to errors in the aggregation process if the problem is NOT of constant block size!
|
|
||||||||||||||||
|
Compute and return the block node information from the application. Compute and return the block node information from the application. This method is called by the nonlinear preconditioner to obtain information about non-constant block sizes. It is used only in the case of the VBMETIS aggregation scheme. If on exit blocks and block_pde are NULL, the NLNML_Preconditioner will assume a constant vblock size and will use METIS instead of the VBMETIS aggregation scheme.
|
|
|
Return the Graph of the fine level problem from the application. Return the Graph of the fine level problem from the application. The NLNML_Preconditioner uses this method to get the graph of the fine level problem from the application to do finite differencing |
|
|
Return the Jacobian from the application. Return the Jacobian from the application. The NLNML_Preconditioner uses this method to get the jacobian from the application. It will never be used in the matrixfree case.
|
|
|
Return the Map of the current solution from the application. Return the Map of the current solution from the application. The NLNML_Preconditioner uses this method to get the map of the current solution vector of the fine level problem from the application. |
|
|
Return the modified Graph of the fine level problem from the application. Return a graph that has sufficient modifications to reflect constraints that will be applied to the solution and residual. See Sandia report for more details |
|
|
Return the current solution from the application. Return the current solution from the application. The NLNML_Preconditioner uses this method to get the current solution vector of the fine level problem from the application. |
1.3.9.1