MFEM  v3.4
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Public Member Functions | Protected Attributes | List of all members
mfem::ParGridFunction Class Reference

Class for parallel grid function. More...

#include <pgridfunc.hpp>

Inheritance diagram for mfem::ParGridFunction:
[legend]
Collaboration diagram for mfem::ParGridFunction:
[legend]

Public Member Functions

 ParGridFunction ()
 
 ParGridFunction (ParFiniteElementSpace *pf)
 
 ParGridFunction (ParFiniteElementSpace *pf, double *data)
 Construct a ParGridFunction using previously allocated array data. More...
 
 ParGridFunction (ParFiniteElementSpace *pf, GridFunction *gf)
 Construct a ParGridFunction using a GridFunction as external data. More...
 
 ParGridFunction (ParFiniteElementSpace *pf, HypreParVector *tv)
 Creates grid function on (all) dofs from a given vector on the true dofs, i.e. P tv. More...
 
 ParGridFunction (ParMesh *pmesh, const GridFunction *gf, const int *partitioning=NULL)
 Construct a local ParGridFunction from the given global GridFunction. If partitioning is NULL (default), the data from gf is NOT copied. More...
 
 ParGridFunction (ParMesh *pmesh, std::istream &input)
 Construct a ParGridFunction on a given ParMesh, pmesh, reading from an std::istream. More...
 
ParGridFunctionoperator= (double value)
 Assign constant values to the ParGridFunction data. More...
 
ParGridFunctionoperator= (const Vector &v)
 Copy the data from a Vector to the ParGridFunction data. More...
 
ParFiniteElementSpaceParFESpace () const
 
virtual void Update ()
 Transform by the Space UpdateMatrix (e.g., on Mesh change). More...
 
virtual void SetSpace (FiniteElementSpace *f)
 Associate a new FiniteElementSpace with the ParGridFunction. More...
 
void SetSpace (ParFiniteElementSpace *f)
 Associate a new parallel space with the ParGridFunction. More...
 
virtual void MakeRef (FiniteElementSpace *f, double *v)
 Make the ParGridFunction reference external data on a new FiniteElementSpace. More...
 
void MakeRef (ParFiniteElementSpace *f, double *v)
 Make the ParGridFunction reference external data on a new ParFiniteElementSpace. More...
 
virtual void MakeRef (FiniteElementSpace *f, Vector &v, int v_offset)
 Make the ParGridFunction reference external data on a new FiniteElementSpace. More...
 
void MakeRef (ParFiniteElementSpace *f, Vector &v, int v_offset)
 Make the ParGridFunction reference external data on a new ParFiniteElementSpace. More...
 
void Distribute (const Vector *tv)
 
void Distribute (const Vector &tv)
 
void AddDistribute (double a, const Vector *tv)
 
void AddDistribute (double a, const Vector &tv)
 
virtual void SetFromTrueDofs (const Vector &tv)
 Set the GridFunction from the given true-dof vector. More...
 
ParGridFunctionoperator= (const HypreParVector &tv)
 Short semantic for Distribute. More...
 
HypreParVectorGetTrueDofs () const
 Returns the true dofs in a new HypreParVector. More...
 
void ParallelAverage (Vector &tv) const
 Returns the vector averaged on the true dofs. More...
 
void ParallelAverage (HypreParVector &tv) const
 Returns the vector averaged on the true dofs. More...
 
HypreParVectorParallelAverage () const
 Returns a new vector averaged on the true dofs. More...
 
void ParallelProject (Vector &tv) const
 Returns the vector restricted to the true dofs. More...
 
void ParallelProject (HypreParVector &tv) const
 Returns the vector restricted to the true dofs. More...
 
HypreParVectorParallelProject () const
 Returns a new vector restricted to the true dofs. More...
 
void ParallelAssemble (Vector &tv) const
 Returns the vector assembled on the true dofs. More...
 
void ParallelAssemble (HypreParVector &tv) const
 Returns the vector assembled on the true dofs. More...
 
HypreParVectorParallelAssemble () const
 Returns a new vector assembled on the true dofs. More...
 
void ExchangeFaceNbrData ()
 
VectorFaceNbrData ()
 
const VectorFaceNbrData () const
 
virtual double GetValue (int i, const IntegrationPoint &ip, int vdim=1) const
 
double GetValue (ElementTransformation &T)
 
