MFEM
v4.2.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 . More... | |
ComplexOperator::Convention | GetConvention () const |
void | SetConvention (const ComplexOperator::Convention &convention) |
void | SetAssemblyLevel (AssemblyLevel assembly_level) |
Set the desired assembly level. More... | |
BilinearForm & | real () |
BilinearForm & | imag () |
const BilinearForm & | real () const |
const BilinearForm & | imag () const |
void | AddDomainIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new Domain Integrator. More... | |
void | AddBoundaryIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new Boundary Integrator. More... | |
void | AddBoundaryIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag, Array< int > &bdr_marker) |
Adds new Boundary Integrator, restricted to specific boundary attributes. More... | |
void | AddInteriorFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new interior Face Integrator. Assumes ownership of bfi. More... | |
void | AddBdrFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag) |
Adds new boundary Face Integrator. Assumes ownership of bfi. More... | |
void | AddBdrFaceIntegrator (BilinearFormIntegrator *bfi_real, BilinearFormIntegrator *bfi_imag, Array< int > &bdr_marker) |
Adds new boundary Face Integrator, restricted to specific boundary attributes. More... | |
void | Assemble (int skip_zeros=1) |
Assemble the local matrix. More... | |
void | Finalize (int skip_zeros=1) |
Finalizes the matrix initialization. More... | |
ComplexSparseMatrix * | AssembleComplexSparseMatrix () |
Returns the matrix assembled on the true dofs, i.e. P^t A P. More... | |
FiniteElementSpace * | FESpace () const |
Return the parallel FE space associated with the ParBilinearForm. More... | |
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. More... | |
Matrix::DiagonalPolicy | GetDiagonalPolicy () const |
Returns the diagonal policy of the sesquilinear form. More... | |
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 201 of file complex_fem.hpp.
mfem::SesquilinearForm::SesquilinearForm | ( | FiniteElementSpace * | fes, |
ComplexOperator::Convention | convention = ComplexOperator::HERMITIAN |
||
) |
Definition at line 287 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 294 of file complex_fem.cpp.
|
virtual |
Definition at line 307 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 345 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 352 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddBoundaryIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag | ||
) |
Adds new Boundary Integrator.
Definition at line 321 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 329 of file complex_fem.cpp.
void mfem::SesquilinearForm::AddDomainIntegrator | ( | BilinearFormIntegrator * | bfi_real, |
BilinearFormIntegrator * | bfi_imag | ||
) |
Adds new Domain Integrator.
Definition at line 313 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 338 of file complex_fem.cpp.
void mfem::SesquilinearForm::Assemble | ( | int | skip_zeros = 1 | ) |
Assemble the local matrix.
Definition at line 361 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 375 of file complex_fem.cpp.
|
inline |
Return the parallel FE space associated with the ParBilinearForm.
Definition at line 302 of file complex_fem.hpp.
void mfem::SesquilinearForm::Finalize | ( | int | skip_zeros = 1 | ) |
Finalizes the matrix initialization.
Definition at line 368 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 383 of file complex_fem.cpp.
void mfem::SesquilinearForm::FormSystemMatrix | ( | const Array< int > & | ess_tdof_list, |
OperatorHandle & | A | ||
) |
Definition at line 538 of file complex_fem.cpp.
|
inline |
Definition at line 234 of file complex_fem.hpp.
|
inline |
Returns the diagonal policy of the sesquilinear form.
Definition at line 322 of file complex_fem.hpp.
|
inline |
Definition at line 255 of file complex_fem.hpp.
|
inline |
Definition at line 257 of file complex_fem.hpp.
|
inline |
Definition at line 254 of file complex_fem.hpp.
|
inline |
Definition at line 256 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 599 of file complex_fem.cpp.
|
inline |
Set the desired assembly level.
Valid choices are:
This method must be called before assembly.
Definition at line 248 of file complex_fem.hpp.
|
inline |
Definition at line 235 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 302 of file complex_fem.cpp.
|
virtual |
Definition at line 631 of file complex_fem.cpp.