53inline bool operator==(
const Data& d1,
const Data& d2) {
return (d1.x == d2.x); }
54inline bool operator <(
const Data& d1,
const Data& d2) {
return (d1.x < d2.x); }
61#ifndef MFEM_THREAD_SAFE
68 Diffusion2Integrator() { Q = NULL; }
83#ifdef MFEM_THREAD_SAFE
127 w *= Q->
Eval(Trans, ip);
130 for (
int jj = 0; jj < nd; jj++)
132 for (
int ii = 0; ii < nd; ii++)
134 elmat(ii, jj) += w*shape(ii)*laplace(jj);
142int main(
int argc,
char *argv[])
145 const char *mesh_file =
"../../data/star.mesh";
146 const char *per_file =
"none";
147 const char *ref_file =
"";
152 bool static_cond =
false;
153 bool visualization = 1;
163 args.
AddOption(&mesh_file,
"-m",
"--mesh",
164 "Mesh file to use.");
165 args.
AddOption(&ref_levels,
"-r",
"--refine",
166 "Number of times to refine the mesh uniformly, -1 for auto.");
168 "Periodic BCS file.");
169 args.
AddOption(&ref_file,
"-rf",
"--ref-file",
170 "File with refinement data");
171 args.
AddOption(&master,
"-pm",
"--master",
172 "Master boundaries for periodic BCs");
174 "Slave boundaries for periodic BCs");
176 "Boundaries with Neumann BCs");
178 "Finite element order (polynomial degree) or -1 for"
179 " isoparametric space.");
180 args.
AddOption(&ibp,
"-ibp",
"--ibp",
"-no-ibp",
182 "Selects the standard weak form (IBP) or the nonstandard (NO-IBP).");
183 args.
AddOption(&strongBC,
"-sbc",
"--strong-bc",
"-wbc",
185 "Selects strong or weak enforcement of Dirichlet BCs.");
187 "Sets the SIPG penalty parameters, should be positive."
188 " Negative values are replaced with (order+1)^2.");
189 args.
AddOption(&static_cond,
"-sc",
"--static-condensation",
"-no-sc",
190 "--no-static-condensation",
"Enable static condensation.");
191 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
192 "--no-visualization",
193 "Enable or disable GLVis visualization.");
194 args.
AddOption(&lod,
"-lod",
"--level-of-detail",
195 "Refinement level for 1D solution output (0 means no output).");
196 args.
AddOption(&visport,
"-p",
"--send-port",
"Socket for GLVis.");
203 if (!strongBC & (
kappa < 0))
212 Mesh *mesh =
new Mesh(mesh_file, 1, 1);
221 if (mesh->
NURBSext && (strlen(ref_file) != 0))
229 (int)floor(log(5000./mesh->
GetNE())/log(2.)/
dim);
232 for (
int l = 0; l < ref_levels; l++)
252 if (order.
Size() == 1)
259 if (order.
Size() != nkv ) {
mfem_error(
"Wrong number of orders set."); }
264 in.open(per_file, std::ifstream::in);
271 master.
Load(in, psize);
272 slave.
Load(in, psize);
277 else if (order[0] == -1)
283 cout <<
"Using isoparametric FEs: " << fec->
Name() << endl;
287 cout <<
"Mesh does not have FEs --> Assume order 1.\n";
294 if (order.
Size() > 1) { cout <<
"Wrong number of orders set, needs one.\n"; }
300 cout <<
"Number of finite element unknowns: "
307 cout <<
"No integration by parts requires a NURBS mesh."<< endl;
312 cout <<
"No integration by parts requires a NURBS mesh, with only 1 patch."<<
314 cout <<
"A C_1 discretisation is required."<< endl;
315 cout <<
"Currently only C_0 multipatch coupling implemented."<< endl;
320 cout <<
"No integration by parts requires at least quadratic NURBS."<< endl;
321 cout <<
"A C_1 discretisation is required."<< endl;
344 for (
int i = 0; i < neu.
Size(); i++)
346 if ( neu[i]-1 >= 0 &&
349 ess_bdr[neu[i]-1] = 0;
350 neu_bdr[neu[i]-1] = 1;
354 cout <<
"Neumann boundary "<<neu[i]<<
" out of range -- discarded"<< endl;
359 for (
int i = 0; i < master.
Size(); i++)
361 if ( master[i]-1 >= 0 &&
364 ess_bdr[master[i]-1] = 0;
365 neu_bdr[master[i]-1] = 0;
366 per_bdr[master[i]-1] = 1;
370 cout <<
"Master boundary "<<master[i]<<
" out of range -- discarded"<< endl;
373 for (
int i = 0; i < slave.
Size(); i++)
375 if ( slave[i]-1 >= 0 &&
378 ess_bdr[slave[i]-1] = 0;
379 neu_bdr[slave[i]-1] = 0;
380 per_bdr[slave[i]-1] = 1;
384 cout <<
"Slave boundary "<<slave[i]<<
" out of range -- discarded"<< endl;
388 cout <<
"Boundary conditions:"<< endl;
389 cout <<
" - Periodic : "; per_bdr.
Print();
390 cout <<
" - Essential : "; ess_bdr.
Print();
391 cout <<
" - Neumann : "; neu_bdr.
Print();
405 b->AddBdrFaceIntegrator(
426 a->AddDomainIntegrator(
new Diffusion2Integrator(one));
439 if (static_cond) {
a->EnableStaticCondensation(); }
449 a->FormLinearSystem(ess_tdof_list, x, *
b, A, X, B);
451 cout <<
"Size of linear system: " << A.
Height() << endl;
453#ifndef MFEM_USE_SUITESPARSE
457 PCG(A, M, B, X, 1, 200, 1e-12, 0.0);
461 umf_solver.
Control[UMFPACK_ORDERING] = UMFPACK_ORDERING_METIS;
463 umf_solver.
Mult(B, X);
467 a->RecoverFEMSolution(X, *
b, x);
472 ofstream mesh_ofs(
"refined.mesh");
473 mesh_ofs.precision(8);
474 mesh->
Print(mesh_ofs);
475 ofstream sol_ofs(
"sol.gf");
476 sol_ofs.precision(8);
486 sol_sock.precision(8);
487 sol_sock <<
"solution\n" << *mesh << x << flush;
502 for (
int i = 0; i < mesh->
GetNE(); i++)
511 for (
int j = 0; j < vals.
Size(); j++)
513 sol.push_back(Data(coords[j],vals[j]));
518 ofstream sol_ofs(
"solution.dat");
519 for (std::list<Data>::iterator d = sol.begin(); d != sol.end(); ++d)
521 sol_ofs<<d->x <<
"\t"<<d->val<<endl;
536 if (own_fec) {
delete fec; }
T Max() const
Find the maximal element in the array, using the comparison operator < for class T.
void Load(std::istream &in, int fmt=0)
Read an Array from the stream in using format fmt. The format fmt can be:
void SetSize(int nsize)
Change the logical size of the array, keep existing entries.
int Size() const
Return the logical size of the array.
void Print(std::ostream &out=mfem::out, int width=4) const
Prints array to stream with width elements per row.
Class for boundary integration .
Base class Coefficients that optionally depend on space and time. These are used by the BilinearFormI...
virtual real_t Eval(ElementTransformation &T, const IntegrationPoint &ip)=0
Evaluate the coefficient in the element described by T at the point ip.
A coefficient that is constant across space and time.
Data type dense matrix using column-major storage.
void SetSize(int s)
Change the size of the DenseMatrix to s x s.
Class for domain integration .
Collection of finite elements from the same family in multiple dimensions. This class is used to matc...
virtual const char * Name() const
Class FiniteElementSpace - responsible for providing FEM view of the mesh, mainly managing the set of...
virtual int GetTrueVSize() const
Return the number of vector true (conforming) dofs.
virtual void GetEssentialTrueDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_tdof_list, int component=-1) const
Get a list of essential true dofs, ess_tdof_list, corresponding to the boundary attributes marked in ...
Abstract class for all finite elements.
int GetOrder() const
Returns the order of the finite element. In the case of anisotropic orders, returns the maximum order...
int GetDim() const
Returns the reference space dimension for the finite element.
Geometry::Type GetGeomType() const
Returns the Geometry::Type of the reference element.
int Space() const
Returns the type of FunctionSpace on the element.
void CalcPhysLaplacian(ElementTransformation &Trans, Vector &Laplacian) const
Evaluate the Laplacian of all shape functions of a scalar finite element in physical space at the giv...
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...
int GetDof() const
Returns the number of degrees of freedom in the finite element.
@ Pk
Polynomials of order k.
@ rQk
Refined tensor products of polynomials of order k.
Data type for Gauss-Seidel smoother of sparse matrix.
RefinedGeometry * Refine(Geometry::Type Geom, int Times, int ETimes=1)
Class for grid function - Vector with associated FE space.
void GetValues(int i, const IntegrationRule &ir, Vector &vals, int vdim=1) const
virtual void Save(std::ostream &out) const
Save the GridFunction to an output stream.
Arbitrary order H1-conforming (continuous) finite elements.
Class for integration point with weight.
Class for an integration rule - an Array of IntegrationPoint.
int GetNPoints() const
Returns the number of the points in the integration rule.
IntegrationPoint & IntPoint(int i)
Returns a reference to the i-th integration point.
const IntegrationRule & Get(int GeomType, int Order)
Returns an integration rule for given GeomType and Order.
const IntegrationRule * IntRule
Array< int > bdr_attributes
A list of all unique boundary attributes used by the Mesh.
NURBSExtension * NURBSext
Optional NURBS mesh extension.
void RefineNURBSFromFile(std::string ref_file)
virtual void Print(std::ostream &os=mfem::out, const std::string &comments="") const
int GetNE() const
Returns number of elements.
int Dimension() const
Dimension of the reference space used within the elements.
void GetNodes(Vector &node_coord) const
virtual void PrintInfo(std::ostream &os=mfem::out)
In serial, this method calls PrintCharacteristics(). In parallel, additional information about the pa...
void UniformRefinement(int i, const DSTable &, int *, int *, int *)
Geometry::Type GetElementBaseGeometry(int i) const
NURBSExtension generally contains multiple NURBSPatch objects spanning an entire Mesh....
int GetNP() const
Return the number of patches.
int GetNKV() const
Return the number of KnotVectors.
void ConnectBoundaries()
Set DOF maps for periodic BC.
Arbitrary order non-uniform rational B-splines (NURBS) finite elements.
int Height() const
Get the height (size of output) of the Operator. Synonym with NumRows().
void Parse()
Parse the command-line options. Note that this function expects all the options provided through the ...
void PrintUsage(std::ostream &out) const
Print the usage message.
void PrintOptions(std::ostream &out) const
Print the options.
void AddOption(bool *var, const char *enable_short_name, const char *enable_long_name, const char *disable_short_name, const char *disable_long_name, const char *description, bool required=false)
Add a boolean option and set 'var' to receive the value. Enable/disable tags are used to set the bool...
bool Good() const
Return true if the command line options were parsed successfully.
Direct sparse solver using UMFPACK.
real_t Control[UMFPACK_CONTROL]
void SetOperator(const Operator &op) override
Factorize the given Operator op which must be a SparseMatrix.
void Mult(const Vector &b, Vector &x) const override
Direct solution of the linear system using UMFPACK.
int Size() const
Returns the size of the vector.
void SetSize(int s)
Resize the vector to size s.
Data collection with VisIt I/O routines.
void Save() override
Save the collection and a VisIt root file.
void RegisterField(const std::string &field_name, GridFunction *gf) override
Add a grid function to the collection and update the root file.
void mfem_error(const char *msg)
GeometryRefiner GlobGeometryRefiner
void PCG(const Operator &A, Solver &B, const Vector &b, Vector &x, int print_iter, int max_num_iter, real_t RTOLERANCE, real_t ATOLERANCE)
Preconditioned conjugate gradient method. (tolerances are squared)
bool operator==(const Array< T > &LHS, const Array< T > &RHS)
IntegrationRules RefinedIntRules(1, Quadrature1D::GaussLegendre)
A global object with all refined integration rules.
bool operator<(const Pair< A, B > &p, const Pair< A, B > &q)
Comparison operator for class Pair, based on the first element only.
IntegrationRules IntRules(0, Quadrature1D::GaussLegendre)
A global object with all integration rules (defined in intrules.cpp)
std::array< int, NCMesh::MaxFaceNodes > nodes