virtual void ProjectCoefficient (Coefficient &coeff)
 
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. More...
 
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. More...
 
virtual void ProjectDiscCoefficient (VectorCoefficient &vcoeff, AvgType type)
 Projects a discontinuous vector coefficient so that the values in shared vdofs are computed by taking an average of the possible values. More...
 
virtual double ComputeL1Error (Coefficient *exsol[], const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeL1Error (Coefficient &exsol, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeL1Error (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeL2Error (Coefficient *exsol[], const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeL2Error (Coefficient &exsol, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeL2Error (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL, Array< int > *elems=NULL) const
 
virtual double ComputeMaxError (Coefficient *exsol[], const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeMaxError (Coefficient &exsol, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeMaxError (VectorCoefficient &exsol, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeLpError (const double p, Coefficient &exsol, Coefficient *weight=NULL, const IntegrationRule *irs[]=NULL) const
 
virtual double ComputeLpError (const double p, VectorCoefficient &exsol, Coefficient *weight=NULL, VectorCoefficient *v_weight=NULL, const IntegrationRule *irs[]=NULL) const
 
virtual void ComputeFlux (BilinearFormIntegrator &blfi, GridFunction &flux, int wcoef=1, int subdomain=-1)
 
virtual void Save (std::ostream &out) const
 
void SaveAsOne (std::ostream &out=mfem::out)
 Merge the local grid functions. More...
 
virtual ~ParGridFunction ()
 
- Public Member Functions inherited from mfem::GridFunction
 GridFunction ()
 
 GridFunction (const GridFunction &orig)
 Copy constructor. More...
 
 GridFunction (FiniteElementSpace *f)
 Construct a GridFunction associated with the FiniteElementSpace *f. More...
 
 GridFunction (FiniteElementSpace *f, double *data)
 Construct a GridFunction using previously allocated array data. More...
 
 GridFunction (Mesh *m, std::istream &input)
 Construct a GridFunction on the given Mesh, using the data from input. More...
 
 GridFunction (Mesh *m, GridFunction *gf_array[], int num_pieces)
 
void MakeOwner (FiniteElementCollection *_fec)
 Make the GridFunction the owner of 'fec' and 'fes'. More...
 
FiniteElementCollectionOwnFEC ()
 
int VectorDim () const
 
const VectorGetTrueVector () const
 Read only access to the (optional) internal true-dof Vector. More...
 
VectorGetTrueVector ()
 Read and write access to the (optional) internal true-dof Vector. More...
 
void GetTrueDofs (Vector &tv) const
 Extract the true-dofs from the GridFunction. If all dofs are true, then tv will be set to point to the data of *this. More...
 
void SetTrueVector ()
 Shortcut for calling GetTrueDofs() with GetTrueVector() as argument. More...
 
void SetFromTrueVector ()
 Shortcut for calling SetFromTrueDofs() with GetTrueVector() as argument. More...
 
void GetNodalValues (int i, Array< double > &nval, int vdim=1) const
 Returns the values in the vertices of i'th element for dimension vdim. More...
 
void GetVectorValue (int i, const IntegrationPoint &ip, Vector &val) const
 
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
 
int GetFaceValues (int i, int side, const IntegrationRule &ir, Vector &vals, DenseMatrix &tr, int vdim=1) const
 
void GetVectorValues (ElementTransformation &T, const IntegrationRule &ir, DenseMatrix &vals) const
 
void GetVectorValues (int i, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix &tr) const
 
int GetFaceVectorValues (int i, int side, const IntegrationRule &ir, DenseMatrix &vals, DenseMatrix &tr) 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. More...
 
void GetNodalValues (Vector &nval, int vdim=1) const
 Return the values as a vector on mesh vertices for dimension vdim. More...
 
void GetVectorFieldNodalValues (Vector &val, int comp) const
 
void ProjectVectorFieldOn (GridFunction &vec_field, int comp=0)
 
void GetDerivative (int comp, int der_comp, GridFunction &der)
 
double GetDivergence (ElementTransformation &tr) const
 
void GetCurl (ElementTransformation &tr, Vector &curl) const
 
void GetGradient (ElementTransformation &tr, Vector &grad) const
 
void GetGradients (const int elem, const IntegrationRule &ir, DenseMatrix &grad) const
 
void GetVectorGradient (ElementTransformation &tr, DenseMatrix &grad) const
 
void GetElementAverages (GridFunction &avgs) const
 
void ImposeBounds (int i, const Vector &weights, const Vector &_lo, const Vector &_hi)
 
void ImposeBounds (int i, const Vector &weights, double _min=0.0, double _max=infinity())
 
void ProjectGridFunction (const GridFunction &src)
 Project the src GridFunction to this GridFunction, both of which must be on the same mesh. More...
 
void ProjectCoefficient (Coefficient &coeff, Array< int > &dofs, int vd=0)
 
void ProjectCoefficient (VectorCoefficient &vcoeff)
 
void ProjectCoefficient (VectorCoefficient &vcoeff, Array< int > &dofs)
 
void ProjectCoefficient (Coefficient *coeff[])
 
void ProjectBdrCoefficient (Coefficient &coeff, Array< int > &attr)
 
void ProjectBdrCoefficient (Coefficient *coeff[], Array< int > &attr)
 
void ProjectBdrCoefficientNormal (VectorCoefficient &vcoeff, Array< int > &bdr_attr)
 
void ProjectBdrCoefficientTangent (VectorCoefficient &vcoeff, Array< int > &bdr_attr)
 
virtual double ComputeH1Error (Coefficient *exsol, VectorCoefficient *exgrad, Coefficient *ell_coef, double Nu, int norm_type) const
 
virtual double ComputeW11Error (Coefficient *exsol, VectorCoefficient *exgrad, int norm_type, Array< int > *elems=NULL, const IntegrationRule *irs[]=NULL) const
 
GridFunctionoperator= (double value)
 Redefine '=' for GridFunction = constant. More...
 
GridFunctionoperator= (const Vector &v)
 Copy the data from v. More...
 
GridFunctionoperator= (const GridFunction &v)
 Copy the data from v. More...
 
FiniteElementSpaceFESpace ()
 
const FiniteElementSpaceFESpace () const
 
void MakeTRef (FiniteElementSpace *f, double *tv)
 Associate a new FiniteElementSpace and new true-dof data with the GridFunction. More...
 
void MakeTRef (FiniteElementSpace *f, Vector &tv, int tv_offset)
 Associate a new FiniteElementSpace and new true-dof data with the GridFunction. More...
 
void SaveVTK (std::ostream &out, const std::string &field_name, int ref)
 
void SaveSTL (std::ostream &out, int TimesToRefine=1)
 
virtual ~GridFunction ()
 Destroys grid function. More...
 
- Public Member Functions inherited from mfem::Vector
 Vector ()
 Default constructor for Vector. Sets size = 0 and data = NULL. More...
 
 Vector (const Vector &)
 Copy constructor. Allocates a new data array and copies the data. More...
 
 Vector (int s)
 Creates vector of size s. More...
 
 Vector (double *_data, int _size)
 Creates a vector referencing an array of doubles, owned by someone else. More...
 
void Load (std::istream **in, int np, int *dim)
 Reads a vector from multiple files. More...
 
void Load (std::istream &in, int Size)
 Load a vector from an input stream. More...
 
void Load (std::istream &in)
 Load a vector from an input stream, reading the size from the stream. More...
 
void SetSize (int s)
 Resize the vector to size s. More...
 
void SetData (double *d)
 
void SetDataAndSize (double *d, int s)
 Set the Vector data and size. More...
 
void NewDataAndSize (double *d, int s)
 Set the Vector data and size, deleting the old data, if owned. More...
 
void MakeDataOwner ()
 
void Destroy ()
 Destroy a vector. More...
 
int Size () const
 Returns the size of the vector. More...
 
int Capacity () const
 Return the size of the currently allocated data array. More...
 
double * GetData () const
 Return a pointer to the beginning of the Vector data. More...
 
 operator double * ()
 Conversion to double *. More...
 
 operator const double * () const
 Conversion to const double *. More...
 
bool OwnsData () const
 
void StealData (double **p)
 Changes the ownership of the data; after the call the Vector is empty. More...
 
double * StealData ()
 Changes the ownership of the data; after the call the Vector is empty. More...
 
double & Elem (int i)
 Access Vector entries. Index i = 0 .. size-1. More...
 
const double & Elem (int i) const
 Read only access to Vector entries. Index i = 0 .. size-1. More...
 
double & operator() (int i)
 Access Vector entries using () for 0-based indexing. More...
 
const double & operator() (int i) const
 Read only access to Vector entries using () for 0-based indexing. More...
 
double operator* (const double *) const
 Dot product with a double * array. More...
 
double operator* (const Vector &v) const
 Return the inner-product. More...
 
Vectoroperator= (const double *v)
 Copy Size() entries from v. More...
 
Vectoroperator= (const Vector &v)
 Redefine '=' for vector = vector. More...
 
Vectoroperator= (double value)
 Redefine '=' for vector = constant. More...
 
Vectoroperator*= (double c)
 
Vectoroperator/= (double c)
 
Vectoroperator-= (double c)
 
Vectoroperator-= (const Vector &v)
 
Vectoroperator+= (const Vector &v)
 
VectorAdd (const double a, const Vector &Va)
 (*this) += a * Va More...
 
VectorSet (const double a, const Vector &x)
 (*this) = a * x More...
 
void SetVector (const Vector &v, int offset)
 
void Neg ()
 (*this) = -(*this) More...
 
void Swap (Vector &other)
 Swap the contents of two Vectors. More...
 
void median (const Vector &lo, const Vector &hi)
 v = median(v,lo,hi) entrywise. Implementation assumes lo <= hi. More...
 
void GetSubVector (const Array< int > &dofs, Vector &elemvect) const
 
void GetSubVector (const Array< int > &dofs, double *elem_data) const
 
void SetSubVector (const Array< int > &dofs, const double value)
 Set the entries listed in dofs to the given value. More...
 
void SetSubVector (const Array< int > &dofs, const Vector &elemvect)
 
void SetSubVector (const Array< int > &dofs, double *elem_data)
 
void AddElementVector (const Array< int > &dofs, const Vector &elemvect)
 Add (element) subvector to the vector. More...
 
void AddElementVector (const Array< int > &dofs, double *elem_data)
 
void AddElementVector (const Array< int > &dofs, const double a, const Vector &elemvect)
 
void SetSubVectorComplement (const Array< int > &dofs, const double val)
 Set all vector entries NOT in the 'dofs' array to the given 'val'. More...
 
void Print (std::ostream &out=mfem::out, int width=8) const
 Prints vector to stream out. More...
 
void Print_HYPRE (std::ostream &out) const
 Prints vector to stream out in HYPRE_Vector format. More...
 
void Randomize (int seed=0)
 Set random values in the vector. More...
 
double Norml2 () const
 Returns the l2 norm of the vector. More...
 
double Normlinf () const
 Returns the l_infinity norm of the vector. More...
 
double Norml1 () const
 Returns the l_1 norm of the vector. More...
 
double Normlp (double p) const
 Returns the l_p norm of the vector. More...
 
double Max () const
 Returns the maximal element of the vector. More...
 
double Min () const
 Returns the minimal element of the vector. More...
 
double Sum () const
 Return the sum of the vector entries. More...
 
double DistanceSquaredTo (const double *p) const
 Compute the square of the Euclidean distance to another vector. More...
 
double DistanceTo (const double *p) const
 Compute the Euclidean distance to another vector. More...
 
int CheckFinite () const
 
virtual ~Vector ()
 Destroys vector. More...
 
 Vector (N_Vector nv)
 Construct a wrapper Vector from SUNDIALS N_Vector. More...
 
virtual N_Vector ToNVector ()
 Return a new wrapper SUNDIALS N_Vector of type SUNDIALS_NVEC_SERIAL. More...
 
virtual void ToNVector (N_Vector &nv)
 Update an existing wrapper SUNDIALS N_Vector to point to this Vector. More...
 

Protected Attributes

ParFiniteElementSpacepfes
 
Vector face_nbr_data
 
- Protected Attributes inherited from mfem::GridFunction
FiniteElementSpacefes
 FE space on which grid function lives. More...
 
FiniteElementCollectionfec
 Used when the grid function is read from a file. More...
 
long sequence
 
Vector t_vec
 
- Protected Attributes inherited from mfem::Vector
int size
 
int allocsize
 
double * data
 

Additional Inherited Members

- Public Types inherited from mfem::GridFunction
enum  AvgType { ARITHMETIC, HARMONIC }
 
- Protected Member Functions inherited from mfem::GridFunction
void SaveSTLTri (std::ostream &out, double p1[], double p2[], double p3[])
 
void GetVectorGradientHat (ElementTransformation &T, DenseMatrix &gh) const
 
void ProjectDeltaCoefficient (DeltaCoefficient &delta_coeff, double &integral)
 
void SumFluxAndCount (BilinearFormIntegrator &blfi, GridFunction &flux, Array< int > &counts, int wcoef, int subdomain)
 
void ProjectDiscCoefficient (VectorCoefficient &coeff, Array< int > &dof_attr)
 
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. More...
 
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. More...
 
void ComputeMeans (AvgType type, Array< int > &zones_per_vdof)
 

Detailed Description

Class for parallel grid function.

Definition at line 32 of file pgridfunc.hpp.

Constructor & Destructor Documentation

mfem::ParGridFunction::ParGridFunction ( )
inline

Definition at line 40 of file pgridfunc.hpp.

mfem::ParGridFunction::ParGridFunction ( ParFiniteElementSpace pf)
inline

Definition at line 42 of file pgridfunc.hpp.

mfem::ParGridFunction::ParGridFunction ( ParFiniteElementSpace pf,
double *  data 
)
inline

Construct a ParGridFunction using previously allocated array data.

The ParGridFunction does not assume ownership of data which is assumed to be of size at least pf->GetVSize(). Similar to the GridFunction and Vector constructors for externally allocated array, the pointer data can be NULL. The data array can be replaced later using the method SetData().

Definition at line 51 of file pgridfunc.hpp.

mfem::ParGridFunction::ParGridFunction ( ParFiniteElementSpace pf,
GridFunction gf 
)

Construct a ParGridFunction using a GridFunction as external data.

The parallel space *pf and the space used by *gf should match. The data from *gf is used as the local data of the ParGridFunction on each processor. The ParGridFunction does not assume ownership of the data.

Definition at line 24 of file pgridfunc.cpp.

mfem::ParGridFunction::ParGridFunction ( ParFiniteElementSpace pf,
HypreParVector tv 
)

Creates grid function on (all) dofs from a given vector on the true dofs, i.e. P tv.

Definition at line 30 of file pgridfunc.cpp.

mfem::ParGridFunction::ParGridFunction ( ParMesh pmesh,
const GridFunction gf,
const int *  partitioning = NULL 
)

Construct a local ParGridFunction from the given global GridFunction. If partitioning is NULL (default), the data from gf is NOT copied.

Definition at line 36 of file pgridfunc.cpp.

mfem::ParGridFunction::ParGridFunction ( ParMesh pmesh,
std::istream &  input 
)

Construct a ParGridFunction on a given ParMesh, pmesh, reading from an std::istream.

In the process, a ParFiniteElementSpace and a FiniteElementCollection are constructed. The new ParGridFunction assumes ownership of both.

Definition at line 70 of file pgridfunc.cpp.

virtual mfem::ParGridFunction::~ParGridFunction ( )
inlinevirtual

Definition at line 286 of file pgridfunc.hpp.

Member Function Documentation

void mfem::ParGridFunction::AddDistribute ( double  a,
const Vector tv 
)

Definition at line 136 of file pgridfunc.cpp.

void mfem::ParGridFunction::AddDistribute ( double  a,
const Vector tv 
)
inline

Definition at line 136 of file pgridfunc.hpp.

void mfem::ParGridFunction::ComputeFlux ( BilinearFormIntegrator blfi,
GridFunction flux,
int  wcoef = 1,
int  subdomain = -1 
)
virtual

Reimplemented from mfem::GridFunction.

Definition at line 581 of file pgridfunc.cpp.

virtual double mfem::ParGridFunction::ComputeL1Error ( Coefficient exsol[],
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Definition at line 200 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeL1Error ( Coefficient exsol,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 207 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeL1Error ( VectorCoefficient exsol,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 211 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeL2Error ( Coefficient exsol[],
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 215 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeL2Error ( Coefficient exsol,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 222 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeL2Error ( VectorCoefficient exsol,
const IntegrationRule irs[] = NULL,
Array< int > *  elems = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 226 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeLpError ( const double  p,
Coefficient exsol,
Coefficient weight = NULL,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 254 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeLpError ( const double  p,
VectorCoefficient exsol,
Coefficient weight = NULL,
VectorCoefficient v_weight = NULL,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

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.

Reimplemented from mfem::GridFunction.

Definition at line 265 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeMaxError ( Coefficient exsol[],
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 234 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeMaxError ( Coefficient exsol,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 242 of file pgridfunc.hpp.

virtual double mfem::ParGridFunction::ComputeMaxError ( VectorCoefficient exsol,
const IntegrationRule irs[] = NULL 
) const
inlinevirtual

Reimplemented from mfem::GridFunction.

Definition at line 248 of file pgridfunc.hpp.

void mfem::ParGridFunction::Distribute ( const Vector tv)

Set the grid function on (all) dofs from a given vector on the true dofs, i.e. P tv.

Definition at line 131 of file pgridfunc.cpp.

void mfem::ParGridFunction::Distribute ( const Vector tv)
inline

Definition at line 134 of file pgridfunc.hpp.

void mfem::ParGridFunction::ExchangeFaceNbrData ( )

Definition at line 201 of file pgridfunc.cpp.

Vector& mfem::ParGridFunction::FaceNbrData ( )
inline

Definition at line 178 of file pgridfunc.hpp.

const Vector& mfem::ParGridFunction::FaceNbrData ( ) const
inline

Definition at line 179 of file pgridfunc.hpp.

HypreParVector * mfem::ParGridFunction::GetTrueDofs ( ) const

Returns the true dofs in a new HypreParVector.

Definition at line 141 of file pgridfunc.cpp.

double mfem::ParGridFunction::GetValue ( int  i,
const IntegrationPoint ip,
int  vdim = 1 
) const
virtual

Reimplemented from mfem::GridFunction.

Definition at line 252 of file pgridfunc.cpp.

double mfem::ParGridFunction::GetValue ( ElementTransformation T)
inline

Definition at line 184 of file pgridfunc.hpp.

void mfem::ParGridFunction::MakeRef ( FiniteElementSpace f,
double *  v 
)
virtual

Make the ParGridFunction reference external data on a new FiniteElementSpace.

This method changes the FiniteElementSpace associated with the ParGridFunction and sets the pointer v as external data in the ParGridFunction. The new space f is expected to be a ParFiniteElementSpace.

Reimplemented from mfem::GridFunction.

Definition at line 101 of file pgridfunc.cpp.

void mfem::ParGridFunction::MakeRef ( ParFiniteElementSpace f,
double *  v 
)

Make the ParGridFunction reference external data on a new ParFiniteElementSpace.

This method changes the ParFiniteElementSpace associated with the ParGridFunction and sets the pointer v as external data in the ParGridFunction.

Definition at line 109 of file pgridfunc.cpp.

void mfem::ParGridFunction::MakeRef ( FiniteElementSpace f,
Vector v,
int  v_offset 
)
virtual

Make the ParGridFunction reference external data on a new FiniteElementSpace.

This method changes the FiniteElementSpace associated with the ParGridFunction and sets the data of the Vector v (plus the v_offset) as external data in the ParGridFunction. The new space f is expected to be a ParFiniteElementSpace.

Note
This version of the method will also perform bounds checks when the build option MFEM_DEBUG is enabled.

Reimplemented from mfem::GridFunction.

Definition at line 116 of file pgridfunc.cpp.

void mfem::ParGridFunction::MakeRef ( ParFiniteElementSpace f,
Vector v,
int  v_offset 
)

Make the ParGridFunction reference external data on a new ParFiniteElementSpace.

This method changes the ParFiniteElementSpace associated with the ParGridFunction and sets the data of the Vector v (plus the v_offset) as external data in the ParGridFunction.

Note
This version of the method will also perform bounds checks when the build option MFEM_DEBUG is enabled.

Definition at line 124 of file pgridfunc.cpp.

ParGridFunction& mfem::ParGridFunction::operator= ( double  value)
inline

Assign constant values to the ParGridFunction data.

Definition at line 78 of file pgridfunc.hpp.

ParGridFunction& mfem::ParGridFunction::operator= ( const Vector v)
inline

Copy the data from a Vector to the ParGridFunction data.

Definition at line 82 of file pgridfunc.hpp.

ParGridFunction& mfem::ParGridFunction::operator= ( const HypreParVector tv)
inline

Short semantic for Distribute.

Definition at line 142 of file pgridfunc.hpp.

void mfem::ParGridFunction::ParallelAssemble ( Vector tv) const

Returns the vector assembled on the true dofs.

Definition at line 184 of file pgridfunc.cpp.

void mfem::ParGridFunction::ParallelAssemble ( HypreParVector tv) const

Returns the vector assembled on the true dofs.

Definition at line 189 of file pgridfunc.cpp.

HypreParVector * mfem::ParGridFunction::ParallelAssemble ( ) const

Returns a new vector assembled on the true dofs.

Definition at line 194 of file pgridfunc.cpp.

void mfem::ParGridFunction::ParallelAverage ( Vector tv) const

Returns the vector averaged on the true dofs.

Definition at line 148 of file pgridfunc.cpp.

void mfem::ParGridFunction::ParallelAverage ( HypreParVector tv) const

Returns the vector averaged on the true dofs.

Definition at line 154 of file pgridfunc.cpp.

HypreParVector * mfem::ParGridFunction::ParallelAverage ( ) const

Returns a new vector averaged on the true dofs.

Definition at line 160 of file pgridfunc.cpp.

void mfem::ParGridFunction::ParallelProject ( Vector tv) const

Returns the vector restricted to the true dofs.

Definition at line 167 of file pgridfunc.cpp.

void mfem::ParGridFunction::ParallelProject ( HypreParVector tv) const

Returns the vector restricted to the true dofs.

Definition at line 172 of file pgridfunc.cpp.

HypreParVector * mfem::ParGridFunction::ParallelProject ( ) const

Returns a new vector restricted to the true dofs.

Definition at line 177 of file pgridfunc.cpp.

ParFiniteElementSpace* mfem::ParGridFunction::ParFESpace ( ) const
inline

Definition at line 85 of file pgridfunc.hpp.

void mfem::ParGridFunction::ProjectCoefficient ( Coefficient coeff)
virtual

Reimplemented from mfem::GridFunction.

Definition at line 290 of file pgridfunc.cpp.

void mfem::ParGridFunction::ProjectDiscCoefficient ( VectorCoefficient coeff)
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 from mfem::GridFunction.

Definition at line 311 of file pgridfunc.cpp.

void mfem::ParGridFunction::ProjectDiscCoefficient ( Coefficient coeff,
AvgType  type 
)
virtual

Projects a discontinuous coefficient so that the values in shared vdofs are computed by taking an average of the possible values.

Reimplemented from mfem::GridFunction.

Definition at line 355 of file pgridfunc.cpp.

void mfem::ParGridFunction::ProjectDiscCoefficient ( VectorCoefficient coeff,
AvgType  type 
)
virtual

Projects a discontinuous vector coefficient so that the values in shared vdofs are computed by taking an average of the possible values.

Reimplemented from mfem::GridFunction.

Definition at line 376 of file pgridfunc.cpp.

void mfem::ParGridFunction::Save ( std::ostream &  out) const
virtual

Save the local portion of the ParGridFunction. It differs from the serial GridFunction::Save in that it takes into account the signs of the local dofs.

Reimplemented from mfem::GridFunction.

Definition at line 398 of file pgridfunc.cpp.

void mfem::ParGridFunction::SaveAsOne ( std::ostream &  out = mfem::out)

Merge the local grid functions.

Definition at line 413 of file pgridfunc.cpp.

virtual void mfem::ParGridFunction::SetFromTrueDofs ( const Vector tv)
inlinevirtual

Set the GridFunction from the given true-dof vector.

Reimplemented from mfem::GridFunction.

Definition at line 139 of file pgridfunc.hpp.

void mfem::ParGridFunction::SetSpace ( FiniteElementSpace f)
virtual

Associate a new FiniteElementSpace with the ParGridFunction.

The ParGridFunction is resized using the SetSize() method. The new space f is expected to be a ParFiniteElementSpace.

Reimplemented from mfem::GridFunction.

Definition at line 86 of file pgridfunc.cpp.

void mfem::ParGridFunction::SetSpace ( ParFiniteElementSpace f)

Associate a new parallel space with the ParGridFunction.

Definition at line 94 of file pgridfunc.cpp.

void mfem::ParGridFunction::Update ( )
virtual

Transform by the Space UpdateMatrix (e.g., on Mesh change).

Reimplemented from mfem::GridFunction.

Definition at line 80 of file pgridfunc.cpp.

Member Data Documentation

Vector mfem::ParGridFunction::face_nbr_data
protected

Definition at line 37 of file pgridfunc.hpp.

ParFiniteElementSpace* mfem::ParGridFunction::pfes
protected

Definition at line 35 of file pgridfunc.hpp.


The documentation for this class was generated from the following files: