![]() |
MFEM v4.9.0
Finite element discretization library
|
Class for grid function - Vector with associated FE space. More...
#include <gridfunc.hpp>
Public Types | |
| enum | AvgType { ARITHMETIC , HARMONIC } |
Public Member Functions | |
| GridFunction () | |
| GridFunction (const GridFunction &orig) | |
| Copy constructor. The internal true-dof vector t_vec is not copied. | |
| GridFunction (FiniteElementSpace *f) | |
| Construct a GridFunction associated with the FiniteElementSpace *f. | |
| GridFunction (FiniteElementSpace *f, real_t *data) | |
| Construct a GridFunction using previously allocated array data. | |
| GridFunction (FiniteElementSpace *f, Vector &base, int base_offset=0) | |
| Construct a GridFunction using previously allocated Vector base starting at the given offset, base_offset. | |
| GridFunction (Mesh *m, std::istream &input) | |
| Construct a GridFunction on the given Mesh, using the data from input. | |
| GridFunction (Mesh *m, GridFunction *gf_array[], int num_pieces) | |
| GridFunction & | operator= (const GridFunction &rhs) |
| Copy assignment. Only the data of the base class Vector is copied. | |
| void | MakeOwner (FiniteElementCollection *fec_) |
| Make the GridFunction the owner of fec_owned and fes. | |
| FiniteElementCollection * | OwnFEC () |
| int | VectorDim () const |
| Shortcut for calling FiniteElementSpace::GetVectorDim() on the underlying fes. | |
| int | CurlDim () const |
| Shortcut for calling FiniteElementSpace::GetCurlDim() on the underlying fes. | |
| const Vector & | GetTrueVector () const |
| Read only access to the (optional) internal true-dof Vector. | |
| Vector & | GetTrueVector () |
| Read and write access to the (optional) internal true-dof Vector. | |
| void | GetTrueDofs (Vector &tv) const |
| Extract the true-dofs from the GridFunction. | |
| void | SetTrueVector () |
| Shortcut for calling GetTrueDofs() with GetTrueVector() as argument. | |
| virtual void | SetFromTrueDofs (const Vector &tv) |
| Set the GridFunction from the given true-dof vector. | |
| void | SetFromTrueVector () |
| Shortcut for calling SetFromTrueDofs() with GetTrueVector() as argument. | |
| void | GetNodalValues (int i, Array< real_t > &nval, int vdim=1) const |
| Returns the values at the vertices of element i for the 1-based dimension vdim. | |
| void | GetLaplacians (int i, const IntegrationRule &ir, Vector &laps, int vdim=1) const |
| void | GetLaplacians (int i, const IntegrationRule &ir, Vector &laps, DenseMatrix &tr, int vdim=1) const |
| void | GetHessians (int i, const IntegrationRule &ir, DenseMatrix &hess, int vdim=1) const |
| void | GetHessians (int i, const IntegrationRule &ir, DenseMatrix &hess, DenseMatrix &tr, int vdim=1) const |
| void | GetValuesFrom (const GridFunction &orig_func) |
| void | GetBdrValuesFrom (const GridFunction &orig_func) |
| void | GetVectorFieldValues (int i, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix &tr, int comp=0) const |
| void | ReorderByNodes () |
| For a vector grid function, makes sure that the ordering is byNODES. | |
| void | GetNodalValues (Vector &nval, int vdim=1) const |
| Returns the values as a vector at mesh vertices, for the 1-based dimension vdim. | |
| void | GetVectorFieldNodalValues (Vector &val, int comp) const |
| void | ProjectVectorFieldOn (GridFunction &vec_field, int comp=0) |
| void | GetDerivative (int comp, int der_comp, GridFunction &der) const |
| Compute a certain derivative of a function's component. Derivatives of the function are computed at the DOF locations of der, and averaged over overlapping DOFs. Thus this function projects the derivative to the FiniteElementSpace of der. | |
| real_t | GetDivergence (ElementTransformation &tr) const |
| void | GetCurl (ElementTransformation &tr, Vector &curl) const |
| void | GetGradient (ElementTransformation &tr, Vector &grad) const |
| Gradient of a scalar function at a quadrature point. | |
| void | GetGradients (ElementTransformation &tr, const IntegrationRule &ir, DenseMatrix &grad) const |
| Extension of GetGradient(...) for a collection of IntegrationPoints. | |
| void | GetGradients (const int elem, const IntegrationRule &ir, DenseMatrix &grad) const |
| Extension of GetGradient(...) for a collection of IntegrationPoints. | |
| void | GetVectorGradient (ElementTransformation &tr, DenseMatrix &grad) const |
| Compute the vector gradient with respect to the physical element variable. | |
| void | GetVectorGradientHat (ElementTransformation &T, DenseMatrix &gh) const |
| Compute the vector gradient with respect to the reference element variable. | |
| void | GetGradients (const IntegrationRule &ir, Vector &grad, QVectorLayout ql=QVectorLayout::byNODES, MemoryType d_mt=MemoryType::DEFAULT) const |
| Evaluate the gradients of the GridFunction at the given quadrature points, ir, in all mesh elements. | |
| void | GetElementAverages (GridFunction &avgs) const |
| virtual void | GetElementDofValues (int el, Vector &dof_vals) const |
| void | ImposeBounds (int i, const Vector &weights, const Vector &lo_, const Vector &hi_) |
| void | ImposeBounds (int i, const Vector &weights, real_t min_=0.0, real_t max_=infinity()) |
| void | RestrictConforming () |
| void | ProjectGridFunction (const GridFunction &src) |
| Project the src GridFunction to this GridFunction, both of which must be on the same mesh. | |
| virtual void | ProjectCoefficient (Coefficient &coeff) |
| Project coeff Coefficient to this GridFunction. The projection computation depends on the choice of the FiniteElementSpace fes. Note that this is usually interpolation at the degrees of freedom in each element (not L2 projection). For NURBS spaces these degrees of freedom are not available and L2 projection is resorted to as fallback. | |
| void | ProjectCoefficient (Coefficient &coeff, Array< int > &dofs, int vd=0) |
| Project coeff Coefficient to this GridFunction, using one element for each degree of freedom in dofs and nodal interpolation on that element. | |
| void | ProjectCoefficient (VectorCoefficient &vcoeff) |
| Project vcoeff VectorCoefficient to this GridFunction. The projection computation depends on the choice of the FiniteElementSpace fes. Note that this is usually interpolation at the degrees of freedom in each element (not L2 projection). For NURBS spaces these degrees of freedom are not available and L2 projection is resorted to as fallback. | |
| void | ProjectCoefficient (VectorCoefficient &vcoeff, Array< int > &dofs) |
| Project vcoeff VectorCoefficient to this GridFunction, using one element for each degree of freedom in dofs and nodal interpolation on that element. | |
| void | ProjectCoefficient (VectorCoefficient &vcoeff, int attribute) |
| Project vcoeff VectorCoefficient to this GridFunction, only projecting onto elements with the given attribute. | |
| void | ProjectCoefficient (Coefficient *coeff[]) |
| Analogous to the version with argument vcoeff VectorCoefficient but using an array of scalar coefficients for each component. | |
| virtual void | ProjectDiscCoefficient (VectorCoefficient &coeff) |
| Project a discontinuous vector coefficient as a grid function on a continuous finite element space. The values in shared dofs are determined from the element with maximal attribute. | |
| virtual void | ProjectDiscCoefficient (Coefficient &coeff, AvgType type) |
| Projects a discontinuous coefficient so that the values in shared vdofs are computed by taking an average of the possible values. | |
| virtual void | ProjectDiscCoefficient (VectorCoefficient &coeff, AvgType type) |
| Projects a discontinuous vector coefficient so that the values in shared vdofs are computed by taking an average of the possible values. | |
| std::unique_ptr< GridFunction > | ProlongateToMaxOrder () const |
| Return a GridFunction with the values of this, prolongated to the maximum order of all elements in the mesh. | |
| virtual void | CountElementsPerVDof (Array< int > &elem_per_vdof) const |
| For each vdof, counts how many elements contain the vdof, as containment is determined by FiniteElementSpace::GetElementVDofs(). | |
| void | ProjectBdrCoefficient (Coefficient &coeff, const Array< int > &attr) |
| Project a Coefficient on the GridFunction, modifying only DOFs on the boundary associated with the boundary attributes marked in the attr array. | |
| virtual void | ProjectBdrCoefficient (VectorCoefficient &vcoeff, const Array< int > &attr) |
| Project a VectorCoefficient on the GridFunction, modifying only DOFs on the boundary associated with the boundary attributes marked in the attr array. | |
| virtual void | ProjectBdrCoefficient (Coefficient *coeff[], const Array< int > &attr) |
| Project a set of Coefficients on the components of the GridFunction, modifying only DOFs on the boundary associated with the boundary attributed marked in the attr array. | |
| void | ProjectBdrCoefficientNormal (VectorCoefficient &vcoeff, const Array< int > &bdr_attr) |
| virtual void | ProjectBdrCoefficientTangent (VectorCoefficient &vcoeff, const Array< int > &bdr_attr) |
| Project the tangential components of the given VectorCoefficient on the boundary. Only boundary attributes that are marked in bdr_attr are projected. Assumes ND-type VectorFE GridFunction. | |
| virtual real_t | ComputeL2Error (Coefficient *exsol[], const IntegrationRule *irs[]=NULL, const Array< int > *elems=NULL) const |
| Returns ||exsol - u_h||_L2 for scalar or vector H1 or L2 elements. | |
| virtual real_t | ComputeElementGradError (int ielem, VectorCoefficient *exgrad, const IntegrationRule *irs[]=NULL) const |
| Returns ||grad u_ex - grad u_h||_L2 in element ielem for H1 or L2 elements. | |
| virtual real_t | ComputeL2Error (Coefficient &exsol, const IntegrationRule *irs[]=NULL, const Array< int > *elems=NULL) const |
| Returns ||u_ex - u_h||_L2 for H1 or L2 elements. | |
| virtual real_t | ComputeL2Error (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL, const Array< int > *elems=NULL) const |
| Returns ||u_ex - u_h||_L2 for vector fields. | |
| virtual real_t | ComputeGradError (VectorCoefficient *exgrad, const IntegrationRule *irs[]=NULL) const |
| Returns ||grad u_ex - grad u_h||_L2 for H1 or L2 elements. | |
| virtual real_t | ComputeCurlError (VectorCoefficient *excurl, const IntegrationRule *irs[]=NULL) const |
| Returns ||curl u_ex - curl u_h||_L2 for ND elements. | |
| virtual real_t | ComputeDivError (Coefficient *exdiv, const IntegrationRule *irs[]=NULL) const |
| Returns ||div u_ex - div u_h||_L2 for RT elements. | |
| virtual real_t | ComputeDGFaceJumpError (Coefficient *exsol, Coefficient *ell_coeff, class JumpScaling jump_scaling, const IntegrationRule *irs[]=NULL) const |
| Returns the Face Jumps error for L2 elements. | |
| MFEM_DEPRECATED real_t | ComputeDGFaceJumpError (Coefficient *exsol, Coefficient *ell_coeff, real_t Nu, const IntegrationRule *irs[]=NULL) const |
| Returns the Face Jumps error for L2 elements, with 1/h scaling. | |
| virtual real_t | ComputeH1Error (Coefficient *exsol, VectorCoefficient *exgrad, Coefficient *ell_coef, real_t Nu, int norm_type) const |
| virtual real_t | ComputeH1Error (Coefficient *exsol, VectorCoefficient *exgrad, const IntegrationRule *irs[]=NULL) const |
| Returns the error measured in H1-norm for H1 or L2 elements. | |
| virtual real_t | ComputeHDivError (VectorCoefficient *exsol, Coefficient *exdiv, const IntegrationRule *irs[]=NULL) const |
| Returns the error measured in H(div)-norm for RT elements. | |
| virtual real_t | ComputeHCurlError (VectorCoefficient *exsol, VectorCoefficient *excurl, const IntegrationRule *irs[]=NULL) const |
| Returns the error measured in H(curl)-norm for ND elements. | |
| virtual real_t | ComputeMaxError (Coefficient &exsol, const IntegrationRule *irs[]=NULL) const |
| Returns Max|u_ex - u_h| error for H1 or L2 elements. | |
| virtual real_t | ComputeMaxError (Coefficient *exsol[], const IntegrationRule *irs[]=NULL) const |
| Returns Max|u_ex - u_h| error for scalar or vector fields. | |
| virtual real_t | ComputeMaxError (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL) const |
| Returns Max|u_ex - u_h| error for vector fields. | |
| virtual real_t | ComputeL1Error (Coefficient &exsol, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L1 for H1 or L2 elements. | |
| virtual MFEM_DEPRECATED real_t | ComputeL1Error (Coefficient *exsol[], const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L1 for H1 or L2 elements. | |
| virtual real_t | ComputeW11Error (Coefficient *exsol, VectorCoefficient *exgrad, int norm_type, const Array< int > *elems=NULL, const IntegrationRule *irs[]=NULL) const |
| Returns \(W^1_1\) norm (or portions thereof) for H1 or L2 elements. | |
| virtual real_t | ComputeL1Error (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L1 for vector fields. | |
| virtual real_t | ComputeLpError (const real_t p, Coefficient &exsol, Coefficient *weight=NULL, const IntegrationRule *irs[]=NULL, const Array< int > *elems=NULL) const |
| Returns ||u_ex - u_h||_Lp for H1 or L2 elements. | |
| virtual void | ComputeElementLpErrors (const real_t p, Coefficient &exsol, Vector &error, Coefficient *weight=NULL, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_Lp elementwise for H1 or L2 elements. | |
| virtual void | ComputeElementL1Errors (Coefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L1 elementwise for H1 or L2 elements. | |
| virtual void | ComputeElementL2Errors (Coefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L2 elementwise for H1 or L2 elements. | |
| virtual void | ComputeElementMaxErrors (Coefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns Max|u_ex - u_h| elementwise for H1 or L2 elements. | |
| virtual real_t | ComputeLpError (const real_t p, VectorCoefficient &exsol, Coefficient *weight=NULL, VectorCoefficient *v_weight=NULL, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_Lp for vector fields. | |
| virtual void | ComputeElementLpErrors (const real_t p, VectorCoefficient &exsol, Vector &error, Coefficient *weight=NULL, VectorCoefficient *v_weight=NULL, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_Lp elementwise for vector fields. | |
| virtual void | ComputeElementL1Errors (VectorCoefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L1 elementwise for vector fields. | |
| virtual void | ComputeElementL2Errors (VectorCoefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns ||u_ex - u_h||_L2 elementwise for vector fields. | |
| virtual void | ComputeElementMaxErrors (VectorCoefficient &exsol, Vector &error, const IntegrationRule *irs[]=NULL) const |
| Returns Max|u_ex - u_h| elementwise for vector fields. | |
| virtual void | ComputeFlux (BilinearFormIntegrator &blfi, GridFunction &flux, bool wcoef=true, int subdomain=-1) |
| GridFunction & | operator= (real_t value) |
| Redefine '=' for GridFunction = constant. | |
| GridFunction & | operator= (const Vector &v) |
| Copy the data from v. | |
| virtual void | Update () |
| Transform by the Space UpdateMatrix (e.g., on Mesh change). | |
| long | GetSequence () const |
| FiniteElementSpace * | FESpace () |
| const FiniteElementSpace * | FESpace () const |
| virtual void | SetSpace (FiniteElementSpace *f) |
| Associate a new FiniteElementSpace with the GridFunction. | |
| virtual void | MakeRef (FiniteElementSpace *f, real_t *v) |
| Make the GridFunction reference external data on a new FiniteElementSpace. | |
| virtual void | MakeRef (FiniteElementSpace *f, Vector &v, int v_offset) |
| Make the GridFunction reference external data on a new FiniteElementSpace. | |
| void | MakeTRef (FiniteElementSpace *f, real_t *tv) |
| Associate a new FiniteElementSpace and new true-dof data with the GridFunction. | |
| void | MakeTRef (FiniteElementSpace *f, Vector &tv, int tv_offset) |
| Associate a new FiniteElementSpace and new true-dof data with the GridFunction. | |
| virtual void | Save (std::ostream &out) const |
| Save the GridFunction to an output stream. | |
| virtual void | Save (const char *fname, int precision=16) const |
| virtual void | Save (adios2stream &out, const std::string &variable_name, const adios2stream::data_type type=adios2stream::data_type::point_data) const |
| Save the GridFunction to a binary output stream using adios2 bp format. | |
| void | SaveVTK (std::ostream &out, const std::string &field_name, int ref) |
| Write the GridFunction in VTK format. Note that Mesh::PrintVTK must be called first. The parameter ref > 0 must match the one used in Mesh::PrintVTK. | |
| void | SaveVTKHDF (const std::string &fname, const std::string &name="u", bool high_order=true, int ref=-1) |
| Save the GridFunction in VTKHDF format. | |
| void | SaveSTL (std::ostream &out, int TimesToRefine=1) |
| Write the GridFunction in STL format. Note that the mesh dimension must be 2 and that quad elements will be broken into two triangles. | |
| virtual | ~GridFunction () |
| Destroys grid function. | |
| void | MakeRef (Vector &base, int offset, int size) |
| Reset the Vector to be a reference to a sub-vector of base. | |
| void | MakeRef (Vector &base, int offset) |
| Reset the Vector to be a reference to a sub-vector of base without changing its current size. | |
Element index Get Value Methods | |
These methods take an element index and return the interpolated value of the field at a given reference point within the element.
| |
| virtual real_t | GetValue (int i, const IntegrationPoint &ip, int vdim=1) const |
| virtual void | GetVectorValue (int i, const IntegrationPoint &ip, Vector &val) const |
Element Index Get Values Methods | |
These are convenience methods for repeatedly calling GetValue for multiple points within a given element. The GetValues methods are optimized and should perform better than repeatedly calling GetValue. The GetVectorValues method simply calls GetVectorValue repeatedly.
| |
| void | GetValues (int i, const IntegrationRule &ir, Vector &vals, int vdim=1) const |
| void | GetValues (int i, const IntegrationRule &ir, Vector &vals, DenseMatrix &tr, int vdim=1) const |
| void | GetVectorValues (int i, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix &tr) const |
ElementTransformation Get Value Methods | |
These member functions are designed for use within GridFunctionCoefficient objects. These can be used with ElementTransformation objects coming from either Mesh::GetElementTransformation() or Mesh::GetBdrElementTransformation().
| |
| virtual real_t | GetValue (ElementTransformation &T, const IntegrationPoint &ip, int comp=0, Vector *tr=NULL) const |
| virtual void | GetVectorValue (ElementTransformation &T, const IntegrationPoint &ip, Vector &val, Vector *tr=NULL) const |
ElementTransformation Get Values Methods | |
These are convenience methods for repeatedly calling GetValue for multiple points within a given element. They work by calling either the ElementTransformation or FaceElementTransformations versions described above. Consequently, these methods should not be expected to run faster than calling the above methods in an external loop.
| |
| void | GetValues (ElementTransformation &T, const IntegrationRule &ir, Vector &vals, int comp=0, DenseMatrix *tr=NULL) const |
| void | GetVectorValues (ElementTransformation &T, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix *tr=NULL) const |
Face Index Get Values Methods | |
These methods are designed to work with Discontinuous Galerkin basis functions. They compute field values on the interface between elements, or on boundary elements, by interpolating the field in a neighboring element. The side argument indices which neighboring element should be used: 0, 1, or 2 (automatically chosen).
| |
| int | GetFaceValues (int i, int side, const IntegrationRule &ir, Vector &vals, DenseMatrix &tr, int vdim=1) const |
| int | GetFaceVectorValues (int i, int side, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix &tr) const |
Methods to compute bounds on the grid function | |
See bounds.hpp for PLBound that constructs piecewise linear bounds for a given set of bases. These piecewise bounds can be used to compute bounds on a grid function. Currently tensor-product elements are supported with Lagrange interpolants on Gauss Legendre nodes and Gauss Lobatto Legendre nodes, and Bernstein bases. | |
| virtual PLBound | GetBounds (Vector &lower, Vector &upper, const int ref_factor=1, const int vdim=-1) const |
| PLBound | GetElementBounds (Vector &lower, Vector &upper, const int ref_factor=1, const int vdim=-1) const |
| void | GetElementBoundsAtControlPoints (const int elem, const PLBound &plb, Vector &lower, Vector &upper, const int vdim=-1) const |
| void | GetElementBounds (const int elem, const PLBound &plb, Vector &lower, Vector &upper, const int vdim=-1) const |
| void | GetElementBounds (const PLBound &plb, Vector &lower, Vector &upper, const int vdim=-1) const |
Public Member Functions inherited from mfem::Vector | |
| Vector () | |
| Vector (const Vector &) | |
| Copy constructor. Allocates a new data array and copies the data. | |
| Vector (Vector &&v) | |
| Move constructor. "Steals" data from its argument. | |
| Vector (int s) | |
| Creates vector of size s. | |
| Vector (real_t *data_, int size_) | |
| Creates a vector referencing an array of doubles, owned by someone else. | |
| Vector (Vector &base, int base_offset, int size_) | |
| Create a Vector referencing a sub-vector of the Vector base starting at the given offset, base_offset, and size size_. | |
| Vector (int size_, MemoryType mt) | |
| Create a Vector of size size_ using MemoryType mt. | |
| Vector (int size_, MemoryType h_mt, MemoryType d_mt) | |
| Create a Vector of size size_ using host MemoryType h_mt and device MemoryType d_mt. | |
| template<typename CT , int N> | |
| Vector (const CT(&values)[N]) | |
| Create a vector from a statically sized C-style array of convertible type. | |
| template<typename CT , typename std::enable_if< std::is_convertible< CT, real_t >::value, bool >::type = true> | |
| Vector (std::initializer_list< CT > values) | |
| Create a vector using a braced initializer list. | |
| virtual void | UseDevice (bool use_dev) const |
| Enable execution of Vector operations using the mfem::Device. | |
| virtual bool | UseDevice () const |
| Return the device flag of the Memory object used by the Vector. | |
| void | Load (std::istream **in, int np, int *dim) |
| Reads a vector from multiple files. | |
| void | Load (std::istream &in, int Size) |
| Load a vector from an input stream. | |
| void | Load (std::istream &in) |
| Load a vector from an input stream, reading the size from the stream. | |
| void | SetSize (int s) |
| Resize the vector to size s. | |
| void | SetSize (int s, MemoryType mt) |
| Resize the vector to size s using MemoryType mt. | |
| void | SetSize (int s, const Vector &v) |
| Resize the vector to size s using the MemoryType of v. | |
| void | Reserve (int res) |
| Update Capacity() to res (if less than current), keeping existing entries. | |
| void | DeleteAt (const Array< int > &indices) |
| void | SetData (real_t *d) |
| void | SetDataAndSize (real_t *d, int s) |
| Set the Vector data and size. | |
| void | NewDataAndSize (real_t *d, int s) |
| Set the Vector data and size, deleting the old data, if owned. | |
| void | NewMemoryAndSize (const Memory< real_t > &mem, int s, bool own_mem) |
| Reset the Vector to use the given external Memory mem and size s. | |
| void | MakeRef (Vector &base, int offset, int size) |
| Reset the Vector to be a reference to a sub-vector of base. | |
| void | MakeRef (Vector &base, int offset) |
| Reset the Vector to be a reference to a sub-vector of base without changing its current size. | |
| void | MakeDataOwner () const |
| Set the Vector data (host pointer) ownership flag. | |
| void | Destroy () |
| Destroy a vector. | |
| void | DeleteDevice (bool copy_to_host=true) |
| Delete the device pointer, if owned. If copy_to_host is true and the data is valid only on device, move it to host before deleting. Invalidates the device memory. | |
| int | Size () const |
| Returns the size of the vector. | |
| int | Capacity () const |
| Return the size of the currently allocated data array. | |
| real_t * | GetData () const |
| Return a pointer to the beginning of the Vector data. | |
| MFEM_DEPRECATED | operator real_t * () |
Conversion to double *. Deprecated. | |
| MFEM_DEPRECATED | operator const real_t * () const |
Conversion to const double *. Deprecated. | |
| real_t * | begin () |
| STL-like begin. | |
| real_t * | end () |
| STL-like end. | |
| const real_t * | begin () const |
| STL-like begin (const version). | |
| const real_t * | end () const |
| STL-like end (const version). | |
| Memory< real_t > & | GetMemory () |
| Return a reference to the Memory object used by the Vector. | |
| const Memory< real_t > & | GetMemory () const |
| Return a reference to the Memory object used by the Vector, const version. | |
| void | SyncMemory (const Vector &v) const |
| Update the memory location of the vector to match v. | |
| void | SyncAliasMemory (const Vector &v) const |
| Update the alias memory location of the vector to match v. | |
| bool | OwnsData () const |
| Read the Vector data (host pointer) ownership flag. | |
| void | StealData (real_t **p) |
| Changes the ownership of the data; after the call the Vector is empty. | |
| real_t * | StealData () |
| Changes the ownership of the data; after the call the Vector is empty. | |
| real_t & | Elem (int i) |
| Access Vector entries. Index i = 0 .. size-1. | |
| const real_t & | Elem (int i) const |
| Read only access to Vector entries. Index i = 0 .. size-1. | |
| real_t & | operator() (int i) |
| Access Vector entries using () for 0-based indexing. | |
| const real_t & | operator() (int i) const |
| Read only access to Vector entries using () for 0-based indexing. | |
| real_t & | operator[] (int i) |
| Access Vector entries using [] for 0-based indexing. | |
| const real_t & | operator[] (int i) const |
| Read only access to Vector entries using [] for 0-based indexing. | |
| real_t | operator* (const real_t *v) const |
| real_t | operator* (const Vector &v) const |
| Return the inner-product. | |
| Vector & | operator= (const real_t *v) |
| Copy Size() entries from v. | |
| Vector & | operator= (const Vector &v) |
| Copy assignment. | |
| Vector & | operator= (Vector &&v) |
| Move assignment. | |
| Vector & | operator= (real_t value) |
| Redefine '=' for vector = constant. | |
| Vector & | operator*= (real_t c) |
| Vector & | operator*= (const Vector &v) |
| Component-wise scaling: (*this)(i) *= v(i) | |
| Vector & | operator/= (real_t c) |
| Vector & | operator/= (const Vector &v) |
| Component-wise division: (*this)(i) /= v(i) | |
| Vector & | operator-= (real_t c) |
| Vector & | operator-= (const Vector &v) |
| Vector & | operator+= (real_t c) |
| Vector & | operator+= (const Vector &v) |
| Vector & | Add (const real_t a, const Vector &Va) |
| (*this) += a * Va | |
| Vector & | Set (const real_t a, const Vector &x) |
| (*this) = a * x | |
| void | SetVector (const Vector &v, int offset) |
| (*this)[i + offset] = v[i] | |
| void | AddSubVector (const Vector &v, int offset) |
| (*this)[i + offset] += v[i] | |
| void | Neg () |
| (*this) = -(*this) | |
| void | Reciprocal () |
| (*this)(i) = 1.0 / (*this)(i) | |
| void | Abs () |
| (*this)(i) = abs((*this)(i)) | |
| void | Pow (const real_t p) |
| (*this)(i) = pow((*this)(i), p) | |
| void | Swap (Vector &other) |
| Swap the contents of two Vectors. | |
| void | cross3D (const Vector &vin, Vector &vout) const |
| void | median (const Vector &lo, const Vector &hi) |
| v = median(v,lo,hi) entrywise. Implementation assumes lo <= hi. | |
| void | GetSubVector (const Array< int > &dofs, Vector &elemvect) const |
| Extract entries listed in dofs to the output Vector elemvect. | |
| void | GetSubVector (const Array< int > &dofs, real_t *elem_data) const |
| Extract entries listed in dofs to the output array elem_data. | |
| void | SetSubVector (const Array< int > &dofs, const real_t value) |
| Set the entries listed in dofs to the given value. | |
| void | SetSubVectorHost (const Array< int > &dofs, const real_t value) |
| Set the entries listed in dofs to the given value (always on host). | |
| void | SetSubVector (const Array< int > &dofs, const Vector &elemvect) |
| Set the entries listed in dofs to the values given in the elemvect Vector. Negative dof values cause the -dof-1 position in this Vector to receive the -val from elemvect. | |
| void | SetSubVector (const Array< int > &dofs, real_t *elem_data) |
| Set the entries listed in dofs to the values given the , elem_data array. Negative dof values cause the -dof-1 position in this Vector to receive the -val from elem_data. | |
| void | AddElementVector (const Array< int > &dofs, const Vector &elemvect) |
| Add elements of the elemvect Vector to the entries listed in dofs. Negative dof values cause the -dof-1 position in this Vector to add the -val from elemvect. | |
| void | AddElementVector (const Array< int > &dofs, real_t *elem_data) |
| Add elements of the elem_data array to the entries listed in dofs. Negative dof values cause the -dof-1 position in this Vector to add the -val from elem_data. | |
| void | AddElementVector (const Array< int > &dofs, const real_t a, const Vector &elemvect) |
| Add times the elements of the elemvect Vector to the entries listed in dofs. Negative dof values cause the -dof-1 position in this Vector to add the -a*val from elemvect. | |
| void | SetSubVectorComplement (const Array< int > &dofs, const real_t val) |
| Set all vector entries NOT in the dofs Array to the given val. | |
| void | Print (std::ostream &out=mfem::out, int width=8) const |
| Prints vector to stream out. | |
| void | Print (adios2stream &out, const std::string &variable_name) const |
| void | Print_HYPRE (std::ostream &out) const |
| Prints vector to stream out in HYPRE_Vector format. | |
| void | PrintMathematica (std::ostream &out=mfem::out) const |
| Prints vector as a List for importing into Mathematica. | |
| void | PrintHash (std::ostream &out) const |
| Print the Vector size and hash of its data. | |
| void | Randomize (int seed=0) |
| Set random values in the vector. | |
| real_t | Norml2 () const |
| Returns the l2 norm of the vector. | |
| real_t | Normlinf () const |
| Returns the l_infinity norm of the vector. | |
| real_t | Norml1 () const |
| Returns the l_1 norm of the vector. | |
| real_t | Normlp (real_t p) const |
| Returns the l_p norm of the vector. | |
| real_t | Max () const |
| Returns the maximal element of the vector. | |
| real_t | Min () const |
| Returns the minimal element of the vector. | |
| real_t | Sum () const |
| Return the sum of the vector entries. | |
| real_t | DistanceSquaredTo (const real_t *p) const |
| Compute the square of the Euclidean distance to another vector. | |
| real_t | DistanceSquaredTo (const Vector &p) const |
| Compute the square of the Euclidean distance to another vector. | |
| real_t | DistanceTo (const real_t *p) const |
| Compute the Euclidean distance to another vector. | |
| real_t | DistanceTo (const Vector &p) const |
| Compute the Euclidean distance to another vector. | |
| int | CheckFinite () const |
| Count the number of entries in the Vector for which isfinite is false, i.e. the entry is a NaN or +/-Inf. | |
| virtual | ~Vector () |
| Destroys vector. | |
| virtual const real_t * | Read (bool on_dev=true) const |
| Shortcut for mfem::Read(vec.GetMemory(), vec.Size(), on_dev). | |
| virtual const real_t * | HostRead () const |
| Shortcut for mfem::Read(vec.GetMemory(), vec.Size(), false). | |
| virtual real_t * | Write (bool on_dev=true) |
| Shortcut for mfem::Write(vec.GetMemory(), vec.Size(), on_dev). | |
| virtual real_t * | HostWrite () |
| Shortcut for mfem::Write(vec.GetMemory(), vec.Size(), false). | |
| virtual real_t * | ReadWrite (bool on_dev=true) |
| Shortcut for mfem::ReadWrite(vec.GetMemory(), vec.Size(), on_dev). | |
| virtual real_t * | HostReadWrite () |
| Shortcut for mfem::ReadWrite(vec.GetMemory(), vec.Size(), false). | |
Protected Member Functions | |
| void | SaveSTLTri (std::ostream &out, real_t p1[], real_t p2[], real_t p3[]) |
| void | ProjectDeltaCoefficient (DeltaCoefficient &delta_coeff, real_t &integral) |
| void | SumFluxAndCount (BilinearFormIntegrator &blfi, GridFunction &flux, Array< int > &counts, bool wcoef, int subdomain) |
| void | ProjectDiscCoefficient (VectorCoefficient &coeff, Array< int > &dof_attr) |
| void | LegacyNCReorder () |
| Loading helper. | |
| void | Destroy () |
| void | AccumulateAndCountZones (Coefficient &coeff, AvgType type, Array< int > &zones_per_vdof) |
| Accumulates (depending on type) the values of coeff at all shared vdofs and counts in how many zones each vdof appears. | |
| void | AccumulateAndCountZones (VectorCoefficient &vcoeff, AvgType type, Array< int > &zones_per_vdof) |
| Accumulates (depending on type) the values of vcoeff at all shared vdofs and counts in how many zones each vdof appears. | |
| void | AccumulateAndCountDerivativeValues (int comp, int der_comp, GridFunction &der, Array< int > &zones_per_dof) const |
| Used for the serial and parallel implementations of the GetDerivative() method; see its documentation. | |
| void | AccumulateAndCountBdrValues (Coefficient *coeff[], VectorCoefficient *vcoeff, const Array< int > &attr, Array< int > &values_counter) |
| void | AccumulateAndCountBdrTangentValues (VectorCoefficient &vcoeff, const Array< int > &bdr_attr, Array< int > &values_counter) |
| void | ComputeMeans (AvgType type, Array< int > &zones_per_vdof) |
| void | UpdatePRef () |
| P-refinement version of Update(). | |
Protected Attributes | |
| FiniteElementSpace * | fes |
| FE space on which the grid function lives. Owned if fec_owned is not NULL. | |
| FiniteElementCollection * | fec_owned |
| Used when the grid function is read from a file. It can also be set explicitly, see MakeOwner(). | |
| long | fes_sequence |
| Vector | t_vec |
Protected Attributes inherited from mfem::Vector | |
| Memory< real_t > | data |
| int | size |
Class for grid function - Vector with associated FE space.
Definition at line 31 of file gridfunc.hpp.
| Enumerator | |
|---|---|
| ARITHMETIC | |
| HARMONIC | |
Definition at line 457 of file gridfunc.hpp.
|
inline |
Definition at line 76 of file gridfunc.hpp.
|
inline |
Copy constructor. The internal true-dof vector t_vec is not copied.
Definition at line 79 of file gridfunc.hpp.
|
inline |
Construct a GridFunction associated with the FiniteElementSpace *f.
Definition at line 84 of file gridfunc.hpp.
|
inline |
Construct a GridFunction using previously allocated array data.
The GridFunction does not assume ownership of data which is assumed to be of size at least f->GetVSize(). Similar to the Vector constructor for externally allocated array, the pointer data can be NULL. The data array can be replaced later using the method SetData().
Definition at line 93 of file gridfunc.hpp.
|
inline |
Construct a GridFunction using previously allocated Vector base starting at the given offset, base_offset.
Definition at line 99 of file gridfunc.hpp.
| mfem::GridFunction::GridFunction | ( | Mesh * | m, |
| std::istream & | input ) |
Construct a GridFunction on the given Mesh, using the data from input.
The content of input should be in the format created by the method Save(). The reconstructed FiniteElementSpace and FiniteElementCollection are owned by the GridFunction.
Definition at line 39 of file gridfunc.cpp.
| mfem::GridFunction::GridFunction | ( | Mesh * | m, |
| GridFunction * | gf_array[], | ||
| int | num_pieces ) |
Definition at line 80 of file gridfunc.cpp.
|
inlinevirtual |
Destroys grid function.
Definition at line 1641 of file gridfunc.hpp.
|
protected |
Definition at line 2200 of file gridfunc.cpp.
|
protected |
Definition at line 2048 of file gridfunc.cpp.
|
protected |
Used for the serial and parallel implementations of the GetDerivative() method; see its documentation.
Definition at line 1296 of file gridfunc.cpp.
|
protected |
Accumulates (depending on type) the values of coeff at all shared vdofs and counts in how many zones each vdof appears.
Definition at line 1952 of file gridfunc.cpp.
|
protected |
Accumulates (depending on type) the values of vcoeff at all shared vdofs and counts in how many zones each vdof appears.
Definition at line 1993 of file gridfunc.cpp.
|
virtual |
Returns ||curl u_ex - curl u_h||_L2 for ND elements.
| [in] | excurl | Pointer to a VectorCoefficient object reproducing the expected curl of the vector field, curl u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 2949 of file gridfunc.cpp.
|
virtual |
Returns the Face Jumps error for L2 elements.
Computes:
\[\sqrt{\sum_{f\in faces}\int_f js(f) ell(f) (2 u_{ex} - u_1 - u_2)^2}\]
Where js[f] is the jump_scaling evaluated on the face f and ell is the average of ell_coef evaluated in the two elements sharing the face f.
| [in] | exsol | Pointer to a Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | ell_coeff | Pointer to a Coefficient object used to compute the averaged value ell in the above integral. |
| [in] | jump_scaling | Can be configured to provide scaling by nu, nu/h, or nu*p^2/h |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3032 of file gridfunc.cpp.
| real_t mfem::GridFunction::ComputeDGFaceJumpError | ( | Coefficient * | exsol, |
| Coefficient * | ell_coeff, | ||
| real_t | Nu, | ||
| const IntegrationRule * | irs[] = NULL ) const |
Returns the Face Jumps error for L2 elements, with 1/h scaling.
Definition at line 3149 of file gridfunc.cpp.
|
virtual |
Returns ||div u_ex - div u_h||_L2 for RT elements.
| [in] | exdiv | Pointer to a Coefficient object reproducing the expected divergence of the vector field, div u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 2993 of file gridfunc.cpp.
|
virtual |
Returns ||grad u_ex - grad u_h||_L2 in element ielem for H1 or L2 elements.
| [in] | ielem | Index of the element in which to compute the L2 error. |
| [in] | exgrad | Pointer to a VectorCoefficient object reproducing the expected gradient of the scalar field, grad u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 2868 of file gridfunc.cpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L1 elementwise for H1 or L2 elements.
Compute the \(L^1\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^1\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1213 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L1 elementwise for vector fields.
Compute the \(L^1\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[\int_{elem} |scalar\_error|\]
Where
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^1\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1410 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L2 elementwise for H1 or L2 elements.
Compute the \(L^2\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[(\int_{elem} |u_{ex} - u_h|^2)^{1/2}\]
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^2\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1251 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L2 elementwise for vector fields.
Compute the \(L^2\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[(\int_{elem} |scalar\_error|^2)^{1/2}\]
Where
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^2\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1451 of file gridfunc.hpp.
|
virtual |
Returns ||u_ex - u_h||_Lp elementwise for H1 or L2 elements.
Compute the Lp error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[(\int_{elem} w \, |u_{ex} - u_h|^p)^{1/p}\]
| [in] | p | Real value indicating the exponent of the \(L^p\) norm. To avoid domain errors p should have a positive value, either finite or infinite. |
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^p\) errors |
| [in] | weight | Optional pointer to a Coefficient object reproducing a weighting function, w. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 3433 of file gridfunc.cpp.
|
virtual |
Returns ||u_ex - u_h||_Lp elementwise for vector fields.
Compute the \(L^p\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[(\int_{elem} w \, |scalar\_error|^p)^{1/p}\]
Where
\[scalar\_error = |v\_weight \cdot (u_{ex} - u_h)|\]
or
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | p | Real value indicating the exponent of the \(L^p\) norm. To avoid domain errors p should have a positive value, either finite or infinite. |
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^p\) errors |
| [in] | weight | Optional pointer to a Coefficient object reproducing a weighting function, w. |
| [in] | v_weight | Optional pointer to a VectorCoefficient object reproducing a weighting vector as shown above. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 3581 of file gridfunc.cpp.
|
inlinevirtual |
Returns Max|u_ex - u_h| elementwise for H1 or L2 elements.
Compute the \(L^\infty\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^\infty\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1280 of file gridfunc.hpp.
|
inlinevirtual |
Returns Max|u_ex - u_h| elementwise for vector fields.
Compute the \(L^\infty\) error in each element of the mesh and store the results in the Vector error. The result should be of length number of elements, for example an L2 GridFunction of order zero using map type VALUE.
Computes:
\[max_{elem} |scalar\_error|\]
Where
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in,out] | error | Vector to contain the element-wise \(L^\infty\) errors |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 1489 of file gridfunc.hpp.
|
virtual |
Reimplemented in mfem::ParGridFunction.
Definition at line 332 of file gridfunc.cpp.
|
virtual |
Returns ||grad u_ex - grad u_h||_L2 for H1 or L2 elements.
| [in] | exgrad | Pointer to a VectorCoefficient object reproducing the expected gradient of the scalar field, grad u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 2906 of file gridfunc.cpp.
|
virtual |
This method is kept for backward compatibility.
Returns either the H1-seminorm, or the DG face jumps error, or both depending on norm_type = 1, 2, 3. Additional arguments for the DG face jumps norm: ell_coeff: mesh-depended coefficient (weight) Nu: scalar constant weight
Reimplemented in mfem::ParGridFunction.
Definition at line 3158 of file gridfunc.cpp.
|
virtual |
Returns the error measured in H1-norm for H1 or L2 elements.
Computes the norm using the \(L^2\) norms of the function and its gradient
\[\sqrt{norm\_u^2 + norm\_du^2}\]
Where
\[norm\_u = \|u_{ex} - u_h\|_{L^2}\]
and
\[norm\_du = \|du_{ex} - \nabla u_h\|_{L^2}\]
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | exgrad | VectorCoefficient object reproducing the anticipated values of the gradient of the scalar field, du_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3175 of file gridfunc.cpp.
|
virtual |
Returns the error measured in H(curl)-norm for ND elements.
Computes the norm using the \(L^2\) norms of the function and its curl
\[\sqrt{norm\_u^2 + norm\_du^2}\]
Where
\[norm\_u = \|u_{ex} - u_h\|_{L^2}\]
and
\[norm\_du = \|du_{ex} - \nabla\times u_h\|_{L^2}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | excurl | VectorCoefficient object reproducing the anticipated values of the curl of the vector field, du_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3193 of file gridfunc.cpp.
|
virtual |
Returns the error measured in H(div)-norm for RT elements.
Computes the norm using the \(L^2\) norms of the function and its divergence
\[\sqrt{norm\_u^2 + norm\_du^2}\]
Where
\[norm\_u = \|u_{ex} - u_h\|_{L^2}\]
and
\[norm\_du = \|du_{ex} - \nabla\cdot u_h\|_{L^2}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | exdiv | VectorCoefficient object reproducing the anticipated values of the divergence of the vector field, du_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3184 of file gridfunc.cpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L1 for H1 or L2 elements.
Computes:
\[\sum_{elems} \int_{elem} |u_{ex} - u_h|\]
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 992 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L1 for H1 or L2 elements.
Computes:
\[\sum_{elems} \int_{elem} |u_{ex} - u_h|\]
| [in] | exsol | Pointer to an array of Coefficient objects reproducing the anticipated values of the scalar field, u_ex. Only the first entry of this array will be accessed. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 1032 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L1 for vector fields.
Computes:
\[\sum_{elems} \int_{elem} |scalar\_error|\]
Where
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 1105 of file gridfunc.hpp.
|
inlinevirtual |
Returns ||u_ex - u_h||_L2 for H1 or L2 elements.
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
| [in] | elems | Optional pointer to a marker array, with a length equal to the number of local elements, indicating which elements to integrate over. Only those elements corresponding to non-zero entries in elems will contribute to the computed L2 error. |
Reimplemented in mfem::ParGridFunction.
Definition at line 618 of file gridfunc.hpp.
|
virtual |
Returns ||exsol - u_h||_L2 for scalar or vector H1 or L2 elements.
| [in] | exsol | Pointer to an array of scalar Coefficient objects, one for each component of the vector field. The length of the array should be at least equal to FiniteElementSpace::GetVDim(). |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
| [in] | elems | Optional pointer to a marker array, with a length equal to the number of local elements, indicating which elements to integrate over. Only those elements corresponding to non-zero entries in elems will contribute to the computed L2 error. |
Reimplemented in mfem::ParGridFunction.
Definition at line 2767 of file gridfunc.cpp.
|
virtual |
Returns ||u_ex - u_h||_L2 for vector fields.
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
| [in] | elems | Optional pointer to a marker array, with a length equal to the number of local elements, indicating which elements to integrate over. Only those elements corresponding to non-zero entries in elems will contribute to the computed L2 error. |
Reimplemented in mfem::ParGridFunction.
Definition at line 2825 of file gridfunc.cpp.
|
virtual |
Returns ||u_ex - u_h||_Lp for H1 or L2 elements.
Computes:
\[(\sum_{elems} \int_{elem} w \, |u_{ex} - u_h|^p)^{1/p}\]
| [in] | p | Real value indicating the exponent of the \(L^p\) norm. To avoid domain errors p should have a positive value, either finite or infinite. |
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | weight | Optional pointer to a Coefficient object reproducing a weighting function, w. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
| [in] | elems | Optional pointer to a marker array, with a length equal to the number of local elements, indicating which elements to integrate over. Only those elements corresponding to non-zero entries in elems will contribute to the computed L2 error. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3368 of file gridfunc.cpp.
|
virtual |
Returns ||u_ex - u_h||_Lp for vector fields.
When given a vector weight, compute the pointwise (scalar) error as the dot product of the vector error with the vector weight. Otherwise, the scalar error is the l_2 norm of the vector error.
Computes:
\[(\sum_{elems} \int_{elem} w \, |scalar\_error|^p)^{1/p}\]
Where
\[scalar\_error = |v\_weight \cdot (u_{ex} - u_h)|\]
or
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | p | Real value indicating the exponent of the \(L^p\) norm. To avoid domain errors p should have a positive value, either finite or infinite. |
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | weight | Optional pointer to a Coefficient object reproducing a weighting function, w. |
| [in] | v_weight | Optional pointer to a VectorCoefficient object reproducing a weighting vector as shown above. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3492 of file gridfunc.cpp.
|
inlinevirtual |
Returns Max|u_ex - u_h| error for H1 or L2 elements.
Compute the \(L^\infty\) error across the entire domain.
| [in] | exsol | Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 899 of file gridfunc.hpp.
|
virtual |
Returns Max|u_ex - u_h| error for scalar or vector fields.
Compute the \(L^\infty\) error across the entire domain.
Computes:
\[max_{elems} (max_{elem} |scalar\_error|)\]
Where
\[scalar\_error = max_{d=0\ldots vdim}|u_{ex}[d] - u_h[d]|\]
| [in] | exsol | Pointer to an array of scalar Coefficient objects, one for each component of the vector field. The length of the array should be at least equal to FiniteElementSpace::GetVDim(). |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 3202 of file gridfunc.cpp.
|
inlinevirtual |
Returns Max|u_ex - u_h| error for vector fields.
Compute the \(L^\infty\) error across the entire domain.
Computes:
\[max_{elems} (max_{elem} |scalar\_error|)\]
Where
\[scalar\_error = \sqrt{(u_{ex} - u_h) \cdot (u_{ex} - u_h)}\]
| [in] | exsol | VectorCoefficient object reproducing the anticipated values of the vector field, u_ex. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Reimplemented in mfem::ParGridFunction.
Definition at line 961 of file gridfunc.hpp.
Definition at line 2264 of file gridfunc.cpp.
|
virtual |
Returns \(W^1_1\) norm (or portions thereof) for H1 or L2 elements.
Computes for norm_type == 1 the \(L^1\) norm of \(u\):
\[(\sum_{elems} \int_{elem} |u_{ex} - u_h|\]
Computes for norm_type == 2 the \(L^1\) semi-norm of \(\nabla u\):
\[(\sum_{elems} \int_{elem} |du_{ex} - \nabla u_h|\]
Computes for norm_type == 3 the \(W^1_1\) norm of \(u\):
\[(\sum_{elems} \int_{elem} |u_{ex} - u_h| + |du_{ex} - \nabla u_h|\]
| [in] | exsol | Pointer to Coefficient object reproducing the anticipated values of the scalar field, u_ex. |
| [in] | exgrad | Pointer to VectorCoefficient object reproducing the anticipated values of the gradient of the scalar field, du_ex. |
| [in] | norm_type | Integer value of 1, 2, or 3 indicating the type of norm to compute (see above). |
| [in] | elems | Optional pointer to a marker array, with a length equal to the number of local elements, indicating which elements to integrate over. Only those elements corresponding to non-zero entries in elems will contribute to the computed \(W^1_1\) error. |
| [in] | irs | Optional pointer to an array of custom integration rules e.g. higher order than the default rules. If present the array will be indexed by Geometry::Type. |
Definition at line 3258 of file gridfunc.cpp.
|
virtual |
For each vdof, counts how many elements contain the vdof, as containment is determined by FiniteElementSpace::GetElementVDofs().
Reimplemented in mfem::ParGridFunction.
Definition at line 1935 of file gridfunc.cpp.
| int mfem::GridFunction::CurlDim | ( | ) | const |
Shortcut for calling FiniteElementSpace::GetCurlDim() on the underlying fes.
Definition at line 358 of file gridfunc.cpp.
|
protected |
Definition at line 158 of file gridfunc.cpp.
|
inline |
Definition at line 1514 of file gridfunc.hpp.
|
inline |
Definition at line 1515 of file gridfunc.hpp.
| void mfem::GridFunction::GetBdrValuesFrom | ( | const GridFunction & | orig_func | ) |
Definition at line 1131 of file gridfunc.cpp.
|
virtual |
Computes the PLBound for the gridfunction with number of control points based on ref_factor, and returns the overall bounds for each vdim (across all elements) in lower and upper. We also return the PLBound object used to compute the bounds. We compute the bounds for each vdim if vdim < 1. Note: For most cases, this method/interface will be sufficient.
Reimplemented in mfem::ParGridFunction.
Definition at line 4715 of file gridfunc.cpp.
| void mfem::GridFunction::GetCurl | ( | ElementTransformation & | tr, |
| Vector & | curl ) const |
Definition at line 1505 of file gridfunc.cpp.
| void mfem::GridFunction::GetDerivative | ( | int | comp, |
| int | der_comp, | ||
| GridFunction & | der ) const |
Compute a certain derivative of a function's component. Derivatives of the function are computed at the DOF locations of der, and averaged over overlapping DOFs. Thus this function projects the derivative to the FiniteElementSpace of der.
| [in] | comp | Index of the function's component to be differentiated. The index is 1-based, i.e., use 1 for scalar functions. |
| [in] | der_comp | Use 0/1/2 for derivatives in x/y/z directions. |
| [out] | der | The resulting derivative (scalar function). The FiniteElementSpace of this function must be set before the call. |
Definition at line 1349 of file gridfunc.cpp.
| real_t mfem::GridFunction::GetDivergence | ( | ElementTransformation & | tr | ) | const |
Definition at line 1421 of file gridfunc.cpp.
| void mfem::GridFunction::GetElementAverages | ( | GridFunction & | avgs | ) | const |
Compute \( (\int_{\Omega} (*this) \psi_i)/(\int_{\Omega} \psi_i) \), where \( \psi_i \) are the basis functions for the FE space of avgs. Both FE spaces should be scalar and on the same mesh.
Definition at line 1742 of file gridfunc.cpp.
| void mfem::GridFunction::GetElementBounds | ( | const int | elem, |
| const PLBound & | plb, | ||
| Vector & | lower, | ||
| Vector & | upper, | ||
| const int | vdim = -1 ) const |
Compute bounds on the grid function for the given element. The bounds are stored in lower and upper.
Definition at line 4659 of file gridfunc.cpp.
| void mfem::GridFunction::GetElementBounds | ( | const PLBound & | plb, |
| Vector & | lower, | ||
| Vector & | upper, | ||
| const int | vdim = -1 ) const |
Compute bounds on the grid function for all the elements. The bounds are returned in lower and upper, ordered byVDim: lower_{0,0}, lower_{1,0}, ..., lower_{ne-1,0}, lower_{0,1}, ..., lower_{ne-1,vdim-1}
Definition at line 4682 of file gridfunc.cpp.
| PLBound mfem::GridFunction::GetElementBounds | ( | Vector & | lower, |
| Vector & | upper, | ||
| const int | ref_factor = 1, | ||
| const int | vdim = -1 ) const |
Computes the PLBound for the gridfunction with number of control points based on ref_factor, and returns the bounds for each element ordered byVDim: lower_{0,0}, lower_{1,0}, ..., lower_{ne-1,0}, lower_{0,1}, ..., lower_{ne-1,vdim-1}. We also return the PLBound object used to compute the bounds. We compute the bounds for each vdim if vdim < 1.
Definition at line 4704 of file gridfunc.cpp.
| void mfem::GridFunction::GetElementBoundsAtControlPoints | ( | const int | elem, |
| const PLBound & | plb, | ||
| Vector & | lower, | ||
| Vector & | upper, | ||
| const int | vdim = -1 ) const |
Compute piecewise linear bounds on the given element at the grid of [plb.ncp x plb.ncp x plb.ncp] control points for each of the vdim components of the gridfunction.
Definition at line 4610 of file gridfunc.cpp.
|
virtual |
Sets the output vector dof_vals to the values of the degrees of freedom of element el.
Reimplemented in mfem::ParGridFunction.
Definition at line 1775 of file gridfunc.cpp.
| int mfem::GridFunction::GetFaceValues | ( | int | i, |
| int | side, | ||
| const IntegrationRule & | ir, | ||
| Vector & | vals, | ||
| DenseMatrix & | tr, | ||
| int | vdim = 1 ) const |
Compute a collection of scalar values from within the face indicated by the index i.
Definition at line 657 of file gridfunc.cpp.
| int mfem::GridFunction::GetFaceVectorValues | ( | int | i, |
| int | side, | ||
| const IntegrationRule & | ir, | ||
| DenseMatrix & | vals, | ||
| DenseMatrix & | tr ) const |
Compute a collection of vector values from within the face indicated by the index i.
Definition at line 1048 of file gridfunc.cpp.
| void mfem::GridFunction::GetGradient | ( | ElementTransformation & | tr, |
| Vector & | grad ) const |
Gradient of a scalar function at a quadrature point.
Definition at line 1595 of file gridfunc.cpp.
|
inline |
Extension of GetGradient(...) for a collection of IntegrationPoints.
Definition at line 352 of file gridfunc.hpp.
| void mfem::GridFunction::GetGradients | ( | const IntegrationRule & | ir, |
| Vector & | grad, | ||
| QVectorLayout | ql = QVectorLayout::byNODES, | ||
| MemoryType | d_mt = MemoryType::DEFAULT ) const |
Evaluate the gradients of the GridFunction at the given quadrature points, ir, in all mesh elements.
This method assumes that all mesh elements are the same type and that the IntegrationRule ir is consistent with that type of element.
| [in] | ir | Quadrature points at which the gradients are to be evaluated. |
| [out] | grad | Output vector of size SDIM*VDIM*NQ*NE where SDIM is the spatial dimention of the mesh, VDIM is the vector dimension of the GridFunction, NQ is the number of quadrature points in ir, and NE is the number of elements in the mesh. The layout of grad is determined by the parameter ql: when ql is QVectorLayout::byNODES, the layout is NQ x VDIM x SDIM x NE; when ql is QVectorLayout::byVDIM, the layout is VDIM x SDIM x NQ x NE. |
| [in] | ql | Determines the layout of the output vector grad; see the description of grad for details. |
| [in] | d_mt | MemoryType to use for allocating the output vector grad, as well the GeometricFactors and temporary vector used by the method. By default, the current device memory type is used. |
Definition at line 1377 of file gridfunc.cpp.
| void mfem::GridFunction::GetGradients | ( | ElementTransformation & | tr, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | grad ) const |
Extension of GetGradient(...) for a collection of IntegrationPoints.
Definition at line 1660 of file gridfunc.cpp.
| void mfem::GridFunction::GetHessians | ( | int | i, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | hess, | ||
| DenseMatrix & | tr, | ||
| int | vdim = 1 ) const |
Definition at line 644 of file gridfunc.cpp.
| void mfem::GridFunction::GetHessians | ( | int | i, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | hess, | ||
| int | vdim = 1 ) const |
Definition at line 601 of file gridfunc.cpp.
| void mfem::GridFunction::GetLaplacians | ( | int | i, |
| const IntegrationRule & | ir, | ||
| Vector & | laps, | ||
| DenseMatrix & | tr, | ||
| int | vdim = 1 ) const |
Definition at line 589 of file gridfunc.cpp.
| void mfem::GridFunction::GetLaplacians | ( | int | i, |
| const IntegrationRule & | ir, | ||
| Vector & | laps, | ||
| int | vdim = 1 ) const |
Definition at line 562 of file gridfunc.cpp.
Returns the values at the vertices of element i for the 1-based dimension vdim.
Definition at line 397 of file gridfunc.cpp.
| void mfem::GridFunction::GetNodalValues | ( | Vector & | nval, |
| int | vdim = 1 ) const |
Returns the values as a vector at mesh vertices, for the 1-based dimension vdim.
Definition at line 1909 of file gridfunc.cpp.
|
inline |
Return update counter, similar to Mesh::GetSequence(). Used to check if it is up to date with the space.
Definition at line 1512 of file gridfunc.hpp.
| void mfem::GridFunction::GetTrueDofs | ( | Vector & | tv | ) | const |
Extract the true-dofs from the GridFunction.
Definition at line 368 of file gridfunc.cpp.
|
inline |
Read and write access to the (optional) internal true-dof Vector.
Note that t_vec is set if it is not allocated or set already.
Definition at line 141 of file gridfunc.hpp.
|
inline |
Read only access to the (optional) internal true-dof Vector.
Definition at line 134 of file gridfunc.hpp.
|
virtual |
Return a scalar value from within the element indicated by the ElementTransformation Object.
Reimplemented in mfem::ParGridFunction.
Definition at line 716 of file gridfunc.cpp.
|
virtual |
Return a scalar value from within the given element.
Reimplemented in mfem::ParGridFunction.
Definition at line 449 of file gridfunc.cpp.
| void mfem::GridFunction::GetValues | ( | ElementTransformation & | T, |
| const IntegrationRule & | ir, | ||
| Vector & | vals, | ||
| int | comp = 0, | ||
| DenseMatrix * | tr = NULL ) const |
Compute a collection of scalar values from within the element indicated by the ElementTransformation object.
Definition at line 831 of file gridfunc.cpp.
| void mfem::GridFunction::GetValues | ( | int | i, |
| const IntegrationRule & | ir, | ||
| Vector & | vals, | ||
| DenseMatrix & | tr, | ||
| int | vdim = 1 ) const |
Compute a collection of vector values from within the element indicated by the index i.
Definition at line 551 of file gridfunc.cpp.
| void mfem::GridFunction::GetValues | ( | int | i, |
| const IntegrationRule & | ir, | ||
| Vector & | vals, | ||
| int | vdim = 1 ) const |
Compute a collection of scalar values from within the element indicated by the index i.
Definition at line 517 of file gridfunc.cpp.
| void mfem::GridFunction::GetValuesFrom | ( | const GridFunction & | orig_func | ) |
Definition at line 1092 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorFieldNodalValues | ( | Vector & | val, |
| int | comp ) const |
Definition at line 1229 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorFieldValues | ( | int | i, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | vals, | ||
| DenseMatrix & | tr, | ||
| int | comp = 0 ) const |
Definition at line 1167 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorGradient | ( | ElementTransformation & | tr, |
| DenseMatrix & | grad ) const |
Compute the vector gradient with respect to the physical element variable.
Definition at line 1684 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorGradientHat | ( | ElementTransformation & | T, |
| DenseMatrix & | gh ) const |
Compute the vector gradient with respect to the reference element variable.
Definition at line 1361 of file gridfunc.cpp.
|
virtual |
Return a vector value from within the element indicated by the ElementTransformation Object.
Reimplemented in mfem::ParGridFunction.
Definition at line 851 of file gridfunc.cpp.
|
virtual |
Return a vector value from within the given element.
Reimplemented in mfem::ParGridFunction.
Definition at line 474 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorValues | ( | ElementTransformation & | T, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | vals, | ||
| DenseMatrix * | tr = NULL ) const |
Compute a collection of vector values from within the element indicated by the ElementTransformation object.
Definition at line 988 of file gridfunc.cpp.
| void mfem::GridFunction::GetVectorValues | ( | int | i, |
| const IntegrationRule & | ir, | ||
| DenseMatrix & | vals, | ||
| DenseMatrix & | tr ) const |
Definition at line 707 of file gridfunc.cpp.
| void mfem::GridFunction::ImposeBounds | ( | int | i, |
| const Vector & | weights, | ||
| const Vector & | lo_, | ||
| const Vector & | hi_ ) |
Impose the given bounds on the function's DOFs while preserving its local integral (described in terms of the given weights) on the i'th element through SLBPQ optimization. Intended to be used for discontinuous FE functions.
Definition at line 1831 of file gridfunc.cpp.
| void mfem::GridFunction::ImposeBounds | ( | int | i, |
| const Vector & | weights, | ||
| real_t | min_ = 0.0, | ||
| real_t | max_ = infinity() ) |
Definition at line 1862 of file gridfunc.cpp.
|
protected |
Loading helper.
Definition at line 3946 of file gridfunc.cpp.
|
inline |
Make the GridFunction the owner of fec_owned and fes.
If the new FiniteElementCollection, fec_, is NULL, ownership of fec_owned and fes is taken away.
Definition at line 123 of file gridfunc.hpp.
|
virtual |
Make the GridFunction reference external data on a new FiniteElementSpace.
This method changes the FiniteElementSpace associated with the GridFunction and sets the pointer v as external data in the GridFunction.
Reimplemented in mfem::ParGridFunction.
Definition at line 234 of file gridfunc.cpp.
|
virtual |
Make the GridFunction reference external data on a new FiniteElementSpace.
This method changes the FiniteElementSpace associated with the GridFunction and sets the data of the Vector v (plus the v_offset) as external data in the GridFunction.
Reimplemented in mfem::ParGridFunction.
Definition at line 242 of file gridfunc.cpp.
|
inline |
Reset the Vector to be a reference to a sub-vector of base without changing its current size.
Definition at line 219 of file vector.hpp.
|
inline |
Reset the Vector to be a reference to a sub-vector of base.
Definition at line 215 of file vector.hpp.
| void mfem::GridFunction::MakeTRef | ( | FiniteElementSpace * | f, |
| real_t * | tv ) |
Associate a new FiniteElementSpace and new true-dof data with the GridFunction.
Definition at line 252 of file gridfunc.cpp.
| void mfem::GridFunction::MakeTRef | ( | FiniteElementSpace * | f, |
| Vector & | tv, | ||
| int | tv_offset ) |
Associate a new FiniteElementSpace and new true-dof data with the GridFunction.
Definition at line 266 of file gridfunc.cpp.
|
inline |
Copy assignment. Only the data of the base class Vector is copied.
It is assumed that this object and rhs use FiniteElementSpaces that have the same size.
Definition at line 117 of file gridfunc.hpp.
| GridFunction & mfem::GridFunction::operator= | ( | const Vector & | v | ) |
Copy the data from v.
The size of v must be equal to the size of the associated FiniteElementSpace fes.
Definition at line 3673 of file gridfunc.cpp.
| GridFunction & mfem::GridFunction::operator= | ( | real_t | value | ) |
Redefine '=' for GridFunction = constant.
Definition at line 3667 of file gridfunc.cpp.
|
inline |
Definition at line 125 of file gridfunc.hpp.
|
inline |
Project a Coefficient on the GridFunction, modifying only DOFs on the boundary associated with the boundary attributes marked in the attr array.
Definition at line 511 of file gridfunc.hpp.
|
virtual |
Project a set of Coefficients on the components of the GridFunction, modifying only DOFs on the boundary associated with the boundary attributed marked in the attr array.
If a Coefficient pointer in the array coeff is NULL, that component will not be touched.
Reimplemented in mfem::ParGridFunction.
Definition at line 2647 of file gridfunc.cpp.
|
virtual |
Project a VectorCoefficient on the GridFunction, modifying only DOFs on the boundary associated with the boundary attributes marked in the attr array.
Reimplemented in mfem::ParGridFunction.
Definition at line 2629 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectBdrCoefficientNormal | ( | VectorCoefficient & | vcoeff, |
| const Array< int > & | bdr_attr ) |
Project the normal component of the given VectorCoefficient on the boundary. Only boundary attributes that are marked in 'bdr_attr' are projected. Assumes RT-type VectorFE GridFunction.
Definition at line 2677 of file gridfunc.cpp.
|
virtual |
Project the tangential components of the given VectorCoefficient on the boundary. Only boundary attributes that are marked in bdr_attr are projected. Assumes ND-type VectorFE GridFunction.
Reimplemented in mfem::ParGridFunction.
Definition at line 2750 of file gridfunc.cpp.
|
virtual |
Project coeff Coefficient to this GridFunction. The projection computation depends on the choice of the FiniteElementSpace fes. Note that this is usually interpolation at the degrees of freedom in each element (not L2 projection). For NURBS spaces these degrees of freedom are not available and L2 projection is resorted to as fallback.
Reimplemented in mfem::ParGridFunction.
Definition at line 2355 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectCoefficient | ( | Coefficient & | coeff, |
| Array< int > & | dofs, | ||
| int | vd = 0 ) |
Project coeff Coefficient to this GridFunction, using one element for each degree of freedom in dofs and nodal interpolation on that element.
Definition at line 2413 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectCoefficient | ( | Coefficient * | coeff[] | ) |
Analogous to the version with argument vcoeff VectorCoefficient but using an array of scalar coefficients for each component.
Definition at line 2535 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectCoefficient | ( | VectorCoefficient & | vcoeff | ) |
Project vcoeff VectorCoefficient to this GridFunction. The projection computation depends on the choice of the FiniteElementSpace fes. Note that this is usually interpolation at the degrees of freedom in each element (not L2 projection). For NURBS spaces these degrees of freedom are not available and L2 projection is resorted to as fallback.
Definition at line 2437 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectCoefficient | ( | VectorCoefficient & | vcoeff, |
| Array< int > & | dofs ) |
Project vcoeff VectorCoefficient to this GridFunction, using one element for each degree of freedom in dofs and nodal interpolation on that element.
Definition at line 2483 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectCoefficient | ( | VectorCoefficient & | vcoeff, |
| int | attribute ) |
Project vcoeff VectorCoefficient to this GridFunction, only projecting onto elements with the given attribute.
Definition at line 2513 of file gridfunc.cpp.
|
protected |
Definition at line 2289 of file gridfunc.cpp.
|
virtual |
Projects a discontinuous coefficient so that the values in shared vdofs are computed by taking an average of the possible values.
Reimplemented in mfem::ParGridFunction.
Definition at line 2609 of file gridfunc.cpp.
|
virtual |
Project a discontinuous vector coefficient as a grid function on a continuous finite element space. The values in shared dofs are determined from the element with maximal attribute.
Reimplemented in mfem::ParGridFunction.
Definition at line 2603 of file gridfunc.cpp.
|
protected |
Project a discontinuous vector coefficient in a continuous space and return in dof_attr the maximal attribute of the elements containing each degree of freedom.
Definition at line 2571 of file gridfunc.cpp.
|
virtual |
Projects a discontinuous vector coefficient so that the values in shared vdofs are computed by taking an average of the possible values.
Reimplemented in mfem::ParGridFunction.
Definition at line 2620 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectGridFunction | ( | const GridFunction & | src | ) |
Project the src GridFunction to this GridFunction, both of which must be on the same mesh.
The current implementation assumes that all elements use the same projection matrix.
Definition at line 1784 of file gridfunc.cpp.
| void mfem::GridFunction::ProjectVectorFieldOn | ( | GridFunction & | vec_field, |
| int | comp = 0 ) |
Definition at line 1260 of file gridfunc.cpp.
| std::unique_ptr< GridFunction > mfem::GridFunction::ProlongateToMaxOrder | ( | ) | const |
Return a GridFunction with the values of this, prolongated to the maximum order of all elements in the mesh.
Definition at line 4008 of file gridfunc.cpp.
| void mfem::GridFunction::ReorderByNodes | ( | ) |
For a vector grid function, makes sure that the ordering is byNODES.
Definition at line 1202 of file gridfunc.cpp.
| void mfem::GridFunction::RestrictConforming | ( | ) |
On a non-conforming mesh, make sure the function lies in the conforming space by multiplying with R and then with P, the conforming restriction and prolongation matrices of the space, respectively.
Definition at line 1896 of file gridfunc.cpp.
|
virtual |
Save the GridFunction to a binary output stream using adios2 bp format.
Reimplemented in mfem::ParGridFunction.
Definition at line 3713 of file gridfunc.cpp.
|
virtual |
Save the GridFunction to a file. The given precision will be used for ASCII output.
Reimplemented in mfem::ParGridFunction.
Definition at line 3705 of file gridfunc.cpp.
|
virtual |
Save the GridFunction to an output stream.
Reimplemented in mfem::ParGridFunction.
Definition at line 3680 of file gridfunc.cpp.
| void mfem::GridFunction::SaveSTL | ( | std::ostream & | out, |
| int | TimesToRefine = 1 ) |
Write the GridFunction in STL format. Note that the mesh dimension must be 2 and that quad elements will be broken into two triangles.
Definition at line 3846 of file gridfunc.cpp.
|
protected |
Definition at line 3826 of file gridfunc.cpp.
| void mfem::GridFunction::SaveVTK | ( | std::ostream & | out, |
| const std::string & | field_name, | ||
| int | ref ) |
Write the GridFunction in VTK format. Note that Mesh::PrintVTK must be called first. The parameter ref > 0 must match the one used in Mesh::PrintVTK.
Definition at line 3721 of file gridfunc.cpp.
| void mfem::GridFunction::SaveVTKHDF | ( | const std::string & | fname, |
| const std::string & | name = "u", | ||
| bool | high_order = true, | ||
| int | ref = -1 ) |
Save the GridFunction in VTKHDF format.
If high-order is true, then ref controls the order of output. If ref is -1, then the order of the grid function will be used.
If high-order is false, then low-order output will be used. ref controls the number of mesh refinements; if ref is -1, no refinements will be performed.
Definition at line 3802 of file gridfunc.cpp.
|
virtual |
Set the GridFunction from the given true-dof vector.
Reimplemented in mfem::ParGridFunction.
Definition at line 383 of file gridfunc.cpp.
|
inline |
Shortcut for calling SetFromTrueDofs() with GetTrueVector() as argument.
Definition at line 154 of file gridfunc.hpp.
|
virtual |
Associate a new FiniteElementSpace with the GridFunction.
The GridFunction is resized using the SetSize() method.
Reimplemented in mfem::ParGridFunction.
Definition at line 226 of file gridfunc.cpp.
|
inline |
Shortcut for calling GetTrueDofs() with GetTrueVector() as argument.
Definition at line 148 of file gridfunc.hpp.
|
protected |
Definition at line 282 of file gridfunc.cpp.
|
virtual |
Transform by the Space UpdateMatrix (e.g., on Mesh change).
Reimplemented in mfem::ParGridFunction.
Definition at line 168 of file gridfunc.cpp.
|
protected |
P-refinement version of Update().
Definition at line 206 of file gridfunc.cpp.
| int mfem::GridFunction::VectorDim | ( | ) | const |
Shortcut for calling FiniteElementSpace::GetVectorDim() on the underlying fes.
Definition at line 347 of file gridfunc.cpp.
|
protected |
Used when the grid function is read from a file. It can also be set explicitly, see MakeOwner().
If not NULL, this pointer is owned by the GridFunction.
Definition at line 41 of file gridfunc.hpp.
|
protected |
FE space on which the grid function lives. Owned if fec_owned is not NULL.
Definition at line 35 of file gridfunc.hpp.
|
protected |
Definition at line 43 of file gridfunc.hpp.
|
protected |
Optional, internal true-dof vector: if the FiniteElementSpace fes has a non-trivial (i.e. not NULL) prolongation operator, this Vector may hold associated true-dof values - either owned or external.
Definition at line 48 of file gridfunc.hpp.