45 int main(
int argc,
char *argv[])
48 const char *mesh_file =
"../data/star.mesh";
50 bool static_cond =
false;
51 bool visualization = 1;
54 args.
AddOption(&mesh_file,
"-m",
"--mesh",
57 "Finite element order (polynomial degree) or -1 for"
58 " isoparametric space.");
59 args.
AddOption(&static_cond,
"-sc",
"--static-condensation",
"-no-sc",
60 "--no-static-condensation",
"Enable static condensation.");
61 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
63 "Enable or disable GLVis visualization.");
75 Mesh *mesh =
new Mesh(mesh_file, 1, 1);
84 (int)floor(log(50000./mesh->
GetNE())/log(2.)/
dim);
85 for (
int l = 0; l < ref_levels; l++)
102 cout <<
"Using isoparametric FEs: " << fec->
Name() << endl;
109 cout <<
"Number of finite element unknowns: "
155 cout <<
"Size of linear system: " << A.
Height() << endl;
157 #ifndef MFEM_USE_SUITESPARSE
161 PCG(A, M, B, X, 1, 200, 1e-12, 0.0);
165 umf_solver.
Control[UMFPACK_ORDERING] = UMFPACK_ORDERING_METIS;
167 umf_solver.
Mult(B, X);
175 ofstream mesh_ofs(
"refined.mesh");
176 mesh_ofs.precision(8);
177 mesh->
Print(mesh_ofs);
178 ofstream sol_ofs(
"sol.gf");
179 sol_ofs.precision(8);
185 char vishost[] =
"localhost";
188 sol_sock.precision(8);
189 sol_sock <<
"solution\n" << *mesh << x << flush;
196 if (order > 0) {
delete fec; }
int Size() const
Logical size of the array.
Class for domain integration L(v) := (f, v)
Class for grid function - Vector with associated FE space.
Subclass constant coefficient.
virtual void GetEssentialTrueDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_tdof_list)
int GetNE() const
Returns number of elements.
int main(int argc, char *argv[])
Data type for Gauss-Seidel smoother of sparse matrix.
Direct sparse solver using UMFPACK.
virtual void Save(std::ostream &out) const
Save the GridFunction to an output stream.
int Height() const
Get the height (size of output) of the Operator. Synonym with NumRows.
void UniformRefinement(int i, const DSTable &, int *, int *, int *)
void PCG(const Operator &A, Solver &B, const Vector &b, Vector &x, int print_iter, int max_num_iter, double RTOLERANCE, double ATOLERANCE)
Preconditioned conjugate gradient method. (tolerances are squared)
void PrintUsage(std::ostream &out) const
virtual void Print(std::ostream &out=std::cout) const
Print the mesh to the given stream using the default MFEM mesh format.
Array< int > bdr_attributes
double Control[UMFPACK_CONTROL]
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)
virtual int GetTrueVSize()
Return the number of vector true (conforming) dofs.
virtual const char * Name() const
void PrintOptions(std::ostream &out) const
void GetNodes(Vector &node_coord) const
Arbitrary order H1-conforming (continuous) finite elements.
virtual void Mult(const Vector &b, Vector &x) const
Operator application.
virtual void SetOperator(const Operator &op)
Set/update the solver for the given operator.