LifeV
|
#include <Epetra_ConfigDefs.h>
#include <Epetra_SerialComm.h>
#include <Teuchos_ParameterList.hpp>
#include <Teuchos_XMLParameterListHelpers.hpp>
#include <Teuchos_RCP.hpp>
#include <lifev/core/LifeV.hpp>
#include <lifev/core/algorithm/PreconditionerIfpack.hpp>
#include <lifev/core/algorithm/PreconditionerML.hpp>
#include <lifev/core/algorithm/SolverAztecOO.hpp>
#include <lifev/core/algorithm/LinearSolver.hpp>
#include <lifev/core/array/MatrixBlockMonolithicEpetra.hpp>
#include <lifev/core/array/VectorBlockMonolithicEpetra.hpp>
#include <lifev/core/util/LifeChrono.hpp>
#include <lifev/eta/expression/Integrate.hpp>
#include <lifev/core/fem/BCHandler.hpp>
#include <lifev/core/fem/BCManage.hpp>
#include <lifev/eta/fem/ETFESpace.hpp>
#include <lifev/core/fem/DOFInterface3Dto3D.hpp>
#include <lifev/core/fem/GradientRecovery.hpp>
#include <lifev/core/filter/ExporterEnsight.hpp>
#include <lifev/core/filter/ExporterHDF5.hpp>
#include <lifev/core/mesh/MeshPartitioner.hpp>
#include <lifev/core/mesh/RegionMesh3DStructured.hpp>
#include <lifev/core/mesh/RegionMesh.hpp>
#include <lifev/core/mesh/MeshUtility.hpp>
#include <lifev/core/mesh/MeshData.hpp>
#include <lifev/level_set/fem/LevelSetQRAdapter.hpp>
#include <iostream>
Go to the source code of this file.
Data Structures | |
class | LaplacianExactFunctor |
class | uExactFunctor |
class | gradExactFunctor |
class | GRobinRhsFunctor |
Namespaces | |
anonymous_namespace{main.cpp} | |
Typedefs | |
typedef RegionMesh< LinearTetra > | mesh_Type |
typedef MatrixEpetra< Real > | matrix_Type |
typedef VectorEpetra | vector_Type |
typedef std::shared_ptr< vector_Type > | vectorPtr_Type |
typedef std::shared_ptr< matrix_Type > | matrixPtr_Type |
typedef LifeV::Preconditioner | basePrec_Type |
typedef std::shared_ptr< basePrec_Type > | basePrecPtr_Type |
typedef LifeV::PreconditionerIfpack | prec_Type |
typedef std::shared_ptr< prec_Type > | precPtr_Type |
Functions | |
Real | beta (1.0) |
Real | alpha (1.0) |
Real | nu (1.0) |
UInt | wall (30) |
Real | uExact (const Real &, const Real &x, const Real &y, const Real &z, const ID &) |
Real | laplacianExact (const Real &, const Real &x, const Real &y, const Real &z, const ID &) |
Real | gRobinRhs (const Real &, const Real &x, const Real &y, const Real &z, const ID &) |
int | main (int argc, char **argv) |
Variables | |
const Real | pi = 3.141592653589793 |
static bool | regIF = (PRECFactory::instance().registerProduct ( "Ifpack", &createIfpack ) ) |
static bool | regML = (PRECFactory::instance().registerProduct ( "ML", &createML ) ) |
typedef RegionMesh<LinearTetra> mesh_Type |
Definition at line 223 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef MatrixEpetra<Real> matrix_Type |
Definition at line 224 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef VectorEpetra vector_Type |
Definition at line 225 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef std::shared_ptr<vector_Type> vectorPtr_Type |
Definition at line 226 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef std::shared_ptr<matrix_Type> matrixPtr_Type |
Definition at line 227 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef LifeV::Preconditioner basePrec_Type |
Definition at line 229 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef std::shared_ptr<basePrec_Type> basePrecPtr_Type |
Definition at line 230 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef LifeV::PreconditionerIfpack prec_Type |
Definition at line 231 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
typedef std::shared_ptr<prec_Type> precPtr_Type |
Definition at line 232 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
Real beta | ( | 1. | 0 | ) |
Real alpha | ( | 1. | 0 | ) |
Real nu | ( | 1. | 0 | ) |
UInt wall | ( | 30 | ) |
Definition at line 97 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
Definition at line 102 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
Definition at line 109 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
int main | ( | int | argc, |
char ** | argv | ||
) |
phi_i
Definition at line 234 of file lifev/eta/testsuite/boundary_integrals/main.cpp.
const Real pi = 3.141592653589793 |
Definition at line 89 of file lifev/eta/testsuite/boundary_integrals/main.cpp.