MFEM v4.7.0
Finite element discretization library
|
#include <complex_fem.hpp>
Public Member Functions | |
SesquilinearForm (FiniteElementSpace *fes, ComplexOperator::Convention convention=ComplexOperator::HERMITIAN) | |
SesquilinearForm (FiniteElementSpace *fes, BilinearForm *bfr, BilinearForm *bfi, ComplexOperator::Convention convention=ComplexOperator::HERMITIAN) | |
Create a SesquilinearForm on the FiniteElementSpace fes, using the same integrators as the BilinearForms bfr and bfi . | |
ComplexOperator::Convention | GetConvention () const |
void | SetConvention (const ComplexOperator::Convention &convention) |
void | SetAssemblyLevel (AssemblyLevel assembly_level) |
Set the desired assembly level. | |
BilinearForm & | real () |
BilinearForm & | imag () |
const BilinearForm & | real () const |
const BilinearForm & | imag () const |
void | AddDomainIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new Domain Integrator. | |
void | AddDomainIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag, Array< int > &elem_marker) |
Adds new Domain Integrator, restricted to the given attributes. | |
void | AddBoundaryIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new Boundary Integrator. | |
void | AddBoundaryIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag, Array< int > &bdr_marker) |
Adds new Boundary Integrator, restricted to specific boundary attributes. | |
void | AddInteriorFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new interior Face Integrator. Assumes ownership of bfi. | |
void | AddBdrFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new boundary Face Integrator. Assumes ownership of bfi. | |
void | AddBdrFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag, Array< int > &bdr_marker) |
Adds new boundary Face Integrator, restricted to specific boundary attributes. | |
void | Assemble (int skip_zeros=1) |
Assemble the local matrix. | |
void | Finalize (int skip_zeros=1) |
Finalizes the matrix initialization. | |
ComplexSparseMatrix * | AssembleComplexSparseMatrix () |
Returns the matrix assembled on the true dofs, i.e. P^t A P. | |
FiniteElementSpace * | FESpace () const |
Return the parallel FE space associated with the ParBilinearForm. | |
void | FormLinearSystem (const Array< int > &ess_tdof_list, Vector &x, Vector &b, OperatorHandle &A, Vector &X, Vector &B, int copy_interior=0) |
void | FormSystemMatrix (const Array< int > &ess_tdof_list, OperatorHandle &A) |
virtual void | RecoverFEMSolution (const Vector &X, const Vector &b, Vector &x) |
virtual void | Update (FiniteElementSpace *nfes=NULL) |
void | SetDiagonalPolicy (mfem::Matrix::DiagonalPolicy dpolicy) |
Sets diagonal policy used upon construction of the linear system. | |
Matrix::DiagonalPolicy | GetDiagonalPolicy () const |
Returns the diagonal policy of the sesquilinear form. | |
virtual | ~SesquilinearForm () |
Class for sesquilinear form
A sesquilinear form is a generalization of a bilinear form to complex-valued fields. Sesquilinear forms are linear in the second argument but the first argument involves a complex conjugate in the sense that:
a(alpha u, beta v) = conj(alpha) beta a(u, v)
The convention argument in the class's constructor is documented in the mfem::ComplexOperator class found in linalg/complex_operator.hpp.
When supplying integrators to the SesquilinearForm either the real or imaginary integrator can be NULL. This indicates that the corresponding portion of the complex-valued material coefficient is equal to zero.
Definition at line 206 of file complex_fem.hpp.
mfem::SesquilinearForm::SesquilinearForm | ( | FiniteElementSpace * | fes, |
ComplexOperator::Convention | convention = ComplexOperator::HERMITIAN ) |
Definition at line 296 of file complex_fem.cpp.
mfem::SesquilinearForm::SesquilinearForm | ( | FiniteElementSpace * | fes, |
BilinearForm * | bfr, | ||
BilinearForm * | bfi, | ||
ComplexOperator::Convention | convention = ComplexOperator::HERMITIAN ) |
Create a SesquilinearForm on the FiniteElementSpace fes, using the same integrators as the BilinearForms bfr and bfi .
The pointer fes is not owned by the newly constructed object.
The integrators are copied as pointers and they are not owned by the newly constructed SesquilinearForm.
Definition at line 303 of file complex_fem.cpp.
|
virtual |
Definition at line 316 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddBdrFaceIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag ) |
Adds new boundary Face Integrator. Assumes ownership of bfi.
Definition at line 362 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddBdrFaceIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag, | ||
Array< int > & | bdr_marker ) |
Adds new boundary Face Integrator, restricted to specific boundary attributes.
Assumes ownership of bfi.
The array bdr_marker is stored internally as a pointer to the given Array<int> object.
Definition at line 369 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddBoundaryIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag ) |
Adds new Boundary Integrator.
Definition at line 338 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddBoundaryIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag, | ||
Array< int > & | bdr_marker ) |
Adds new Boundary Integrator, restricted to specific boundary attributes.
Definition at line 346 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddDomainIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag ) |
Adds new Domain Integrator.
Definition at line 322 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddDomainIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag, | ||
Array< int > & | elem_marker ) |
Adds new Domain Integrator, restricted to the given attributes.
Definition at line 329 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddInteriorFaceIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag ) |
Adds new interior Face Integrator. Assumes ownership of bfi.
Definition at line 355 of file complex_fem.cpp.
void mfem::SesquilinearForm::Assemble | ( | int | skip_zeros = 1 | ) |
Assemble the local matrix.
Definition at line 378 of file complex_fem.cpp.
ComplexSparseMatrix * mfem::SesquilinearForm::AssembleComplexSparseMatrix | ( | ) |
Returns the matrix assembled on the true dofs, i.e. P^t A P.
The returned matrix has to be deleted by the caller.
Definition at line 392 of file complex_fem.cpp.
|
inline |
Return the parallel FE space associated with the ParBilinearForm.
Definition at line 312 of file complex_fem.hpp.
void mfem::SesquilinearForm::Finalize | ( | int | skip_zeros = 1 | ) |
Finalizes the matrix initialization.
Definition at line 385 of file complex_fem.cpp.
void mfem::SesquilinearForm::FormLinearSystem | ( | const Array< int > & | ess_tdof_list, |
Vector & | x, | ||
Vector & | b, | ||
OperatorHandle & | A, | ||
Vector & | X, | ||
Vector & | B, | ||
int | copy_interior = 0 ) |
Definition at line 400 of file complex_fem.cpp.
void mfem::SesquilinearForm::FormSystemMatrix | ( | const Array< int > & | ess_tdof_list, |
OperatorHandle & | A ) |
Definition at line 555 of file complex_fem.cpp.
|
inline |
Definition at line 239 of file complex_fem.hpp.
|
inline |
Returns the diagonal policy of the sesquilinear form.
Definition at line 332 of file complex_fem.hpp.
|
inline |
Definition at line 260 of file complex_fem.hpp.
|
inline |
Definition at line 262 of file complex_fem.hpp.
|
inline |
Definition at line 259 of file complex_fem.hpp.
|
inline |
Definition at line 261 of file complex_fem.hpp.
|
virtual |
Call this method after solving a linear system constructed using the FormLinearSystem method to recover the solution as a ParGridFunction-size vector in x. Use the same arguments as in the FormLinearSystem call.
Definition at line 616 of file complex_fem.cpp.
|
inline |
Set the desired assembly level.
Valid choices are:
This method must be called before assembly.
Definition at line 253 of file complex_fem.hpp.
|
inline |
Definition at line 240 of file complex_fem.hpp.
void mfem::SesquilinearForm::SetDiagonalPolicy | ( | mfem::Matrix::DiagonalPolicy | dpolicy | ) |
Sets diagonal policy used upon construction of the linear system.
Definition at line 311 of file complex_fem.cpp.
|
virtual |
Definition at line 648 of file complex_fem.cpp.