https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Split.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10// MOOSE includes
11#include "Split.h"
12#include "InputParameters.h"
13#include "PetscSupport.h"
14#include "FEProblem.h"
15#include "Conversion.h"
16#include "NonlinearSystem.h"
17
19
22{
24 params.addClassDescription("Field split based preconditioner for nonlinear solver.");
25 params.addParam<std::vector<NonlinearVariableName>>(
26 "vars", {}, "Variables Split operates on (omitting this implies \"all variables\"");
27 params.addParam<std::vector<SubdomainName>>(
28 "blocks", {}, "Mesh blocks Split operates on (omitting this implies \"all blocks\"");
29 params.addParam<std::vector<BoundaryName>>(
30 "sides", {}, "Sidesets Split operates on (omitting this implies \"all sidesets\")");
31 params.addParam<std::vector<BoundaryName>>(
32 "unsides",
33 {},
34 "Sidesets Split excludes (omitting this implies \"do not exclude any sidesets\")");
35 params.addParam<std::vector<std::string>>(
36 "splitting", {}, "The names of the splits (subsystems) in the decomposition of this split");
37 params.addParam<std::vector<BoundaryName>>(
38 "unside_by_var_boundary_name",
39 "A map from boundary name to unside by variable, e.g. only unside for a given variable.");
40 params.addParam<std::vector<NonlinearVariableName>>(
41 "unside_by_var_var_name",
42 "A map from boundary name to unside by variable, e.g. only unside for a given variable.");
43 params.addParamNamesToGroup("sides unsides unside_by_var_boundary_name unside_by_var_var_name",
44 "Sideset restriction");
45
46 MooseEnum SplittingTypeEnum("additive multiplicative symmetric_multiplicative schur", "additive");
47 params.addParam<MooseEnum>("splitting_type", SplittingTypeEnum, "Split decomposition type");
48
49 MooseEnum SchurTypeEnum("diag upper lower full", "full");
50 params.addParam<MooseEnum>("schur_type", SchurTypeEnum, "Type of Schur complement");
51
58 MooseEnum SchurPreEnum("S Sp A11", "S");
59 params.addParam<MooseEnum>(
60 "schur_pre", SchurPreEnum, "Type of Schur complement preconditioner matrix");
61
62 params.addParam<MultiMooseEnum>("petsc_options",
64 "PETSc flags for the FieldSplit solver");
65 params.addParam<MultiMooseEnum>("petsc_options_iname",
67 "PETSc option names for the FieldSplit solver");
68 params.addParam<std::vector<std::string>>("petsc_options_value",
69 "PETSc option values for the FieldSplit solver");
70
71 params.registerBase("Split");
72 params.registerSystemAttributeName("Split");
73 return params;
74}
75
76Split::Split(const InputParameters & parameters)
77 : MooseObject(parameters),
78 Restartable(this, "Splits"),
79 _fe_problem(*getCheckedPointerParam<FEProblemBase *>("_fe_problem_base")),
80 _vars(getParam<std::vector<NonlinearVariableName>>("vars")),
81 _blocks(getParam<std::vector<SubdomainName>>("blocks")),
82 _sides(getParam<std::vector<BoundaryName>>("sides")),
83 _unsides(getParam<std::vector<BoundaryName>>("unsides")),
84 _splitting(getParam<std::vector<std::string>>("splitting")),
85 _splitting_type(getParam<MooseEnum>("splitting_type")),
86 _schur_type(getParam<MooseEnum>("schur_type")),
87 _schur_pre(getParam<MooseEnum>("schur_pre"))
88{
89}
90
91void
92Split::setup(NonlinearSystemBase & nl, const std::string & prefix)
93{
94 // The Split::setup() implementation does not actually depend on any
95 // specific version of PETSc, so there's no need to wrap the entire
96 // function.
97
98 // A reference to the PetscOptions
100 // prefix
101 const std::string prefix_with_dash = '-' + prefix;
102 std::string dmprefix = prefix_with_dash + "dm_moose_";
103
104 if (isParamValid("unside_by_var_boundary_name"))
105 {
106 const auto & unside_by_var_boundary_name =
107 getParam<std::vector<BoundaryName>>("unside_by_var_boundary_name");
108 const auto & unside_by_var_var_name =
109 getParam<std::vector<NonlinearVariableName>>("unside_by_var_var_name");
110
111 std::vector<std::string> vector_of_pairs;
112 for (const auto i : index_range(unside_by_var_boundary_name))
113 vector_of_pairs.push_back(unside_by_var_boundary_name[i] + ":" + unside_by_var_var_name[i]);
114 po.pairs.emplace_back(dmprefix + "unside_by_var", Moose::stringify(vector_of_pairs, ","));
115 }
116
117 // var options
118 if (!_vars.empty())
119 {
120 po.pairs.emplace_back(dmprefix + "vars", Moose::stringify(_vars, ","));
121
122 // check that variables are either field or scalars
123 for (const auto & var : _vars)
125 mooseError("Variable '", var, "' specified in split '", name(), "' does not exist");
126 }
127
128 // block options
129 if (!_blocks.empty())
130 po.pairs.emplace_back(dmprefix + "blocks", Moose::stringify(_blocks, ","));
131
132 // side options
133 if (!_sides.empty())
134 po.pairs.emplace_back(dmprefix + "sides", Moose::stringify(_sides, ","));
135
136 // unside options
137 if (!_unsides.empty())
138 po.pairs.emplace_back(dmprefix + "unsides", Moose::stringify(_unsides, ","));
139
140 if (!_splitting.empty())
141 {
142 // If this split has subsplits, it is presumed that the pc_type used to solve this split's
143 // subsystem is fieldsplit
144 // with the following parameters (unless overridden by the user-specified petsc_options below).
145 po.pairs.emplace_back(prefix_with_dash + "pc_type", "fieldsplit");
146
147 // set Splitting Type
148 const std::string petsc_splitting_type[] = {
149 "additive", "multiplicative", "symmetric_multiplicative", "schur"};
150 po.pairs.emplace_back(prefix_with_dash + "pc_fieldsplit_type",
151 petsc_splitting_type[_splitting_type]);
152
154 {
155 // set Schur Type
156 const std::string petsc_schur_type[] = {"diag", "upper", "lower", "full"};
157 po.pairs.emplace_back(prefix_with_dash + "pc_fieldsplit_schur_fact_type",
158 petsc_schur_type[_schur_type]);
159
160 // set Schur Preconditioner
161 const std::string petsc_schur_pre[] = {"self", "selfp", "a11"};
162 po.pairs.emplace_back(prefix_with_dash + "pc_fieldsplit_schur_precondition",
163 petsc_schur_pre[_schur_pre]);
164 }
165
166 // The DM associated with this split defines the subsplits' geometry.
167 po.pairs.emplace_back(dmprefix + "nfieldsplits", Moose::stringify(_splitting.size()));
168 po.pairs.emplace_back(dmprefix + "fieldsplit_names", Moose::stringify(_splitting, ","));
169
170 // Finally, recursively configure the splits contained within this split.
171 for (const auto & split_name : _splitting)
172 {
173 std::shared_ptr<Split> split = nl.getSplit(split_name);
174 std::string sprefix = prefix + "fieldsplit_" + split_name + "_";
175 split->setup(nl, sprefix);
176 }
177 }
178
179 // Now we set the user-specified petsc options for this split, possibly overriding the above
180 // settings.
182}
registerMooseObject("MooseApp", Split)
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
virtual bool hasScalarVariable(const std::string &var_name) const override
Returns a Boolean indicating whether any system contains a variable with the name provided.
virtual bool hasVariable(const std::string &var_name) const override
Whether or not this problem has the variable.
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
void registerSystemAttributeName(const std::string &value)
This method is used to define the MOOSE system name that is used by the TheWarehouse object for stori...
void addParamNamesToGroup(const std::string &space_delim_names, const std::string group_name)
This method takes a space delimited list of parameter names and adds them to the specified group name...
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an optional parameter and a documentation string to the InputParameters object.
void registerBase(const std::string &value)
This method must be called from every base "Moose System" to create linkage with the Action System.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump.
const std::string & name() const
Get the name of the class.
Definition MooseBase.h:103
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
Definition MooseBase.h:271
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
Definition MooseBase.h:199
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition MooseEnum.h:55
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
static InputParameters validParams()
Definition MooseObject.C:25
A struct for storing the various types of petsc options and values.
std::vector< std::pair< std::string, std::string > > pairs
PETSc key-value pairs.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type.
Nonlinear system to be solved.
std::shared_ptr< Split > getSplit(const std::string &name)
Retrieves a split by name.
A class for creating restricted objects.
Definition Restartable.h:29
Base class for split-based preconditioners.
Definition Split.h:26
Split(const InputParameters &parameters)
Definition Split.C:76
std::vector< BoundaryName > _sides
Definition Split.h:53
static InputParameters validParams()
Definition Split.C:21
MooseEnum _schur_pre
Definition Split.h:64
virtual void setup(NonlinearSystemBase &nl, const std::string &prefix="")
Definition Split.C:92
MooseEnum _splitting_type
Definition Split.h:62
std::vector< NonlinearVariableName > _vars
"Variables Split operates on
Definition Split.h:48
MooseEnum _schur_type
Definition Split.h:63
std::vector< SubdomainName > _blocks
Definition Split.h:52
@ SplittingTypeSchur
Definition Split.h:42
std::vector< BoundaryName > _unsides
Definition Split.h:54
FEProblemBase & _fe_problem
Definition Split.h:45
std::vector< std::string > _splitting
Split subsystem list.
Definition Split.h:58
MultiMooseEnum getCommonPetscFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc single options (flags)
void storePetscOptions(FEProblemBase &fe_problem, const std::string &prefix, const ParallelParamObject &param_object)
Stores the PETSc options supplied from the parameter object on the problem.
MultiMooseEnum getCommonPetscKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc iname options (keys in key-val...
std::string stringify(const T &t)
conversion to string
Definition Conversion.h:64