48 int main(
int argc,
char *argv[])
52 MPI_Init(&argc, &argv);
53 MPI_Comm_size(MPI_COMM_WORLD, &num_procs);
54 MPI_Comm_rank(MPI_COMM_WORLD, &myid);
57 const char *mesh_file =
"../data/star.mesh";
58 int ser_ref_levels = 2;
59 int par_ref_levels = 1;
63 bool slu_solver =
false;
64 bool sp_solver =
false;
65 bool visualization = 1;
68 args.
AddOption(&mesh_file,
"-m",
"--mesh",
70 args.
AddOption(&ser_ref_levels,
"-rs",
"--refine-serial",
71 "Number of times to refine the mesh uniformly in serial.");
72 args.
AddOption(&par_ref_levels,
"-rp",
"--refine-parallel",
73 "Number of times to refine the mesh uniformly in parallel.");
75 "Finite element order (polynomial degree) or -1 for"
76 " isoparametric space.");
78 "Number of desired eigenmodes.");
80 "Random seed used to initialize LOBPCG.");
81 #ifdef MFEM_USE_SUPERLU
82 args.
AddOption(&slu_solver,
"-slu",
"--superlu",
"-no-slu",
83 "--no-superlu",
"Use the SuperLU Solver.");
85 #ifdef MFEM_USE_STRUMPACK
86 args.
AddOption(&sp_solver,
"-sp",
"--strumpack",
"-no-sp",
87 "--no-strumpack",
"Use the STRUMPACK Solver.");
89 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
91 "Enable or disable GLVis visualization.");
93 if (slu_solver && sp_solver)
96 cout <<
"WARNING: Both SuperLU and STRUMPACK have been selected,"
97 <<
" please choose either one." << endl
98 <<
" Defaulting to SuperLU." << endl;
123 Mesh *mesh =
new Mesh(mesh_file, 1, 1);
129 for (
int lev = 0; lev < ser_ref_levels; lev++)
140 for (
int lev = 0; lev < par_ref_levels; lev++)
165 cout <<
"Number of unknowns: " << size << endl;
206 #if defined(MFEM_USE_SUPERLU) || defined(MFEM_USE_STRUMPACK)
208 #ifdef MFEM_USE_SUPERLU
214 #ifdef MFEM_USE_STRUMPACK
229 if (!slu_solver && !sp_solver)
237 #ifdef MFEM_USE_SUPERLU
248 #ifdef MFEM_USE_STRUMPACK
256 strumpack->
SetMC64Job(strumpack::MC64Job::NONE);
288 ostringstream mesh_name, mode_name;
289 mesh_name <<
"mesh." << setfill(
'0') << setw(6) << myid;
291 ofstream mesh_ofs(mesh_name.str().c_str());
292 mesh_ofs.precision(8);
293 pmesh->
Print(mesh_ofs);
295 for (
int i=0; i<nev; i++)
300 mode_name <<
"mode_" << setfill(
'0') << setw(2) << i <<
"."
301 << setfill(
'0') << setw(6) << myid;
303 ofstream mode_ofs(mode_name.str().c_str());
304 mode_ofs.precision(8);
313 char vishost[] =
"localhost";
316 mode_sock.precision(8);
318 for (
int i=0; i<nev; i++)
322 cout <<
"Eigenmode " << i+1 <<
'/' << nev
323 <<
", Lambda = " << eigenvalues[i] << endl;
329 mode_sock <<
"parallel " << num_procs <<
" " << myid <<
"\n"
330 <<
"solution\n" << *pmesh << x << flush
331 <<
"window_title 'Eigenmode " << i+1 <<
'/' << nev
332 <<
", Lambda = " << eigenvalues[i] <<
"'" << endl;
337 cout <<
"press (q)uit or (c)ontinue --> " << flush;
340 MPI_Bcast(&c, 1, MPI_CHAR, 0, MPI_COMM_WORLD);
355 #if defined(MFEM_USE_SUPERLU) || defined(MFEM_USE_STRUMPACK)
int Size() const
Logical size of the array.
HypreParVector & GetEigenvector(unsigned int i)
Extract a single eigenvector.
void SetMC64Job(strumpack::MC64Job job)
Subclass constant coefficient.
void SetFromCommandLine()
virtual void Save(std::ostream &out) const
void SetPreconditioner(Solver &precond)
void SetMassMatrix(Operator &M)
Abstract parallel finite element space.
void SetPrintLevel(int logging)
void SetSymmetricPattern(bool sym)
void SetOperator(const Operator &op)
Set/update the solver for the given operator.
The BoomerAMG solver in hypre.
void SetPrintFactorStatistics(bool print_stat)
void SetMaxIter(int max_iter)
void SetColumnPermutation(superlu::ColPerm col_perm)
void UniformRefinement(int i, const DSTable &, int *, int *, int *)
void SetPrintLevel(int print_level)
T Max() const
Find the maximal element in the array, using the comparison operator < for class T.
HYPRE_Int GlobalTrueVSize() const
virtual void Print(std::ostream &out=mfem::out) const
void SetPrintSolveStatistics(bool print_stat)
void SetPrintStatistics(bool print_stat)
void PrintUsage(std::ostream &out) const
void SetReorderingStrategy(strumpack::ReorderingStrategy method)
Array< int > bdr_attributes
A list of all unique boundary attributes used by the Mesh.
void GetEigenvalues(Array< double > &eigenvalues)
Collect the converged eigenvalues.
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 SetSize(int nsize)
Change logical size of the array, keep existing entries.
void SetRandomSeed(int s)
void SetKrylovSolver(strumpack::KrylovSolver method)
void SetOperator(Operator &A)
void PrintOptions(std::ostream &out) const
void SetOperator(const Operator &op)
Set/update the solver for the given operator.
void GetNodes(Vector &node_coord) const
void SetPrecondUsageMode(int pcg_mode)
Arbitrary order H1-conforming (continuous) finite elements.
Class for parallel grid function.
Wrapper for hypre's ParCSR matrix class.
void SetNumModes(int num_eigs)
Class for parallel meshes.
void Solve()
Solve the eigenproblem.