Skip to content
Snippets Groups Projects
Commit 8b558bc4 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] Add petsc options given in project file.

parent 02d1dc97
No related branches found
No related tags found
1 merge request!896Lin solver config
......@@ -20,11 +20,18 @@
namespace MathLib
{
PETScLinearSolver::PETScLinearSolver(PETScMatrix &A,
const std::string prefix,
BaseLib::ConfigTree const*const /*option*/)
PETScLinearSolver::PETScLinearSolver(PETScMatrix& A,
const std::string prefix,
BaseLib::ConfigTree const* const option)
: _A(A), _elapsed_ctime(0.)
{
// Insert options into petsc database if any.
if (option)
{
std::string const petsc_options = option->get<std::string>("petsc", "");
PetscOptionsInsertString(petsc_options.c_str());
}
KSPCreate(PETSC_COMM_WORLD, &_solver);
KSPGetPC(_solver, &_pc);
......
......@@ -46,11 +46,11 @@ class PETScLinearSolver
\param prefix Name used to distinguish the options in the command
line for this solver. It can be the name of the PDE
that owns an instance of this class.
\param option Not used here, just for the consistency of
the linear solver interface.
\param option Petsc options, which will be inserted into the global
petsc options database.
*/
PETScLinearSolver(PETScMatrix &A, const std::string prefix="",
BaseLib::ConfigTree const*const option = nullptr);
PETScLinearSolver(PETScMatrix& A, const std::string prefix = "",
BaseLib::ConfigTree const* const option = nullptr);
~PETScLinearSolver()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment