39 int main(
int argc,
char *argv[])
42 const char *mesh_file =
"../data/star.mesh";
44 bool visualization = 1;
47 args.
AddOption(&mesh_file,
"-m",
"--mesh",
50 "Finite element order (polynomial degree) or -1 for"
51 " isoparametric space.");
52 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
54 "Enable or disable GLVis visualization.");
67 ifstream imesh(mesh_file);
70 cerr <<
"\nCan not open mesh file: " << mesh_file <<
'\n' << endl;
73 mesh =
new Mesh(imesh, 1, 1);
83 (int)floor(log(50000./mesh->
GetNE())/log(2.)/dim);
84 for (
int l = 0; l < ref_levels; l++)
99 cout <<
"Number of unknowns: " << fespace->
GetVSize() << endl;
130 #ifndef MFEM_USE_SUITESPARSE
134 PCG(A, M, *b, x, 1, 200, 1e-12, 0.0);
138 umf_solver.
Control[UMFPACK_ORDERING] = UMFPACK_ORDERING_METIS;
140 umf_solver.
Mult(*b, x);
145 ofstream mesh_ofs(
"refined.mesh");
146 mesh_ofs.precision(8);
147 mesh->
Print(mesh_ofs);
148 ofstream sol_ofs(
"sol.gf");
149 sol_ofs.precision(8);
155 char vishost[] =
"localhost";
158 sol_sock.precision(8);
159 sol_sock <<
"solution\n" << *mesh << x << flush;
Class for domain integration L(v) := (f, v)
Class for grid function - Vector with associated FE space.
Subclass constant coefficient.
int GetNE() const
Returns number of elements.
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.
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
int main(int argc, char *argv[])
double Control[UMFPACK_CONTROL]
Abstract finite element space.
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)
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.