12 #include "../config/config.hpp"
37 const int *partitioning)
53 int element_counter = 0;
55 const int glob_ne = glob_fes->
GetNE();
56 for (
int i = 0; i < glob_ne; i++)
58 if (partitioning[i] == MyRank)
91 MFEM_ASSERT(
pfes != NULL,
"not a ParFiniteElementSpace");
106 MFEM_ASSERT(
pfes != NULL,
"not a ParFiniteElementSpace");
121 MFEM_ASSERT(
pfes != NULL,
"not a ParFiniteElementSpace");
223 MPI_Request *requests =
new MPI_Request[2*num_face_nbrs];
224 MPI_Request *send_requests = requests;
225 MPI_Request *recv_requests = requests + num_face_nbrs;
226 MPI_Status *statuses =
new MPI_Status[num_face_nbrs];
228 for (
int i = 0; i < send_data.Size(); i++)
230 send_data[i] =
data[send_ldof[i]];
233 for (
int fn = 0; fn < num_face_nbrs; fn++)
238 MPI_Isend(&send_data(send_offset[fn]),
239 send_offset[fn+1] - send_offset[fn],
240 MPI_DOUBLE, nbr_rank, tag, MyComm, &send_requests[fn]);
243 recv_offset[fn+1] - recv_offset[fn],
244 MPI_DOUBLE, nbr_rank, tag, MyComm, &recv_requests[fn]);
247 MPI_Waitall(num_face_nbrs, send_requests, statuses);
248 MPI_Waitall(num_face_nbrs, recv_requests, statuses);
266 int s = dofs.
Size()/fes_vdim;
289 return (DofVal * LocVec);
302 double loc_integral, glob_integral;
306 MPI_Allreduce(&loc_integral, &glob_integral, 1, MPI_DOUBLE, MPI_SUM,
309 (*this) *= (delta_c->
Scale() / glob_integral);
323 ldof_attr.
Copy(gdof_attr);
326 gcomm.
Bcast(gdof_attr);
332 if (gdof_attr[i] > ldof_attr[i])
346 gcomm.
Bcast(gdof_attr);
349 (*this)(i) /= gdof_attr[i];
369 gcomm.
Bcast(zones_per_vdof);
391 gcomm.
Bcast(zones_per_vdof);
408 for (
int i = 0; i < values.
Size(); i++)
410 values(i) = values_counter[i] ? (*this)(i) : 0.0;
418 for (
int i = 0; i < values.Size(); i++)
420 if (values_counter[i])
422 (*this)(i) = values(i)/values_counter[i];
435 for (
int i = 0; i < values_counter.
Size(); i++)
438 bool(values_counter[i]) == bool(ess_vdofs_marker[i]),
452 for (
int i = 0; i < values.
Size(); i++)
454 values(i) = values_counter[i] ? (*this)(i) : 0.0;
462 for (
int i = 0; i < values.Size(); i++)
464 if (values_counter[i])
466 (*this)(i) = values(i)/values_counter[i];
479 for (
int i = 0; i < values_counter.
Size(); i++)
482 bool(values_counter[i]) == bool(ess_vdofs_marker[i]),
490 double *data_ =
const_cast<double*
>(
HostRead());
491 for (
int i = 0; i <
size; i++)
498 for (
int i = 0; i <
size; i++)
512 MyComm =
pfes -> GetComm();
514 MPI_Comm_size(MyComm, &NRanks);
515 MPI_Comm_rank(MyComm, &MyRank);
517 double **values =
new double*[NRanks];
518 int *nv =
new int[NRanks];
519 int *nvdofs =
new int[NRanks];
520 int *nedofs =
new int[NRanks];
521 int *nfdofs =
new int[NRanks];
522 int *nrdofs =
new int[NRanks];
525 nv[0] =
pfes -> GetVSize();
526 nvdofs[0] =
pfes -> GetNVDofs();
527 nedofs[0] =
pfes -> GetNEDofs();
528 nfdofs[0] =
pfes -> GetNFDofs();
535 for (p = 1; p < NRanks; p++)
537 MPI_Recv(&nv[p], 1, MPI_INT, p, 455, MyComm, &status);
538 MPI_Recv(&nvdofs[p], 1, MPI_INT, p, 456, MyComm, &status);
539 MPI_Recv(&nedofs[p], 1, MPI_INT, p, 457, MyComm, &status);
540 MPI_Recv(&nfdofs[p], 1, MPI_INT, p, 458, MyComm, &status);
541 values[p] =
new double[nv[p]];
542 MPI_Recv(values[p], nv[p], MPI_DOUBLE, p, 460, MyComm, &status);
545 int vdim =
pfes -> GetVDim();
547 for (p = 0; p < NRanks; p++)
549 nrdofs[p] = nv[p]/vdim - nvdofs[p] - nedofs[p] - nfdofs[p];
554 for (
int d = 0; d < vdim; d++)
556 for (p = 0; p < NRanks; p++)
557 for (i = 0; i < nvdofs[p]; i++)
559 out << *values[p]++ <<
'\n';
562 for (p = 0; p < NRanks; p++)
563 for (i = 0; i < nedofs[p]; i++)
565 out << *values[p]++ <<
'\n';
568 for (p = 0; p < NRanks; p++)
569 for (i = 0; i < nfdofs[p]; i++)
571 out << *values[p]++ <<
'\n';
574 for (p = 0; p < NRanks; p++)
575 for (i = 0; i < nrdofs[p]; i++)
577 out << *values[p]++ <<
'\n';
583 for (p = 0; p < NRanks; p++)
584 for (i = 0; i < nvdofs[p]; i++)
585 for (
int d = 0; d < vdim; d++)
587 out << *values[p]++ <<
'\n';
590 for (p = 0; p < NRanks; p++)
591 for (i = 0; i < nedofs[p]; i++)
592 for (
int d = 0; d < vdim; d++)
594 out << *values[p]++ <<
'\n';
597 for (p = 0; p < NRanks; p++)
598 for (i = 0; i < nfdofs[p]; i++)
599 for (
int d = 0; d < vdim; d++)
601 out << *values[p]++ <<
'\n';
604 for (p = 0; p < NRanks; p++)
605 for (i = 0; i < nrdofs[p]; i++)
606 for (
int d = 0; d < vdim; d++)
608 out << *values[p]++ <<
'\n';
612 for (p = 1; p < NRanks; p++)
621 MPI_Send(&nv[0], 1, MPI_INT, 0, 455, MyComm);
622 MPI_Send(&nvdofs[0], 1, MPI_INT, 0, 456, MyComm);
623 MPI_Send(&nedofs[0], 1, MPI_INT, 0, 457, MyComm);
624 MPI_Send(&nfdofs[0], 1, MPI_INT, 0, 458, MyComm);
625 MPI_Send(
data, nv[0], MPI_DOUBLE, 0, 460, MyComm);
645 loc_norm = -pow(-loc_norm, p);
649 loc_norm = pow(loc_norm, p);
652 MPI_Allreduce(&loc_norm, &glob_norm, 1, MPI_DOUBLE, MPI_SUM, comm);
656 glob_norm = -pow(-glob_norm, 1.0/p);
660 glob_norm = pow(glob_norm, 1.0/p);
665 MPI_Allreduce(&loc_norm, &glob_norm, 1, MPI_DOUBLE, MPI_MAX, comm);
678 MFEM_VERIFY(ffes,
"the flux FE space must be ParFiniteElementSpace");
691 for (
int i = 0; i < count.Size(); i++)
693 if (count[i] != 0) { flux(i) /= count[i]; }
714 int norm_p,
double solver_tol,
int solver_max_it)
724 for (
int i = 0; i < xfes->
GetNE(); i++)
731 *flux_fes.
GetFE(i), el_f,
false);
797 double total_error = 0.0;
799 for (
int i = 0; i < xfes->
GetNE(); i++)
802 total_error += pow(errors(i), norm_p);
806 MPI_Allreduce(&total_error, &glob_error, 1, MPI_DOUBLE, MPI_SUM,
809 return pow(glob_error, 1.0/norm_p);
814 #endif // MFEM_USE_MPI
Abstract class for Finite Elements.
int GetNFaceNeighbors() const
Ordering::Type GetOrdering() const
Return the ordering method.
int Size() const
Logical size of the array.
void SetSubVector(const Array< int > &dofs, const double value)
Set the entries listed in dofs to the given value.
void Reduce(T *ldata, void(*Op)(OpData< T >)) const
Reduce within each group where the master is the root.
int GetVSize() const
Return the number of vector dofs, i.e. GetNDofs() x GetVDim().
HypreParVector * NewTrueDofVector()
Class for grid function - Vector with associated FE space.
void Bcast(T *ldata, int layout) const
Broadcast within each group where the master is the root.
void ExchangeFaceNbrData()
HypreParVector * ParallelAssemble() const
Returns a new vector assembled on the true dofs.
virtual void GetEssentialVDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_dofs, int component=-1) const
Determine the boundary degrees of freedom.
void ProjectDeltaCoefficient(DeltaCoefficient &delta_coeff, double &integral)
HypreParVector * ParallelProject() const
Returns a new vector restricted to the true dofs.
virtual const Operator * GetProlongationMatrix() const
The returned Operator is owned by the FiniteElementSpace.
void SetSize(int s)
Resize the vector to size s.
void GetElementVDofs(int i, Array< int > &vdofs) const
Returns indexes of degrees of freedom in array dofs for i'th element.
double Scale()
Return the scale set by SetScale() multiplied by the time-dependent function specified by SetFunction...
void ProjectDiscCoefficient(VectorCoefficient &coeff, Array< int > &dof_attr)
ParFiniteElementSpace * pfes
Points to the same object as fes.
void Copy(Array ©) const
Create a copy of the current array.
void GetSubVector(const Array< int > &dofs, Vector &elemvect) const
void SaveAsOne(std::ostream &out=mfem::out)
Merge the local grid functions.
Delta function coefficient.
int Size() const
Returns the size of the vector.
int GetNE() const
Returns number of elements.
virtual double GetValue(int i, const IntegrationPoint &ip, int vdim=1) const
virtual void Save(std::ostream &out) const
void DivideByGroupSize(double *vec)
Scale a vector of true dofs.
virtual void Mult(const Vector &x, Vector &y) const =0
Operator application: y=A(x).
virtual void ProjectDiscCoefficient(VectorCoefficient &coeff)
Project a discontinuous vector coefficient as a grid function on a continuous finite element space...
virtual void SetSpace(FiniteElementSpace *f)
Associate a new FiniteElementSpace with the ParGridFunction.
void AccumulateAndCountBdrTangentValues(VectorCoefficient &vcoeff, Array< int > &bdr_attr, Array< int > &values_counter)
Abstract parallel finite element space.
virtual void ProjectCoefficient(Coefficient &coeff)
int GetLocalTDofNumber(int ldof) const
void ComputeMeans(AvgType type, Array< int > &zones_per_vdof)
double * GetData() const
Return a pointer to the beginning of the Vector data.
HYPRE_Int Mult(HypreParVector &x, HypreParVector &y, double alpha=1.0, double beta=0.0)
Computes y = alpha * A * x + beta * y.
int Size_of_connections() const
void SetPrintLevel(int print_lvl)
virtual void MultTranspose(const Vector &x, Vector &y) const
Action of the transpose operator: y=A^t(x). The default behavior in class Operator is to generate an ...
void GetFaceNbrElementVDofs(int i, Array< int > &vdofs) const
virtual void MakeRef(FiniteElementSpace *f, double *v)
Make the ParGridFunction reference external data on a new FiniteElementSpace.
virtual void Save(std::ostream &out) const
Save the GridFunction to an output stream.
int GetNE() const
Returns number of elements in the mesh.
const double * HostRead() const
Shortcut for mfem::Read(vec.GetMemory(), vec.Size(), false).
The BoomerAMG solver in hypre.
Communicator performing operations within groups defined by a GroupTopology with arbitrary-size data ...
void SumFluxAndCount(BilinearFormIntegrator &blfi, GridFunction &flux, Array< int > &counts, int wcoef, int subdomain)
const FiniteElement * GetFaceNbrFE(int i) const
void ExchangeFaceNbrData()
static void Sum(OpData< T >)
Reduce operation Sum, instantiated for int and double.
virtual void Update()
Transform by the Space UpdateMatrix (e.g., on Mesh change).
void SetPrintLevel(int print_level)
virtual void CalcShape(const IntegrationPoint &ip, Vector &shape) const =0
Evaluate the values of all shape functions of a scalar finite element in reference space at the given...
HypreParMatrix * Dof_TrueDof_Matrix() const
The true dof-to-dof interpolation matrix.
virtual void GetElementDofs(int i, Array< int > &dofs) const
Returns indexes of degrees of freedom in array dofs for i'th element.
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 ...
virtual void MakeRef(FiniteElementSpace *f, double *v)
Make the GridFunction reference external data on a new FiniteElementSpace.
int GetVDim() const
Returns vector dimension.
FiniteElementSpace * FESpace()
void AddElementVector(const Array< int > &dofs, const Vector &elemvect)
Add (element) subvector to the vector.
void SetMaxIter(int max_iter)
Wrapper for hypre's parallel vector class.
ElementTransformation * GetElementTransformation(int i) const
Returns ElementTransformation for the i-th element.
double GlobalLpNorm(const double p, double loc_norm, MPI_Comm comm)
Compute a global Lp norm from the local Lp norms computed by each processor.
void ProjectBdrCoefficient(Coefficient *coeff[], VectorCoefficient *vcoeff, Array< int > &attr)
Class FiniteElementSpace - responsible for providing FEM view of the mesh, mainly managing the set of...
virtual void Mult(const Vector &x, Vector &y) const
Matrix vector multiplication.
Base class Coefficient that may optionally depend on time.
FiniteElementSpace * fes
FE space on which the grid function lives. Owned if fec is not NULL.
static void Max(OpData< T >)
Reduce operation Max, instantiated for int and double.
GroupCommunicator & GroupComm()
Return a reference to the internal GroupCommunicator (on VDofs)
FiniteElementCollection * fec
Used when the grid function is read from a file. It can also be set explicitly, see MakeOwner()...
double L2ZZErrorEstimator(BilinearFormIntegrator &flux_integrator, const ParGridFunction &x, ParFiniteElementSpace &smooth_flux_fes, ParFiniteElementSpace &flux_fes, Vector &errors, int norm_p, double solver_tol, int solver_max_it)
void Distribute(const Vector *tv)
virtual void Update()
Transform by the Space UpdateMatrix (e.g., on Mesh change).
double ComputeElementLpDistance(double p, int i, GridFunction &gf1, GridFunction &gf2)
Compute the Lp distance between two grid functions on the given element.
bool Nonconforming() const
static FiniteElementCollection * New(const char *name)
Factory method: return a newly allocated FiniteElementCollection according to the given name...
Vector face_nbr_data
Vector used to store data from face-neighbor processors, initialized by ExchangeFaceNbrData().
virtual const char * Name() const
Class for integration point with weight.
virtual const SparseMatrix * GetRestrictionMatrix() const
Get the R matrix which restricts a local dof vector to true dof vector.
virtual void ProjectBdrCoefficientTangent(VectorCoefficient &vcoeff, Array< int > &bdr_attr)
Project the tangential components of the given VectorCoefficient on the boundary. Only boundary attri...
HypreParVector * ParallelAverage() const
Returns a new vector averaged on the true dofs.
void SetPreconditioner(HypreSolver &precond)
Set the hypre solver to be used as a preconditioner.
void Destroy()
Destroy a vector.
const FiniteElement * GetFE(int i) const
Returns pointer to the FiniteElement associated with i'th element.
HypreParVector * GetTrueDofs() const
Returns the true dofs in a new HypreParVector.
void AddDistribute(double a, const Vector *tv)
double infinity()
Define a shortcut for std::numeric_limits<double>::infinity()
virtual void ProjectCoefficient(Coefficient &coeff)
virtual void SetSpace(FiniteElementSpace *f)
Associate a new FiniteElementSpace with the GridFunction.
int GetFaceNbrVSize() const
for VectorFiniteElements (Nedelec, Raviart-Thomas)
const FiniteElementCollection * FEColl() const
For scalar fields; preserves point values.
Vector coefficient defined by a vector GridFunction.
Class for parallel grid function.
OutStream out(std::cout)
Global stream used by the library for standard output. Initially it uses the same std::streambuf as s...
Wrapper for hypre's ParCSR matrix class.
virtual void Mult(const HypreParVector &b, HypreParVector &x) const
Solve Ax=b with hypre's PCG.
Class for parallel meshes.
int GetFaceNbrRank(int fn) const
Integrator for (Q u, v) for VectorFiniteElements.
virtual void ComputeFlux(BilinearFormIntegrator &blfi, GridFunction &flux, int wcoef=1, int subdomain=-1)
void AccumulateAndCountBdrValues(Coefficient *coeff[], VectorCoefficient *vcoeff, Array< int > &attr, Array< int > &values_counter)
void ParallelProject(Vector &tv) const
Returns the vector restricted to the true dofs.
ParFiniteElementSpace * ParFESpace() const
void DofsToVDofs(Array< int > &dofs, int ndofs=-1) const