58 int main(
int argc,
char *argv[])
62 MPI_Init(&argc, &argv);
63 MPI_Comm_size(MPI_COMM_WORLD, &num_procs);
64 MPI_Comm_rank(MPI_COMM_WORLD, &myid);
67 const char *mesh_file =
"../data/star.mesh";
68 int ser_ref_levels = 2;
69 int par_ref_levels = 1;
73 bool slu_solver =
false;
74 bool sp_solver =
false;
75 bool cpardiso_solver =
false;
76 bool visualization = 1;
79 args.
AddOption(&mesh_file,
"-m",
"--mesh",
81 args.
AddOption(&ser_ref_levels,
"-rs",
"--refine-serial",
82 "Number of times to refine the mesh uniformly in serial.");
83 args.
AddOption(&par_ref_levels,
"-rp",
"--refine-parallel",
84 "Number of times to refine the mesh uniformly in parallel.");
86 "Finite element order (polynomial degree) or -1 for"
87 " isoparametric space.");
89 "Number of desired eigenmodes.");
91 "Random seed used to initialize LOBPCG.");
92 #ifdef MFEM_USE_SUPERLU
93 args.
AddOption(&slu_solver,
"-slu",
"--superlu",
"-no-slu",
94 "--no-superlu",
"Use the SuperLU Solver.");
96 #ifdef MFEM_USE_STRUMPACK
97 args.
AddOption(&sp_solver,
"-sp",
"--strumpack",
"-no-sp",
98 "--no-strumpack",
"Use the STRUMPACK Solver.");
100 #ifdef MFEM_USE_MKL_CPARDISO
101 args.
AddOption(&cpardiso_solver,
"-cpardiso",
"--cpardiso",
"-no-cpardiso",
102 "--no-cpardiso",
"Use the MKL CPardiso Solver.");
104 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
105 "--no-visualization",
106 "Enable or disable GLVis visualization.");
108 if (slu_solver && sp_solver)
111 cout <<
"WARNING: Both SuperLU and STRUMPACK have been selected,"
112 <<
" please choose either one." << endl
113 <<
" Defaulting to SuperLU." << endl;
138 Mesh *mesh =
new Mesh(mesh_file, 1, 1);
144 for (
int lev = 0; lev < ser_ref_levels; lev++)
155 for (
int lev = 0; lev < par_ref_levels; lev++)
180 cout <<
"Number of unknowns: " << size << endl;
221 #if defined(MFEM_USE_SUPERLU) || defined(MFEM_USE_STRUMPACK)
223 #ifdef MFEM_USE_SUPERLU
229 #ifdef MFEM_USE_STRUMPACK
244 if (!slu_solver && !sp_solver && !cpardiso_solver)
252 #ifdef MFEM_USE_SUPERLU
263 #ifdef MFEM_USE_STRUMPACK
277 #ifdef MFEM_USE_MKL_CPARDISO
281 cpardiso->
SetMatrixType(CPardisoSolver::MatType::REAL_STRUCTURE_SYMMETRIC);
282 cpardiso->SetPrintLevel(1);
283 cpardiso->SetOperator(*A);
311 ostringstream mesh_name, mode_name;
312 mesh_name <<
"mesh." << setfill(
'0') << setw(6) << myid;
314 ofstream mesh_ofs(mesh_name.str().c_str());
315 mesh_ofs.precision(8);
316 pmesh->
Print(mesh_ofs);
318 for (
int i=0; i<nev; i++)
323 mode_name <<
"mode_" << setfill(
'0') << setw(2) << i <<
"."
324 << setfill(
'0') << setw(6) << myid;
326 ofstream mode_ofs(mode_name.str().c_str());
327 mode_ofs.precision(8);
339 mode_sock.precision(8);
341 for (
int i=0; i<nev; i++)
345 cout <<
"Eigenmode " << i+1 <<
'/' << nev
346 <<
", Lambda = " << eigenvalues[i] << endl;
352 mode_sock <<
"parallel " << num_procs <<
" " << myid <<
"\n"
353 <<
"solution\n" << *pmesh << x << flush
354 <<
"window_title 'Eigenmode " << i+1 <<
'/' << nev
355 <<
", Lambda = " << eigenvalues[i] <<
"'" << endl;
360 cout <<
"press (q)uit or (c)ontinue --> " << flush;
363 MPI_Bcast(&c, 1, MPI_CHAR, 0, MPI_COMM_WORLD);
378 #if defined(MFEM_USE_SUPERLU) || defined(MFEM_USE_STRUMPACK)
int Size() const
Return the logical size of the array.
MPI_Comm GetComm() const
MPI communicator.
A coefficient that is constant across space and time.
HYPRE_BigInt GlobalTrueVSize() const
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 GetEigenvalues(Array< double > &eigenvalues) const
Collect the converged eigenvalues.
int close()
Close the socketstream.
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 Parse()
Parse the command-line options. Note that this function expects all the options provided through the ...
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.
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
Print the usage message.
void SetReorderingStrategy(strumpack::ReorderingStrategy method)
Array< int > bdr_attributes
A list of all unique boundary attributes used by the Mesh.
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...
void SetSize(int nsize)
Change the 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
Print the options.
const HypreParVector & GetEigenvector(unsigned int i) const
Extract a single eigenvector.
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.
void SetMatrixType(MatType mat_type)
Set the matrix type.
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.
MKL Parallel Direct Sparse Solver for Clusters.
bool Good() const
Return true if the command line options were parsed successfully.