64 int main(
int argc,
char *argv[])
68 int num_procs = Mpi::WorldSize();
69 int myid = Mpi::WorldRank();
73 const char *mesh_file =
"../data/star.mesh";
75 bool static_cond =
false;
77 const char *device_config =
"cpu";
78 bool visualization =
true;
79 bool algebraic_ceed =
false;
82 args.
AddOption(&mesh_file,
"-m",
"--mesh",
85 "Finite element order (polynomial degree) or -1 for"
86 " isoparametric space.");
87 args.
AddOption(&static_cond,
"-sc",
"--static-condensation",
"-no-sc",
88 "--no-static-condensation",
"Enable static condensation.");
89 args.
AddOption(&pa,
"-pa",
"--partial-assembly",
"-no-pa",
90 "--no-partial-assembly",
"Enable Partial Assembly.");
91 args.
AddOption(&device_config,
"-d",
"--device",
92 "Device configuration string, see Device::Configure().");
94 args.
AddOption(&algebraic_ceed,
"-a",
"--algebraic",
95 "-no-a",
"--no-algebraic",
96 "Use algebraic Ceed solver");
98 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
100 "Enable or disable GLVis visualization.");
117 Device device(device_config);
118 if (myid == 0) { device.
Print(); }
123 Mesh mesh(mesh_file, 1, 1);
133 for (
int l = 0; l < ref_levels; l++)
142 ParMesh pmesh(MPI_COMM_WORLD, mesh);
145 int par_ref_levels = 2;
146 for (
int l = 0; l < par_ref_levels; l++)
168 cout <<
"Using isoparametric FEs: " << fec->
Name() << endl;
180 cout <<
"Number of finite element unknowns: " << size << endl;
237 prec =
new ceed::AlgebraicSolver(a, ess_tdof_list);
265 ostringstream mesh_name, sol_name;
266 mesh_name <<
"mesh." << setfill(
'0') << setw(6) << myid;
267 sol_name <<
"sol." << setfill(
'0') << setw(6) << myid;
269 ofstream mesh_ofs(mesh_name.str().c_str());
270 mesh_ofs.precision(8);
271 pmesh.
Print(mesh_ofs);
273 ofstream sol_ofs(sol_name.str().c_str());
274 sol_ofs.precision(8);
284 sol_sock <<
"parallel " << num_procs <<
" " << myid <<
"\n";
285 sol_sock.precision(8);
286 sol_sock <<
"solution\n" << pmesh << x << flush;
int Size() const
Return the logical size of the array.
Class for domain integration L(v) := (f, v)
virtual void GetEssentialTrueDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_tdof_list, int component=-1)
Conjugate gradient method.
A coefficient that is constant across space and time.
virtual void Mult(const Vector &b, Vector &x) const
Operator application: y=A(x).
Pointer to an Operator of a specified type.
HYPRE_BigInt GlobalTrueVSize() const
int GetNE() const
Returns number of elements.
virtual void Save(std::ostream &out) const
void Print(std::ostream &out=mfem::out)
Print the configuration of the MFEM virtual device object.
Abstract parallel finite element space.
bool UsesTensorBasis(const FiniteElementSpace &fes)
The BoomerAMG solver in hypre.
virtual void SetPrintLevel(int print_lvl)
Legacy method to set the level of verbosity of the solver output.
void Parse()
Parse the command-line options. Note that this function expects all the options provided through the ...
Jacobi smoothing for a given bilinear form (no matrix necessary).
void UniformRefinement(int i, const DSTable &, int *, int *, int *)
void SetMaxIter(int max_it)
T Max() const
Find the maximal element in the array, using the comparison operator < for class T.
void PrintUsage(std::ostream &out) const
Print the usage message.
Array< int > bdr_attributes
A list of all unique boundary attributes used by the Mesh.
void SetRelTol(double rtol)
Collection of finite elements from the same family in multiple dimensions. This class is used to matc...
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...
FDualNumber< tbase > log(const FDualNumber< tbase > &f)
log([dual number])
virtual const char * Name() const
void PrintOptions(std::ostream &out) const
Print the options.
void Clear()
Clear the contents of the Mesh.
virtual void SetOperator(const Operator &op)
Also calls SetOperator for the preconditioner if there is one.
void GetNodes(Vector &node_coord) const
virtual void SetPreconditioner(Solver &pr)
This should be called before SetOperator.
Arbitrary order H1-conforming (continuous) finite elements.
void Print(std::ostream &out=mfem::out) const override
Class for parallel grid function.
The MFEM Device class abstracts hardware devices such as GPUs, as well as programming models such as ...
Class for parallel meshes.
bool Good() const
Return true if the command line options were parsed successfully.