Loading [MathJax]/extensions/tex2jax.js
https://mooseframework.inl.gov
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
Classes | Functions
Moose::PetscSupport Namespace Reference

Classes

class  PetscOptions
 A struct for storing the various types of petsc options and values. More...
 

Functions

void petscSetOptions (const PetscOptions &po, const SolverParams &solver_params, FEProblemBase *const problem=nullptr)
 A function for setting the PETSc options in PETSc from the options supplied to MOOSE. More...
 
void petscSetOptions (const PetscOptions &po, const std::vector< SolverParams > &solver_params, FEProblemBase *problem)
 A function for setting the PETSc options in PETSc from the options supplied to MOOSE. More...
 
void petscSetKSPDefaults (FEProblemBase &problem, KSP ksp)
 Set the default options for a KSP. More...
 
template<typename T >
void setLinearSolverDefaults (FEProblemBase &problem, libMesh::LinearSolver< T > &linear_solver)
 Set the defaults for a libMesh LinearSolver. More...
 
void petscSetDefaults (FEProblemBase &problem)
 Sets the default options for PETSc. More...
 
void petscSetupDM (NonlinearSystemBase &nl, const std::string &dm_name)
 Setup the PETSc DM object. More...
 
PetscErrorCode petscSetupOutput (CommandLine *cmd_line)
 
void outputNorm (libMesh::Real old_norm, libMesh::Real norm, bool use_color=false)
 Helper function for outputting the norm values with/without color. More...
 
PetscErrorCode petscLinearMonitor (KSP, PetscInt its, PetscReal rnorm, void *void_ptr)
 Helper function for displaying the linear residual during PETSC solve. More...
 
void processSingletonMooseWrappedOptions (FEProblemBase &fe_problem, const InputParameters &params)
 Process some MOOSE-wrapped PETSc options. More...
 
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. More...
 
void setConvergedReasonFlags (FEProblemBase &fe_problem, const std::string &prefix)
 Set flags that will instruct the user on the reason their simulation diverged from PETSc's perspective. More...
 
void setSolveTypeFromParams (FEProblemBase &fe_problem, const InputParameters &params)
 Sets the FE problem's solve type from the input params. More...
 
void setLineSearchFromParams (FEProblemBase &fe_problem, const InputParameters &params)
 Sets the FE problem's line search from the input params. More...
 
void setMFFDTypeFromParams (FEProblemBase &fe_problem, const InputParameters &params)
 Sets the FE problem's matrix-free finite difference type from the input params. More...
 
void storePetscOptionsFromParams (FEProblemBase &fe_problem, const InputParameters &params)
 Stores the Petsc flags and pair options fron the input params in the given PetscOptions object. More...
 
void addPetscFlagsToPetscOptions (const MultiMooseEnum &petsc_flags, const std::string &prefix, const ParallelParamObject &param_object, PetscOptions &petsc_options)
 Populate flags in a given PetscOptions object using a vector of input arguments. More...
 
void addPetscPairsToPetscOptions (const std::vector< std::pair< MooseEnumItem, std::string >> &petsc_pair_options, const unsigned int mesh_dimension, const std::string &prefix, const ParallelParamObject &param_object, PetscOptions &petsc_options)
 Populate name and value pairs in a given PetscOptions object using vectors of input arguments. More...
 
std::set< std::string > getPetscValidLineSearches ()
 Returns the valid petsc line search options as a set of strings. More...
 
InputParameters getPetscValidParams ()
 Returns the PETSc options that are common between Executioners and Preconditioners. More...
 
MultiMooseEnum getCommonPetscFlags ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc single options (flags) More...
 
MultiMooseEnum getCommonSNESFlags ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc snes single options (flags) More...
 
MultiMooseEnum getCommonKSPFlags ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc ksp single options (flags) More...
 
MultiMooseEnum getCommonPetscKeys ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc iname options (keys in key-value pairs) More...
 
MultiMooseEnum getCommonSNESKeys ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc snes option names (keys) More...
 
MultiMooseEnum getCommonKSPKeys ()
 A helper function to produce a MultiMooseEnum with commonly used PETSc ksp option names (keys) More...
 
bool isSNESVI (FEProblemBase &fe_problem)
 check if SNES type is variational inequalities (VI) solver More...
 
void setSinglePetscOption (const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
 A wrapper function for dealing with different versions of PetscOptionsSetValue. More...
 
void setSinglePetscOptionIfAppropriate (const MultiMooseEnum &dont_add_these_options, const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
 Same as setSinglePetscOption, but does not set the option if it doesn't make sense for the current simulation type, e.g. More...
 
void addPetscOptionsFromCommandline ()
 
void petscSetDefaultPCSide (FEProblemBase &problem, KSP ksp)
 Setup which side we want to apply preconditioner. More...
 
void petscSetDefaultKSPNormType (FEProblemBase &problem, KSP ksp)
 Set norm type. More...
 
void colorAdjacencyMatrix (PetscScalar *adjacency_matrix, unsigned int size, unsigned int colors, std::vector< unsigned int > &vertex_colors, const char *coloring_algorithm)
 This method takes an adjacency matrix, and a desired number of colors and applies a graph coloring algorithm to produce a coloring. More...
 
void dontAddPetscFlag (const std::string &flag, PetscOptions &petsc_options)
 Function to ensure that a particular petsc option is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line. More...
 
void dontAddNonlinearConvergedReason (FEProblemBase &fe_problem)
 Function to ensure that -snes_converged_reason is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line. More...
 
void dontAddLinearConvergedReason (FEProblemBase &fe_problem)
 Function to ensure that -ksp_converged_reason is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line. More...
 
void dontAddCommonKSPOptions (FEProblemBase &fe_problem)
 Function to ensure that common KSP options are not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line. More...
 
void dontAddCommonSNESOptions (FEProblemBase &fe_problem)
 Function to ensure that common SNES options are not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line. More...
 
std::string stringify (const LineSearchType &t)
 
std::string stringify (const MffdType &t)
 
void setSolverOptions (const SolverParams &solver_params, const MultiMooseEnum &dont_add_these_options)
 
void petscSetOptionsHelper (const PetscOptions &po, FEProblemBase *const problem)
 
PetscErrorCode petscNonlinearConverged (SNES, PetscInt it, PetscReal, PetscReal, PetscReal, SNESConvergedReason *reason, void *ctx)
 
PCSide getPetscPCSide (Moose::PCSideType pcs)
 
KSPNormType getPetscKSPNormType (Moose::MooseKSPNormType kspnorm)
 
template<typename T >
void checkUserProvidedPetscOption (const T &option, const ParallelParamObject &param_object)
 

Function Documentation

◆ addPetscFlagsToPetscOptions()

void Moose::PetscSupport::addPetscFlagsToPetscOptions ( const MultiMooseEnum petsc_flags,
const std::string &  prefix,
const ParallelParamObject param_object,
PetscOptions petsc_options 
)

Populate flags in a given PetscOptions object using a vector of input arguments.

Parameters
petsc_flagsContainer holding the flags of the petsc options
prefixThe prefix to add to the user provided petsc_flags
param_objectThe ParallelParamObject adding the PETSc options
petsc_optionsData structure which handles petsc options within moose

"-log_summary" cannot be used in the input file. This option needs to be set when PETSc is initialized which happens before the parser is even created. We'll throw an error if somebody attempts to add this option later.

"-log_summary" cannot be used in the input file. This option needs to be set when PETSc is initialized which happens before the parser is even created. We'll throw an error if somebody attempts to add this option later.

Definition at line 623 of file PetscSupport.C.

Referenced by storePetscOptions().

627 {
628  checkPrefix(prefix);
629 
630  // Update the PETSc single flags
631  for (const auto & option : petsc_flags)
632  {
633  checkUserProvidedPetscOption(option, param_object);
634 
635  const std::string & string_option = option.name();
636 
643  if (option == "-log_summary" || option == "-log_view")
644  mooseError("The PETSc option \"-log_summary\" or \"-log_view\" can only be used on the "
645  "command line. Please "
646  "remove it from the input file");
647 
648  // Warn about superseded PETSc options (Note: -snes is not a REAL option, but people used it in
649  // their input files)
650  else
651  {
652  std::string help_string;
653  if (option == "-snes" || option == "-snes_mf" || option == "-snes_mf_operator")
654  help_string = "Please set the solver type through \"solve_type\".";
655  else if (option == "-ksp_monitor")
656  help_string = "Please use \"Outputs/print_linear_residuals=true\"";
657 
658  if (help_string != "")
659  mooseWarning("The PETSc option ",
660  string_option,
661  " should not be used directly in a MOOSE input file. ",
662  help_string);
663  }
664 
665  // Update the stored items, but do not create duplicates
666  const std::string prefixed_option = prefix + string_option.substr(1);
667  if (!po.flags.isValueSet(prefixed_option))
668  {
669  po.flags.setAdditionalValue(prefixed_option);
670  po.user_set_options.setAdditionalValue(prefixed_option);
671  }
672  }
673 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
void mooseWarning(Args &&... args)
Emit a warning message with the given stringified, concatenated args.
Definition: MooseError.h:336
void checkUserProvidedPetscOption(const T &option, const ParallelParamObject &param_object)
Definition: PetscSupport.C:615

◆ addPetscOptionsFromCommandline()

void Moose::PetscSupport::addPetscOptionsFromCommandline ( )

Definition at line 233 of file PetscSupport.C.

Referenced by petscSetOptionsHelper(), and Moose::SlepcSupport::slepcSetOptions().

234 {
235  // commandline options always win
236  // the options from a user commandline will overwrite the existing ones if any conflicts
237  { // Get any options specified on the command-line
238  int argc;
239  char ** args;
240 
241  LibmeshPetscCallA(PETSC_COMM_WORLD, PetscGetArgs(&argc, &args));
242 #if PETSC_VERSION_LESS_THAN(3, 7, 0)
243  LibmeshPetscCallA(PETSC_COMM_WORLD, PetscOptionsInsert(&argc, &args, NULL));
244 #else
245  LibmeshPetscCallA(PETSC_COMM_WORLD,
246  PetscOptionsInsert(LIBMESH_PETSC_NULLPTR, &argc, &args, NULL));
247 #endif
248  }
249 }

◆ addPetscPairsToPetscOptions()

void Moose::PetscSupport::addPetscPairsToPetscOptions ( const std::vector< std::pair< MooseEnumItem, std::string >> &  petsc_pair_options,
const unsigned int  mesh_dimension,
const std::string &  prefix,
const ParallelParamObject param_object,
PetscOptions petsc_options 
)

Populate name and value pairs in a given PetscOptions object using vectors of input arguments.

Parameters
petsc_pair_optionsOption-value pairs of petsc settings
mesh_dimensionThe mesh dimension, needed for multigrid settings
prefixThe prefix to add to the user provided petsc_flags
param_objectThe ParallelParamObject adding the PETSc options
petsc_optionsData structure which handles petsc options within moose

Definition at line 699 of file PetscSupport.C.

Referenced by PhysicsBase::addPetscPairsToPetscOptions(), and storePetscOptions().

705 {
706  checkPrefix(prefix);
707 
708  // Setup the name value pairs
709  bool boomeramg_found = false;
710  bool strong_threshold_found = false;
711 #if !PETSC_VERSION_LESS_THAN(3, 7, 0)
712  bool superlu_dist_found = false;
713  bool fact_pattern_found = false;
714  bool tiny_pivot_found = false;
715 #endif
716  std::string pc_description = "";
717 #if !PETSC_VERSION_LESS_THAN(3, 12, 0)
718  // If users use HMG, we would like to set
719  bool hmg_found = false;
720  bool matptap_found = false;
721  bool hmg_strong_threshold_found = false;
722 #endif
723  std::vector<std::pair<std::string, std::string>> new_options;
724 
725  for (const auto & [option_name, option_value] : petsc_pair_options)
726  {
727  checkUserProvidedPetscOption(option_name, param_object);
728 
729  new_options.clear();
730  const std::string prefixed_option_name =
731  prefix + static_cast<const std::string &>(option_name).substr(1);
732 
733  // Do not add duplicate settings
734  if (auto it =
735  MooseUtils::findPair(po.pairs, po.pairs.begin(), prefixed_option_name, MooseUtils::Any);
736  it == po.pairs.end())
737  {
738 #if !PETSC_VERSION_LESS_THAN(3, 9, 0)
739  if (option_name == "-pc_factor_mat_solver_package")
740  new_options.emplace_back(prefix + "pc_factor_mat_solver_type", option_value);
741 #else
742  if (option_name == "-pc_factor_mat_solver_type")
743  new_options.push_back(prefix + "pc_factor_mat_solver_package", option_value);
744 #endif
745 
746  // Look for a pc description
747  if (option_name == "-pc_type" || option_name == "-pc_sub_type" ||
748  option_name == "-pc_hypre_type")
749  pc_description += option_value + ' ';
750 
751 #if !PETSC_VERSION_LESS_THAN(3, 12, 0)
752  if (option_name == "-pc_type" && option_value == "hmg")
753  hmg_found = true;
754 
755  // MPIAIJ for PETSc 3.12.0: -matptap_via
756  // MAIJ for PETSc 3.12.0: -matmaijptap_via
757  // MPIAIJ for PETSc 3.13 to 3.16: -matptap_via, -matproduct_ptap_via
758  // MAIJ for PETSc 3.13 to 3.16: -matproduct_ptap_via
759  // MPIAIJ for PETSc 3.17 and higher: -matptap_via, -mat_product_algorithm
760  // MAIJ for PETSc 3.17 and higher: -mat_product_algorithm
761 #if !PETSC_VERSION_LESS_THAN(3, 17, 0)
762  if (hmg_found && (option_name == "-matptap_via" || option_name == "-matmaijptap_via" ||
763  option_name == "-matproduct_ptap_via"))
764  new_options.emplace_back(prefix + "mat_product_algorithm", option_value);
765 #elif !PETSC_VERSION_LESS_THAN(3, 13, 0)
766  if (hmg_found && (option_name == "-matptap_via" || option_name == "-matmaijptap_via"))
767  new_options.emplace_back(prefix + "matproduct_ptap_via", option_value);
768 #else
769  if (hmg_found && (option_name == "-matproduct_ptap_via"))
770  {
771  new_options.emplace_back(prefix + "matptap_via", option_value);
772  new_options.emplace_back(prefix + "matmaijptap_via", option_value);
773  }
774 #endif
775 
776  if (option_name == "-matptap_via" || option_name == "-matmaijptap_via" ||
777  option_name == "-matproduct_ptap_via" || option_name == "-mat_product_algorithm")
778  matptap_found = true;
779 
780  // For 3D problems, we need to set this 0.7
781  if (option_name == "-hmg_inner_pc_hypre_boomeramg_strong_threshold")
782  hmg_strong_threshold_found = true;
783 #endif
784  // This special case is common enough that we'd like to handle it for the user.
785  if (option_name == "-pc_hypre_type" && option_value == "boomeramg")
786  boomeramg_found = true;
787  if (option_name == "-pc_hypre_boomeramg_strong_threshold")
788  strong_threshold_found = true;
789 #if !PETSC_VERSION_LESS_THAN(3, 7, 0)
790  if ((option_name == "-pc_factor_mat_solver_package" ||
791  option_name == "-pc_factor_mat_solver_type") &&
792  option_value == "superlu_dist")
793  superlu_dist_found = true;
794  if (option_name == "-mat_superlu_dist_fact")
795  fact_pattern_found = true;
796  if (option_name == "-mat_superlu_dist_replacetinypivot")
797  tiny_pivot_found = true;
798 #endif
799 
800  if (!new_options.empty())
801  {
802  std::copy(new_options.begin(), new_options.end(), std::back_inserter(po.pairs));
803  for (const auto & option : new_options)
804  po.user_set_options.setAdditionalValue(option.first);
805  }
806  else
807  {
808  po.pairs.push_back(std::make_pair(prefixed_option_name, option_value));
809  po.user_set_options.setAdditionalValue(prefixed_option_name);
810  }
811  }
812  else
813  {
814  do
815  {
816  it->second = option_value;
817  it = MooseUtils::findPair(po.pairs, std::next(it), prefixed_option_name, MooseUtils::Any);
818  } while (it != po.pairs.end());
819  }
820  }
821 
822  // When running a 3D mesh with boomeramg, it is almost always best to supply a strong threshold
823  // value. We will provide that for the user here if they haven't supplied it themselves.
824  if (boomeramg_found && !strong_threshold_found && mesh_dimension == 3)
825  {
826  po.pairs.emplace_back(prefix + "pc_hypre_boomeramg_strong_threshold", "0.7");
827  pc_description += "strong_threshold: 0.7 (auto)";
828  }
829 
830 #if !PETSC_VERSION_LESS_THAN(3, 12, 0)
831  if (hmg_found && !hmg_strong_threshold_found && mesh_dimension == 3)
832  {
833  po.pairs.emplace_back(prefix + "hmg_inner_pc_hypre_boomeramg_strong_threshold", "0.7");
834  pc_description += "strong_threshold: 0.7 (auto)";
835  }
836 
837  // Default PETSc PtAP takes too much memory, and it is not quite useful
838  // Let us switch to use new algorithm
839  if (hmg_found && !matptap_found)
840  {
841 #if !PETSC_VERSION_LESS_THAN(3, 17, 0)
842  po.pairs.emplace_back(prefix + "mat_product_algorithm", "allatonce");
843 #elif !PETSC_VERSION_LESS_THAN(3, 13, 0)
844  po.pairs.emplace_back(prefix + "matproduct_ptap_via", "allatonce");
845 #else
846  po.pairs.emplace_back(prefix + "matptap_via", "allatonce");
847  po.pairs.emplace_back(prefix + "matmaijptap_via", "allatonce");
848 #endif
849  }
850 #endif
851 
852 #if !PETSC_VERSION_LESS_THAN(3, 7, 0)
853  // In PETSc-3.7.{0--4}, there is a bug when using superlu_dist, and we have to use
854  // SamePattern_SameRowPerm, otherwise we use whatever we have in PETSc
855  if (superlu_dist_found && !fact_pattern_found)
856  {
857  po.pairs.emplace_back(prefix + "mat_superlu_dist_fact",
858 #if PETSC_VERSION_LESS_THAN(3, 7, 5)
859  "SamePattern_SameRowPerm");
860  pc_description += "mat_superlu_dist_fact: SamePattern_SameRowPerm ";
861 #else
862  "SamePattern");
863  pc_description += "mat_superlu_dist_fact: SamePattern ";
864 #endif
865  }
866 
867  // restore this superlu option
868  if (superlu_dist_found && !tiny_pivot_found)
869  {
870  po.pairs.emplace_back(prefix + "mat_superlu_dist_replacetinypivot", "1");
871  pc_description += " mat_superlu_dist_replacetinypivot: true ";
872  }
873 #endif
874  // Set Preconditioner description
875  po.pc_description += pc_description;
876 }
void checkUserProvidedPetscOption(const T &option, const ParallelParamObject &param_object)
Definition: PetscSupport.C:615
auto findPair(C &container, It start_iterator, const M1 &first, const M2 &second)
Find a specific pair in a container matching on first, second or both pair components.
Definition: MooseUtils.h:1097
static const struct MooseUtils::AnyType Any

◆ checkUserProvidedPetscOption()

template<typename T >
void Moose::PetscSupport::checkUserProvidedPetscOption ( const T &  option,
const ParallelParamObject param_object 
)

Definition at line 615 of file PetscSupport.C.

Referenced by addPetscFlagsToPetscOptions(), and addPetscPairsToPetscOptions().

616 {
617  const auto & string_option = static_cast<const std::string &>(option);
618  if (string_option[0] != '-')
619  param_object.mooseError("PETSc option '", string_option, "' does not begin with '-'");
620 }
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type.

◆ colorAdjacencyMatrix()

void Moose::PetscSupport::colorAdjacencyMatrix ( PetscScalar *  adjacency_matrix,
unsigned int  size,
unsigned int  colors,
std::vector< unsigned int > &  vertex_colors,
const char *  coloring_algorithm 
)

This method takes an adjacency matrix, and a desired number of colors and applies a graph coloring algorithm to produce a coloring.

The coloring is returned as a vector of unsigned integers indicating which color or group each vextex in the adjacency matrix belongs to.

Definition at line 1100 of file PetscSupport.C.

1105 {
1106  // Mat A will be a dense matrix from the incoming data structure
1107  Mat A;
1108  LibmeshPetscCallA(PETSC_COMM_SELF, MatCreate(PETSC_COMM_SELF, &A));
1109  LibmeshPetscCallA(PETSC_COMM_SELF, MatSetSizes(A, size, size, size, size));
1110  LibmeshPetscCallA(PETSC_COMM_SELF, MatSetType(A, MATSEQDENSE));
1111  // PETSc requires a non-const data array to populate the matrix
1112  LibmeshPetscCallA(PETSC_COMM_SELF, MatSeqDenseSetPreallocation(A, adjacency_matrix));
1113  LibmeshPetscCallA(PETSC_COMM_SELF, MatAssemblyBegin(A, MAT_FINAL_ASSEMBLY));
1114  LibmeshPetscCallA(PETSC_COMM_SELF, MatAssemblyEnd(A, MAT_FINAL_ASSEMBLY));
1115 
1116  // Convert A to a sparse matrix
1117 #if PETSC_VERSION_LESS_THAN(3, 7, 0)
1118  LibmeshPetscCallA(PETSC_COMM_SELF, MatConvert(A, MATAIJ, MAT_REUSE_MATRIX, &A));
1119 #else
1120  LibmeshPetscCallA(PETSC_COMM_SELF, MatConvert(A, MATAIJ, MAT_INPLACE_MATRIX, &A));
1121 #endif
1122 
1123  ISColoring iscoloring;
1124  MatColoring mc;
1125  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringCreate(A, &mc));
1126  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringSetType(mc, coloring_algorithm));
1127  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringSetMaxColors(mc, static_cast<PetscInt>(colors)));
1128 
1129  // Petsc normally colors by distance two (neighbors of neighbors), we just want one
1130  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringSetDistance(mc, 1));
1131  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringSetFromOptions(mc));
1132  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringApply(mc, &iscoloring));
1133 
1134  PetscInt nn;
1135  IS * is;
1136 #if PETSC_RELEASE_LESS_THAN(3, 12, 0)
1137  LibmeshPetscCallA(PETSC_COMM_SELF, ISColoringGetIS(iscoloring, &nn, &is));
1138 #else
1139  LibmeshPetscCallA(PETSC_COMM_SELF, ISColoringGetIS(iscoloring, PETSC_USE_POINTER, &nn, &is));
1140 #endif
1141 
1142  if (nn > static_cast<PetscInt>(colors))
1143  throw std::runtime_error("Not able to color with designated number of colors");
1144 
1145  for (int i = 0; i < nn; i++)
1146  {
1147  PetscInt isize;
1148  const PetscInt * indices;
1149  LibmeshPetscCallA(PETSC_COMM_SELF, ISGetLocalSize(is[i], &isize));
1150  LibmeshPetscCallA(PETSC_COMM_SELF, ISGetIndices(is[i], &indices));
1151  for (int j = 0; j < isize; j++)
1152  {
1153  mooseAssert(indices[j] < static_cast<PetscInt>(vertex_colors.size()), "Index out of bounds");
1154  vertex_colors[indices[j]] = i;
1155  }
1156  LibmeshPetscCallA(PETSC_COMM_SELF, ISRestoreIndices(is[i], &indices));
1157  }
1158 
1159  LibmeshPetscCallA(PETSC_COMM_SELF, MatDestroy(&A));
1160  LibmeshPetscCallA(PETSC_COMM_SELF, MatColoringDestroy(&mc));
1161  LibmeshPetscCallA(PETSC_COMM_SELF, ISColoringDestroy(&iscoloring));
1162 }
PetscErrorCode PetscInt const PetscInt IS * is

◆ dontAddCommonKSPOptions()

void Moose::PetscSupport::dontAddCommonKSPOptions ( FEProblemBase fe_problem)

Function to ensure that common KSP options are not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line.

Definition at line 1184 of file PetscSupport.C.

1185 {
1186  auto & petsc_options = fe_problem.getPetscOptions();
1187  for (const auto & flag : getCommonKSPFlags().getNames())
1188  dontAddPetscFlag(flag, petsc_options);
1189  for (const auto & key : getCommonKSPKeys().getNames())
1190  dontAddPetscFlag(key, petsc_options);
1191 }
MultiMooseEnum getCommonKSPKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc ksp option names (keys) ...
Definition: PetscSupport.C:956
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
void dontAddPetscFlag(const std::string &flag, PetscOptions &petsc_options)
Function to ensure that a particular petsc option is not added to the PetscOptions storage object to ...
MultiMooseEnum getCommonKSPFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc ksp single options (flags) ...
Definition: PetscSupport.C:931

◆ dontAddCommonSNESOptions()

void Moose::PetscSupport::dontAddCommonSNESOptions ( FEProblemBase fe_problem)

Function to ensure that common SNES options are not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line.

Definition at line 1194 of file PetscSupport.C.

Referenced by ExplicitTimeIntegrator::ExplicitTimeIntegrator().

1195 {
1196  auto & petsc_options = fe_problem.getPetscOptions();
1197  for (const auto & flag : getCommonSNESFlags().getNames())
1198  if (!petsc_options.dont_add_these_options.contains(flag))
1199  petsc_options.dont_add_these_options.setAdditionalValue(flag);
1200  for (const auto & key : getCommonSNESKeys().getNames())
1201  if (!petsc_options.dont_add_these_options.contains(key))
1202  petsc_options.dont_add_these_options.setAdditionalValue(key);
1203 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
void setAdditionalValue(const std::string &names)
Insert operators Operator to insert (push_back) values into the enum.
MultiMooseEnum getCommonSNESFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc snes single options (flags) ...
Definition: PetscSupport.C:920
MultiMooseEnum getCommonSNESKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc snes option names (keys) ...
Definition: PetscSupport.C:947
MultiMooseEnum dont_add_these_options
Flags to explicitly not set, even if they are specified programmatically.
Definition: PetscSupport.h:54

◆ dontAddLinearConvergedReason()

void Moose::PetscSupport::dontAddLinearConvergedReason ( FEProblemBase fe_problem)

Function to ensure that -ksp_converged_reason is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line.

Definition at line 1178 of file PetscSupport.C.

Referenced by CommonOutputAction::act().

1179 {
1180  dontAddPetscFlag("-ksp_converged_reason", fe_problem.getPetscOptions());
1181 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
void dontAddPetscFlag(const std::string &flag, PetscOptions &petsc_options)
Function to ensure that a particular petsc option is not added to the PetscOptions storage object to ...

◆ dontAddNonlinearConvergedReason()

void Moose::PetscSupport::dontAddNonlinearConvergedReason ( FEProblemBase fe_problem)

Function to ensure that -snes_converged_reason is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line.

Definition at line 1172 of file PetscSupport.C.

Referenced by CommonOutputAction::act().

1173 {
1174  dontAddPetscFlag("-snes_converged_reason", fe_problem.getPetscOptions());
1175 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
void dontAddPetscFlag(const std::string &flag, PetscOptions &petsc_options)
Function to ensure that a particular petsc option is not added to the PetscOptions storage object to ...

◆ dontAddPetscFlag()

void Moose::PetscSupport::dontAddPetscFlag ( const std::string &  flag,
PetscOptions petsc_options 
)

Function to ensure that a particular petsc option is not added to the PetscOptions storage object to be later set unless explicitly specified in input or on the command line.

Definition at line 1165 of file PetscSupport.C.

Referenced by dontAddCommonKSPOptions(), dontAddLinearConvergedReason(), and dontAddNonlinearConvergedReason().

1166 {
1167  if (!petsc_options.dont_add_these_options.contains(flag))
1168  petsc_options.dont_add_these_options.setAdditionalValue(flag);
1169 }

◆ getCommonKSPFlags()

MultiMooseEnum Moose::PetscSupport::getCommonKSPFlags ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc ksp single options (flags)

Definition at line 931 of file PetscSupport.C.

Referenced by dontAddCommonKSPOptions(), and getCommonPetscFlags().

932 {
933  return MultiMooseEnum(
934  "-ksp_converged_reason -ksp_gmres_modifiedgramschmidt -ksp_monitor", "", true);
935 }
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getCommonKSPKeys()

MultiMooseEnum Moose::PetscSupport::getCommonKSPKeys ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc ksp option names (keys)

Definition at line 956 of file PetscSupport.C.

Referenced by dontAddCommonKSPOptions(), and getCommonPetscKeys().

957 {
958  return MultiMooseEnum("-ksp_atol -ksp_gmres_restart -ksp_max_it -ksp_pc_side -ksp_rtol "
959  "-ksp_type -sub_ksp_type",
960  "",
961  true);
962 }
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getCommonPetscFlags()

MultiMooseEnum Moose::PetscSupport::getCommonPetscFlags ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc single options (flags)

Definition at line 938 of file PetscSupport.C.

Referenced by getPetscValidParams(), AddFieldSplitAction::validParams(), and Split::validParams().

939 {
940  auto options = MultiMooseEnum("-dm_moose_print_embedding -dm_view", "", true);
941  options.addValidName(getCommonKSPFlags());
942  options.addValidName(getCommonSNESFlags());
943  return options;
944 }
MultiMooseEnum getCommonSNESFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc snes single options (flags) ...
Definition: PetscSupport.C:920
MultiMooseEnum getCommonKSPFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc ksp single options (flags) ...
Definition: PetscSupport.C:931
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getCommonPetscKeys()

MultiMooseEnum Moose::PetscSupport::getCommonPetscKeys ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc iname options (keys in key-value pairs)

Definition at line 964 of file PetscSupport.C.

Referenced by getPetscValidParams(), AddFieldSplitAction::validParams(), and Split::validParams().

965 {
966  auto options = MultiMooseEnum("-mat_fd_coloring_err -mat_fd_type -mat_mffd_type "
967  "-pc_asm_overlap -pc_factor_levels "
968  "-pc_factor_mat_ordering_type -pc_hypre_boomeramg_grid_sweeps_all "
969  "-pc_hypre_boomeramg_max_iter "
970  "-pc_hypre_boomeramg_strong_threshold -pc_hypre_type -pc_type "
971  "-sub_pc_type",
972  "",
973  true);
974  options.addValidName(getCommonKSPKeys());
975  options.addValidName(getCommonSNESKeys());
976  return options;
977 }
MultiMooseEnum getCommonKSPKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc ksp option names (keys) ...
Definition: PetscSupport.C:956
MultiMooseEnum getCommonSNESKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc snes option names (keys) ...
Definition: PetscSupport.C:947
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getCommonSNESFlags()

MultiMooseEnum Moose::PetscSupport::getCommonSNESFlags ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc snes single options (flags)

Definition at line 920 of file PetscSupport.C.

Referenced by dontAddCommonSNESOptions(), and getCommonPetscFlags().

921 {
922  return MultiMooseEnum(
923  "-ksp_monitor_snes_lg -snes_ksp_ew -ksp_snes_ew -snes_converged_reason "
924  "-snes_ksp -snes_linesearch_monitor -snes_mf -snes_mf_operator -snes_monitor "
925  "-snes_test_display -snes_view -snes_monitor_cancel",
926  "",
927  true);
928 }
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getCommonSNESKeys()

MultiMooseEnum Moose::PetscSupport::getCommonSNESKeys ( )

A helper function to produce a MultiMooseEnum with commonly used PETSc snes option names (keys)

Definition at line 947 of file PetscSupport.C.

Referenced by dontAddCommonSNESOptions(), and getCommonPetscKeys().

948 {
949  return MultiMooseEnum("-snes_atol -snes_linesearch_type -snes_ls -snes_max_it -snes_rtol "
950  "-snes_divergence_tolerance -snes_type",
951  "",
952  true);
953 }
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getPetscKSPNormType()

KSPNormType Moose::PetscSupport::getPetscKSPNormType ( Moose::MooseKSPNormType  kspnorm)

Definition at line 375 of file PetscSupport.C.

Referenced by petscSetDefaultKSPNormType().

376 {
377  switch (kspnorm)
378  {
379  case Moose::KSPN_NONE:
380  return KSP_NORM_NONE;
382  return KSP_NORM_PRECONDITIONED;
384  return KSP_NORM_UNPRECONDITIONED;
385  case Moose::KSPN_NATURAL:
386  return KSP_NORM_NATURAL;
387  case Moose::KSPN_DEFAULT:
388  return KSP_NORM_DEFAULT;
389  default:
390  mooseError("Unknown KSP norm type requested.");
391  break;
392  }
393 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
Use whatever we have in PETSc.
Definition: MooseTypes.h:830

◆ getPetscPCSide()

PCSide Moose::PetscSupport::getPetscPCSide ( Moose::PCSideType  pcs)

Definition at line 358 of file PetscSupport.C.

Referenced by petscSetDefaultPCSide().

359 {
360  switch (pcs)
361  {
362  case Moose::PCS_LEFT:
363  return PC_LEFT;
364  case Moose::PCS_RIGHT:
365  return PC_RIGHT;
367  return PC_SYMMETRIC;
368  default:
369  mooseError("Unknown PC side requested.");
370  break;
371  }
372 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302

◆ getPetscValidLineSearches()

std::set< std::string > Moose::PetscSupport::getPetscValidLineSearches ( )

Returns the valid petsc line search options as a set of strings.

Definition at line 879 of file PetscSupport.C.

Referenced by FEProblemSolve::validParams().

880 {
881  return {"default", "shell", "none", "basic", "l2", "bt", "cp"};
882 }

◆ getPetscValidParams()

InputParameters Moose::PetscSupport::getPetscValidParams ( )

Returns the PETSc options that are common between Executioners and Preconditioners.

Returns
InputParameters object containing the PETSc related parameters

The output of this function should be added to the the parameters object of the overarching class

See also
CreateExecutionerAction

Definition at line 885 of file PetscSupport.C.

Referenced by FEProblemSolve::validParams(), and MoosePreconditioner::validParams().

886 {
888 
889  MooseEnum solve_type("PJFNK JFNK NEWTON FD LINEAR");
890  params.addParam<MooseEnum>("solve_type",
891  solve_type,
892  "PJFNK: Preconditioned Jacobian-Free Newton Krylov "
893  "JFNK: Jacobian-Free Newton Krylov "
894  "NEWTON: Full Newton Solve "
895  "FD: Use finite differences to compute Jacobian "
896  "LINEAR: Solving a linear problem");
897 
898  MooseEnum mffd_type("wp ds", "wp");
899  params.addParam<MooseEnum>("mffd_type",
900  mffd_type,
901  "Specifies the finite differencing type for "
902  "Jacobian-free solve types. Note that the "
903  "default is wp (for Walker and Pernice).");
904 
905  params.addParam<MultiMooseEnum>(
906  "petsc_options", getCommonPetscFlags(), "Singleton PETSc options");
907  params.addParam<MultiMooseEnum>(
908  "petsc_options_iname", getCommonPetscKeys(), "Names of PETSc name/value pairs");
909  params.addParam<std::vector<std::string>>(
910  "petsc_options_value",
911  "Values of PETSc name/value pairs (must correspond with \"petsc_options_iname\"");
912  params.addParamNamesToGroup("solve_type petsc_options petsc_options_iname petsc_options_value "
913  "mffd_type",
914  "PETSc");
915 
916  return params;
917 }
MultiMooseEnum getCommonPetscKeys()
A helper function to produce a MultiMooseEnum with commonly used PETSc iname options (keys in key-val...
Definition: PetscSupport.C:964
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
InputParameters emptyInputParameters()
MultiMooseEnum getCommonPetscFlags()
A helper function to produce a MultiMooseEnum with commonly used PETSc single options (flags) ...
Definition: PetscSupport.C:938
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:33
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...
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...
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...

◆ isSNESVI()

bool Moose::PetscSupport::isSNESVI ( FEProblemBase fe_problem)

check if SNES type is variational inequalities (VI) solver

Definition at line 980 of file PetscSupport.C.

Referenced by BoundsBase::BoundsBase().

981 {
982  const PetscOptions & petsc = fe_problem.getPetscOptions();
983 
984  int argc;
985  char ** args;
986  LibmeshPetscCallA(fe_problem.comm().get(), PetscGetArgs(&argc, &args));
987 
988  std::vector<std::string> cml_arg;
989  for (int i = 0; i < argc; i++)
990  cml_arg.push_back(args[i]);
991 
992  if (MooseUtils::findPair(petsc.pairs, petsc.pairs.begin(), MooseUtils::Any, "vinewtonssls") ==
993  petsc.pairs.end() &&
994  MooseUtils::findPair(petsc.pairs, petsc.pairs.begin(), MooseUtils::Any, "vinewtonrsls") ==
995  petsc.pairs.end() &&
996  std::find(cml_arg.begin(), cml_arg.end(), "vinewtonssls") == cml_arg.end() &&
997  std::find(cml_arg.begin(), cml_arg.end(), "vinewtonrsls") == cml_arg.end())
998  return false;
999 
1000  return true;
1001 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
const Parallel::Communicator & comm() const
auto findPair(C &container, It start_iterator, const M1 &first, const M2 &second)
Find a specific pair in a container matching on first, second or both pair components.
Definition: MooseUtils.h:1097
static const struct MooseUtils::AnyType Any

◆ outputNorm()

void Moose::PetscSupport::outputNorm ( libMesh::Real  old_norm,
libMesh::Real  norm,
bool  use_color = false 
)

Helper function for outputting the norm values with/without color.

◆ petscLinearMonitor()

PetscErrorCode Moose::PetscSupport::petscLinearMonitor ( KSP  ,
PetscInt  its,
PetscReal  rnorm,
void void_ptr 
)

Helper function for displaying the linear residual during PETSC solve.

◆ petscNonlinearConverged()

PetscErrorCode Moose::PetscSupport::petscNonlinearConverged ( SNES  ,
PetscInt  it,
PetscReal  ,
PetscReal  ,
PetscReal  ,
SNESConvergedReason *  reason,
void ctx 
)

Definition at line 310 of file PetscSupport.C.

Referenced by petscSetDefaults().

317 {
318  PetscFunctionBegin;
319  FEProblemBase & problem = *static_cast<FEProblemBase *>(ctx);
320 
321  // execute objects that may be used in convergence check
323 
324  // perform the convergence check
327  {
330  }
331  else
332  {
333  auto & convergence = problem.getConvergence(
335  status = convergence.checkConvergence(it);
336  }
337 
338  // convert convergence status to PETSc converged reason
339  switch (status)
340  {
342  *reason = SNES_CONVERGED_ITERATING;
343  break;
344 
346  *reason = SNES_CONVERGED_FNORM_ABS;
347  break;
348 
350  *reason = SNES_DIVERGED_DTOL;
351  break;
352  }
353 
354  PetscFunctionReturn(PETSC_SUCCESS);
355 }
void resetFailNextNonlinearConvergenceCheck()
Do not skip further residual evaluations and fail the next nonlinear convergence check.
const ExecFlagType EXEC_NONLINEAR_CONVERGENCE
Definition: Moose.C:30
std::vector< ConvergenceName > getNonlinearConvergenceNames() const
Gets the nonlinear convergence object name(s).
virtual MooseConvergenceStatus checkConvergence(unsigned int iter)=0
Returns convergence status.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
MPI_Status status
virtual void execute(const ExecFlagType &exec_type)
Convenience function for performing execution of MOOSE systems.
virtual Convergence & getConvergence(const std::string &name, const THREAD_ID tid=0) const
Gets a Convergence object.
NonlinearSystemBase & currentNonlinearSystem()
unsigned int number() const
Gets the number of this system.
Definition: SystemBase.C:1130
MooseConvergenceStatus
Status returned by calls to checkConvergence.
Definition: Convergence.h:33
bool getFailNextNonlinearConvergenceCheck() const
Whether it will skip further residual evaluations and fail the next nonlinear convergence check...
void * ctx
PetscFunctionReturn(LIBMESH_PETSC_SUCCESS)

◆ petscSetDefaultKSPNormType()

void Moose::PetscSupport::petscSetDefaultKSPNormType ( FEProblemBase problem,
KSP  ksp 
)

Set norm type.

Definition at line 396 of file PetscSupport.C.

Referenced by Moose::SlepcSupport::mooseSlepcEPSSNESKSPSetPCSide(), and petscSetKSPDefaults().

397 {
398  for (const auto i : make_range(problem.numSolverSystems()))
399  {
400  SolverSystem & sys = problem.getSolverSystem(i);
401  LibmeshPetscCallA(problem.comm().get(),
402  KSPSetNormType(ksp, getPetscKSPNormType(sys.getMooseKSPNormType())));
403  }
404 }
KSPNormType getPetscKSPNormType(Moose::MooseKSPNormType kspnorm)
Definition: PetscSupport.C:375
const Parallel::Communicator & comm() const
IntRange< T > make_range(T beg, T end)
SolverSystem & getSolverSystem(unsigned int sys_num)
Get non-constant reference to a solver system.
Moose::MooseKSPNormType getMooseKSPNormType()
Get the norm in which the linear convergence is measured.
Definition: SolverSystem.h:87
virtual std::size_t numSolverSystems() const override

◆ petscSetDefaultPCSide()

void Moose::PetscSupport::petscSetDefaultPCSide ( FEProblemBase problem,
KSP  ksp 
)

Setup which side we want to apply preconditioner.

Definition at line 407 of file PetscSupport.C.

Referenced by Moose::SlepcSupport::mooseSlepcEPSSNESKSPSetPCSide(), and petscSetKSPDefaults().

408 {
409  for (const auto i : make_range(problem.numSolverSystems()))
410  {
411  SolverSystem & sys = problem.getSolverSystem(i);
412 
413  // PETSc 3.2.x+
414  if (sys.getPCSide() != Moose::PCS_DEFAULT)
415  LibmeshPetscCallA(problem.comm().get(), KSPSetPCSide(ksp, getPetscPCSide(sys.getPCSide())));
416  }
417 }
const Parallel::Communicator & comm() const
PCSide getPetscPCSide(Moose::PCSideType pcs)
Definition: PetscSupport.C:358
Use whatever we have in PETSc.
Definition: MooseTypes.h:818
IntRange< T > make_range(T beg, T end)
SolverSystem & getSolverSystem(unsigned int sys_num)
Get non-constant reference to a solver system.
virtual std::size_t numSolverSystems() const override
Moose::PCSideType getPCSide()
Get the current preconditioner side.
Definition: SolverSystem.h:76

◆ petscSetDefaults()

void Moose::PetscSupport::petscSetDefaults ( FEProblemBase problem)

Sets the default options for PETSc.

Definition at line 442 of file PetscSupport.C.

Referenced by FEProblemBase::initPetscOutputAndSomeSolverSettings(), and Moose::setSolverDefaults().

443 {
444  // We care about both nonlinear and linear systems when setting the SNES prefix because
445  // SNESSetOptionsPrefix will also set its KSP prefix which could compete with linear system KSPs
446  for (const auto nl_index : make_range(problem.numNonlinearSystems()))
447  {
448  NonlinearSystemBase & nl = problem.getNonlinearSystemBase(nl_index);
449 
450  //
451  // prefix system matrices
452  //
453 
454  auto & lm_sys = nl.system();
455  // This check is necessary because we still have at least the system matrix lying around even
456  // when doing matrix-free, but critically even though the libmesh object(s) exist, the wrapped
457  // PETSc Mat(s) do not
458  if (problem.solverParams(nl_index)._type != Moose::ST_JFNK)
459  for (auto & [mat_name, mat] : as_range(lm_sys.matrices_begin(), lm_sys.matrices_end()))
460  {
461  libmesh_ignore(mat_name);
462  if (auto * const petsc_mat = dynamic_cast<PetscMatrixBase<Number> *>(mat.get()); petsc_mat)
463  {
464  LibmeshPetscCallA(nl.comm().get(),
465  MatSetOptionsPrefix(petsc_mat->mat(), (nl.name() + "_").c_str()));
466  // We should call this here to ensure that options from the command line are properly
467  // applied
468  LibmeshPetscCallA(nl.comm().get(), MatSetFromOptions(petsc_mat->mat()));
469  }
470  }
471 
472  //
473  // prefix SNES/KSP
474  //
475 
476  // dig out PETSc solver
477  auto * const petsc_solver = cast_ptr<PetscNonlinearSolver<Number> *>(nl.nonlinearSolver());
478  const char * snes_prefix = nullptr;
479  std::string snes_prefix_str;
480  if (nl.system().prefix_with_name())
481  {
482  snes_prefix_str = nl.system().prefix();
483  snes_prefix = snes_prefix_str.c_str();
484  }
485  SNES snes = petsc_solver->snes(snes_prefix);
486  KSP ksp;
487  LibmeshPetscCallA(nl.comm().get(), SNESGetKSP(snes, &ksp));
488 
489  LibmeshPetscCallA(nl.comm().get(), SNESSetMaxLinearSolveFailures(snes, 1000000));
490 
491  LibmeshPetscCallA(nl.comm().get(), SNESSetCheckJacobianDomainError(snes, PETSC_TRUE));
492 
493  // In 3.0.0, the context pointer must actually be used, and the
494  // final argument to KSPSetConvergenceTest() is a pointer to a
495  // routine for destroying said private data context. In this case,
496  // we use the default context provided by PETSc in addition to
497  // a few other tests.
498  {
499  LibmeshPetscCallA(
500  nl.comm().get(),
501  SNESSetConvergenceTest(snes, petscNonlinearConverged, &problem, LIBMESH_PETSC_NULLPTR));
502  }
503 
504  petscSetKSPDefaults(problem, ksp);
505  }
506 
507  for (auto sys_index : make_range(problem.numLinearSystems()))
508  {
509  // dig out PETSc solver
510  LinearSystem & lin_sys = problem.getLinearSystem(sys_index);
511  PetscLinearSolver<Number> * petsc_solver = dynamic_cast<PetscLinearSolver<Number> *>(
513  KSP ksp = petsc_solver->ksp();
514  petscSetKSPDefaults(problem, ksp);
515  }
516 }
virtual std::size_t numNonlinearSystems() const override
libMesh::LinearImplicitSystem & linearImplicitSystem()
Return a reference to the stored linear implicit system.
Definition: LinearSystem.h:86
const Parallel::Communicator & comm() const
void petscSetKSPDefaults(FEProblemBase &problem, KSP ksp)
Set the default options for a KSP.
Definition: PetscSupport.C:420
virtual libMesh::NonlinearSolver< Number > * nonlinearSolver()=0
virtual LinearSolver< Number > * get_linear_solver() const override
Nonlinear system to be solved.
virtual const std::string & name() const
Definition: SystemBase.C:1301
void libmesh_ignore(const Args &...)
PetscErrorCode petscNonlinearConverged(SNES, PetscInt it, PetscReal, PetscReal, PetscReal, SNESConvergedReason *reason, void *ctx)
Definition: PetscSupport.C:310
std::string prefix() const
SimpleRange< IndexType > as_range(const std::pair< IndexType, IndexType > &p)
Jacobian-Free Newton Krylov.
Definition: MooseTypes.h:839
Moose::SolveType _type
Definition: SolverParams.h:19
NonlinearSystemBase & getNonlinearSystemBase(const unsigned int sys_num)
LinearSystem & getLinearSystem(unsigned int sys_num)
Get non-constant reference to a linear system.
IntRange< T > make_range(T beg, T end)
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
Linear system to be solved.
Definition: LinearSystem.h:35
virtual std::size_t numLinearSystems() const override
void prefix_with_name(bool value)
virtual libMesh::System & system() override
Get the reference to the libMesh system.

◆ petscSetKSPDefaults()

void Moose::PetscSupport::petscSetKSPDefaults ( FEProblemBase problem,
KSP  ksp 
)

Set the default options for a KSP.

Definition at line 420 of file PetscSupport.C.

Referenced by petscSetDefaults(), and setLinearSolverDefaults().

421 {
422  auto & es = problem.es();
423 
424  PetscReal rtol = es.parameters.get<Real>("linear solver tolerance");
425  PetscReal atol = es.parameters.get<Real>("linear solver absolute tolerance");
426 
427  // MOOSE defaults this to -1 for some dumb reason
428  if (atol < 0)
429  atol = 1e-50;
430 
431  PetscReal maxits = es.parameters.get<unsigned int>("linear solver maximum iterations");
432 
433  // 1e100 is because we don't use divtol currently
434  LibmeshPetscCallA(problem.comm().get(), KSPSetTolerances(ksp, rtol, atol, 1e100, maxits));
435 
436  petscSetDefaultPCSide(problem, ksp);
437 
438  petscSetDefaultKSPNormType(problem, ksp);
439 }
const Parallel::Communicator & comm() const
void petscSetDefaultKSPNormType(FEProblemBase &problem, KSP ksp)
Set norm type.
Definition: PetscSupport.C:396
const T & get(std::string_view) const
virtual libMesh::EquationSystems & es() override
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void petscSetDefaultPCSide(FEProblemBase &problem, KSP ksp)
Setup which side we want to apply preconditioner.
Definition: PetscSupport.C:407

◆ petscSetOptions() [1/2]

void Moose::PetscSupport::petscSetOptions ( const PetscOptions po,
const SolverParams solver_params,
FEProblemBase *const  problem = nullptr 
)

A function for setting the PETSc options in PETSc from the options supplied to MOOSE.

This interface function should be used when setting options on a per-system basis

Definition at line 272 of file PetscSupport.C.

Referenced by Moose::SlepcSupport::slepcSetOptions(), FEProblemBase::solve(), and FEProblemBase::solveLinearSystem().

275 {
276  PetscCallAbort(PETSC_COMM_WORLD, PetscOptionsClear(LIBMESH_PETSC_NULLPTR));
277  setSolverOptions(solver_params, po.dont_add_these_options);
278  petscSetOptionsHelper(po, problem);
279 }
void setSolverOptions(const SolverParams &solver_params, const MultiMooseEnum &dont_add_these_options)
Definition: PetscSupport.C:145
void petscSetOptionsHelper(const PetscOptions &po, FEProblemBase *const problem)
Definition: PetscSupport.C:252

◆ petscSetOptions() [2/2]

void Moose::PetscSupport::petscSetOptions ( const PetscOptions po,
const std::vector< SolverParams > &  solver_params,
FEProblemBase problem 
)

A function for setting the PETSc options in PETSc from the options supplied to MOOSE.

This interface function should be used for setting options all at once for all systems in a multi-system context. Note that PetscOptions is not a vector because the options database has prefixes for the different systems

Definition at line 282 of file PetscSupport.C.

285 {
286  PetscCallAbort(PETSC_COMM_WORLD, PetscOptionsClear(LIBMESH_PETSC_NULLPTR));
287  for (const auto & solver_params : solver_params_vec)
288  setSolverOptions(solver_params, po.dont_add_these_options);
289  petscSetOptionsHelper(po, problem);
290 }
void setSolverOptions(const SolverParams &solver_params, const MultiMooseEnum &dont_add_these_options)
Definition: PetscSupport.C:145
void petscSetOptionsHelper(const PetscOptions &po, FEProblemBase *const problem)
Definition: PetscSupport.C:252

◆ petscSetOptionsHelper()

void Moose::PetscSupport::petscSetOptionsHelper ( const PetscOptions po,
FEProblemBase *const  problem 
)

Definition at line 252 of file PetscSupport.C.

Referenced by petscSetOptions().

253 {
254  // Add any additional options specified in the input file
255  for (const auto & flag : po.flags)
256  // Need to use name method here to pass a str instead of an EnumItem because
257  // we don't care if the id attributes match
258  if (!po.dont_add_these_options.contains(flag.name()) ||
259  po.user_set_options.contains(flag.name()))
260  setSinglePetscOption(flag.rawName().c_str());
261 
262  // Add option pairs
263  for (auto & option : po.pairs)
264  if (!po.dont_add_these_options.contains(option.first) ||
265  po.user_set_options.contains(option.first))
266  setSinglePetscOption(option.first, option.second, problem);
267 
269 }
void addPetscOptionsFromCommandline()
Definition: PetscSupport.C:233
void setSinglePetscOption(const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
A wrapper function for dealing with different versions of PetscOptionsSetValue.

◆ petscSetupDM()

void Moose::PetscSupport::petscSetupDM ( NonlinearSystemBase nl,
const std::string &  dm_name 
)

Setup the PETSc DM object.

Definition at line 190 of file PetscSupport.C.

Referenced by NonlinearSystemBase::setupDM().

191 {
192  PetscBool ismoose;
193  DM dm = LIBMESH_PETSC_NULLPTR;
194 
195  // Initialize the part of the DM package that's packaged with Moose; in the PETSc source tree this
196  // call would be in DMInitializePackage()
197  LibmeshPetscCallA(nl.comm().get(), DMMooseRegisterAll());
198  // Create and set up the DM that will consume the split options and deal with block matrices.
199  PetscNonlinearSolver<Number> * petsc_solver =
200  dynamic_cast<PetscNonlinearSolver<Number> *>(nl.nonlinearSolver());
201  const char * snes_prefix = nullptr;
202  std::string snes_prefix_str;
203  if (nl.system().prefix_with_name())
204  {
205  snes_prefix_str = nl.system().prefix();
206  snes_prefix = snes_prefix_str.c_str();
207  }
208  SNES snes = petsc_solver->snes(snes_prefix);
209  // if there exists a DMMoose object, not to recreate a new one
210  LibmeshPetscCallA(nl.comm().get(), SNESGetDM(snes, &dm));
211  if (dm)
212  {
213  LibmeshPetscCallA(nl.comm().get(), PetscObjectTypeCompare((PetscObject)dm, DMMOOSE, &ismoose));
214  if (ismoose)
215  return;
216  }
217  LibmeshPetscCallA(nl.comm().get(), DMCreateMoose(nl.comm().get(), nl, dm_name, &dm));
218  LibmeshPetscCallA(nl.comm().get(), DMSetFromOptions(dm));
219  LibmeshPetscCallA(nl.comm().get(), DMSetUp(dm));
220  LibmeshPetscCallA(nl.comm().get(), SNESSetDM(snes, dm));
221  LibmeshPetscCallA(nl.comm().get(), DMDestroy(&dm));
222  // We temporarily comment out this updating function because
223  // we lack an approach to check if the problem
224  // structure has been changed from the last iteration.
225  // The indices will be rebuilt for every timestep.
226  // TODO: figure out a way to check the structure changes of the
227  // matrix
228  // ierr = SNESSetUpdate(snes,SNESUpdateDMMoose);
229  // CHKERRABORT(nl.comm().get(),ierr);
230 }
SNES snes(const char *name=nullptr)
const Parallel::Communicator & comm() const
virtual libMesh::NonlinearSolver< Number > * nonlinearSolver()=0
std::string prefix() const
PetscErrorCode DMCreateMoose(MPI_Comm comm, NonlinearSystemBase &nl, const std::string &dm_name, DM *dm)
Create a MOOSE DM.
void prefix_with_name(bool value)
PetscErrorCode DMMooseRegisterAll()
virtual libMesh::System & system() override
Get the reference to the libMesh system.

◆ petscSetupOutput()

PetscErrorCode Moose::PetscSupport::petscSetupOutput ( CommandLine cmd_line)

Definition at line 293 of file PetscSupport.C.

Referenced by MooseApp::executeExecutioner().

294 {
295  PetscFunctionBegin;
296  char code[10] = {45, 45, 109, 111, 111, 115, 101};
297  const std::vector<std::string> argv = cmd_line->getArguments();
298  for (const auto & arg : argv)
299  {
300  if (arg.compare(code) == 0)
301  {
303  break;
304  }
305  }
306  PetscFunctionReturn(PETSC_SUCCESS);
307 }
static void petscSetupOutput()
Output string for setting up PETSC output.
Definition: Console.C:828
PetscFunctionReturn(LIBMESH_PETSC_SUCCESS)
const std::vector< std::string > & getArguments()
Definition: CommandLine.h:132

◆ processSingletonMooseWrappedOptions()

void Moose::PetscSupport::processSingletonMooseWrappedOptions ( FEProblemBase fe_problem,
const InputParameters params 
)

Process some MOOSE-wrapped PETSc options.

These options have no support for multi-system as indicated by the fact that this function takes no prefix nor solver system argument

Definition at line 519 of file PetscSupport.C.

Referenced by MoosePreconditioner::MoosePreconditioner(), and storePetscOptions().

520 {
521  setSolveTypeFromParams(fe_problem, params);
522  setLineSearchFromParams(fe_problem, params);
523  setMFFDTypeFromParams(fe_problem, params);
524 }
void setMFFDTypeFromParams(FEProblemBase &fe_problem, const InputParameters &params)
Sets the FE problem&#39;s matrix-free finite difference type from the input params.
Definition: PetscSupport.C:597
void setSolveTypeFromParams(FEProblemBase &fe_problem, const InputParameters &params)
Sets the FE problem&#39;s solve type from the input params.
Definition: PetscSupport.C:552
void setLineSearchFromParams(FEProblemBase &fe_problem, const InputParameters &params)
Sets the FE problem&#39;s line search from the input params.
Definition: PetscSupport.C:565

◆ setConvergedReasonFlags()

void Moose::PetscSupport::setConvergedReasonFlags ( FEProblemBase fe_problem,
const std::string &  prefix 
)

Set flags that will instruct the user on the reason their simulation diverged from PETSc's perspective.

Definition at line 676 of file PetscSupport.C.

Referenced by FEProblemSolve::FEProblemSolve().

677 {
678  checkPrefix(prefix);
679  libmesh_ignore(fe_problem); // avoid unused warnings for old PETSc
680 
681 #if !PETSC_VERSION_LESS_THAN(3, 14, 0)
682  // the boolean in these pairs denote whether the user has specified any of the reason flags in the
683  // input file
684  std::array<std::string, 2> reason_flags = {{"snes_converged_reason", "ksp_converged_reason"}};
685 
686  auto & po = fe_problem.getPetscOptions();
687 
688  for (const auto & reason_flag : reason_flags)
689  if (!po.flags.isValueSet(prefix + reason_flag) &&
690  (std::find_if(po.pairs.begin(),
691  po.pairs.end(),
692  [&reason_flag, &prefix](auto & pair)
693  { return pair.first == (prefix + reason_flag); }) == po.pairs.end()))
694  po.pairs.emplace_back(prefix + reason_flag, "::failed");
695 #endif
696 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
std::vector< std::pair< std::string, std::string > > pairs
PETSc key-value pairs.
Definition: PetscSupport.h:48
void libmesh_ignore(const Args &...)

◆ setLinearSolverDefaults()

template<typename T >
void Moose::PetscSupport::setLinearSolverDefaults ( FEProblemBase problem,
libMesh::LinearSolver< T > &  linear_solver 
)

Set the defaults for a libMesh LinearSolver.

Used in explicit solves

Definition at line 93 of file PetscSupport.h.

Referenced by ExplicitTimeIntegrator::meshChanged().

94 {
95  petscSetKSPDefaults(problem,
96  libMesh::cast_ref<libMesh::PetscLinearSolver<T> &>(linear_solver).ksp());
97 }
Tnew cast_ref(Told &oldvar)
void petscSetKSPDefaults(FEProblemBase &problem, KSP ksp)
Set the default options for a KSP.
Definition: PetscSupport.C:420

◆ setLineSearchFromParams()

void Moose::PetscSupport::setLineSearchFromParams ( FEProblemBase fe_problem,
const InputParameters params 
)

Sets the FE problem's line search from the input params.

Definition at line 565 of file PetscSupport.C.

Referenced by processSingletonMooseWrappedOptions().

566 {
567  // Note: Options set in the Preconditioner block will override those set in the Executioner block
568  if (params.isParamValid("line_search"))
569  {
570  const auto & line_search = params.get<MooseEnum>("line_search");
571  for (const auto i : make_range(fe_problem.numNonlinearSystems()))
572  if (fe_problem.solverParams(i)._line_search == Moose::LS_INVALID || line_search != "default")
573  {
574  Moose::LineSearchType enum_line_search =
575  Moose::stringToEnum<Moose::LineSearchType>(line_search);
576  fe_problem.solverParams(i)._line_search = enum_line_search;
577  if (enum_line_search == LS_CONTACT || enum_line_search == LS_PROJECT)
578  {
579  NonlinearImplicitSystem * nl_system = dynamic_cast<NonlinearImplicitSystem *>(
580  &fe_problem.getNonlinearSystemBase(i).system());
581  if (!nl_system)
582  mooseError("You've requested a line search but you must be solving an EigenProblem. "
583  "These two things are not consistent.");
584  PetscNonlinearSolver<Real> * petsc_nonlinear_solver =
585  dynamic_cast<PetscNonlinearSolver<Real> *>(nl_system->nonlinear_solver.get());
586  if (!petsc_nonlinear_solver)
587  mooseError("Currently the MOOSE line searches all use Petsc, so you "
588  "must use Petsc as your non-linear solver.");
589  petsc_nonlinear_solver->linesearch_object =
590  std::make_unique<ComputeLineSearchObjectWrapper>(fe_problem);
591  }
592  }
593  }
594 }
std::unique_ptr< NonlinearSolver< Number > > nonlinear_solver
virtual std::size_t numNonlinearSystems() const override
Moose::LineSearchType _line_search
Definition: SolverParams.h:20
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
LineSearchType
Type of the line search.
Definition: MooseTypes.h:919
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:33
NonlinearSystemBase & getNonlinearSystemBase(const unsigned int sys_num)
std::unique_ptr< ComputeLineSearchObject > linesearch_object
IntRange< T > make_range(T beg, T end)
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
means not set
Definition: MooseTypes.h:921
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.
virtual libMesh::System & system() override
Get the reference to the libMesh system.

◆ setMFFDTypeFromParams()

void Moose::PetscSupport::setMFFDTypeFromParams ( FEProblemBase fe_problem,
const InputParameters params 
)

Sets the FE problem's matrix-free finite difference type from the input params.

Definition at line 597 of file PetscSupport.C.

Referenced by processSingletonMooseWrappedOptions().

598 {
599  if (params.isParamValid("mffd_type"))
600  {
601  const auto & mffd_type = params.get<MooseEnum>("mffd_type");
602  for (const auto i : make_range(fe_problem.numNonlinearSystems()))
603  fe_problem.solverParams(i)._mffd_type = Moose::stringToEnum<Moose::MffdType>(mffd_type);
604  }
605 }
virtual std::size_t numNonlinearSystems() const override
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
Moose::MffdType _mffd_type
Definition: SolverParams.h:21
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:33
IntRange< T > make_range(T beg, T end)
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ setSinglePetscOption()

void Moose::PetscSupport::setSinglePetscOption ( const std::string &  name,
const std::string &  value = "",
FEProblemBase *const  problem = nullptr 
)

A wrapper function for dealing with different versions of PetscOptionsSetValue.

This is not generally called from MOOSE code, it is instead intended to be called by stuff in MOOSE::PetscSupport.

Definition at line 1004 of file PetscSupport.C.

Referenced by Moose::SlepcSupport::clearFreeNonlinearPowerIterations(), FEProblemBase::FEProblemBase(), petscSetOptionsHelper(), CommandLine::printUsage(), Moose::SlepcSupport::setEigenProblemOptions(), Moose::SlepcSupport::setEigenSolverOptions(), Moose::SlepcSupport::setFreeNonlinearPowerIterations(), Moose::SlepcSupport::setNewtonPetscOptions(), Moose::SlepcSupport::setNonlinearPowerOptions(), setSinglePetscOptionIfAppropriate(), Moose::SlepcSupport::setSlepcEigenSolverTolerances(), Moose::SlepcSupport::setWhichEigenPairsOptions(), and Moose::SlepcSupport::slepcSetOptions().

1007 {
1008  static const TIMPI::Communicator comm_world(PETSC_COMM_WORLD);
1009  const TIMPI::Communicator & comm = problem ? problem->comm() : comm_world;
1010  LibmeshPetscCallA(comm.get(),
1011  PetscOptionsSetValue(LIBMESH_PETSC_NULLPTR,
1012  name.c_str(),
1013  value == "" ? LIBMESH_PETSC_NULLPTR : value.c_str()));
1014  const auto lower_case_name = MooseUtils::toLower(name);
1015  auto check_problem = [problem, &lower_case_name]()
1016  {
1017  if (!problem)
1018  mooseError(
1019  "Setting the option '",
1020  lower_case_name,
1021  "' requires passing a 'problem' parameter. Contact a developer of your application "
1022  "to have them update their code. If in doubt, reach out to the MOOSE team on Github "
1023  "discussions");
1024  };
1025 
1026  // Select vector type from user-passed PETSc options
1027  if (lower_case_name.find("-vec_type") != std::string::npos)
1028  {
1029  check_problem();
1030  for (auto & solver_system : problem->_solver_systems)
1031  {
1032  auto & lm_sys = solver_system->system();
1033  for (auto & [vec_name, vec] : as_range(lm_sys.vectors_begin(), lm_sys.vectors_end()))
1034  {
1035  libmesh_ignore(vec_name);
1036  auto * const petsc_vec = cast_ptr<PetscVector<Number> *>(vec.get());
1037  LibmeshPetscCallA(comm.get(), VecSetFromOptions(petsc_vec->vec()));
1038  }
1039  // The solution vectors aren't included in the system vectors storage
1040  auto * petsc_vec = cast_ptr<PetscVector<Number> *>(lm_sys.solution.get());
1041  LibmeshPetscCallA(comm.get(), VecSetFromOptions(petsc_vec->vec()));
1042  petsc_vec = cast_ptr<PetscVector<Number> *>(lm_sys.current_local_solution.get());
1043  LibmeshPetscCallA(comm.get(), VecSetFromOptions(petsc_vec->vec()));
1044  }
1045  }
1046  // Select matrix type from user-passed PETSc options
1047  else if (lower_case_name.find("mat_type") != std::string::npos)
1048  {
1049  check_problem();
1050 
1051  bool found_matching_prefix = false;
1052  for (const auto i : index_range(problem->_solver_systems))
1053  {
1054  const auto & solver_sys_name = problem->_solver_sys_names[i];
1055  if (lower_case_name.find("-" + MooseUtils::toLower(solver_sys_name) + "_mat_type") ==
1056  std::string::npos)
1057  continue;
1058 
1059  if (problem->solverParams(i)._type == Moose::ST_JFNK)
1060  mooseError(
1061  "Setting option '", lower_case_name, "' is incompatible with a JFNK 'solve_type'");
1062 
1063  auto & lm_sys = problem->_solver_systems[i]->system();
1064  for (auto & [mat_name, mat] : as_range(lm_sys.matrices_begin(), lm_sys.matrices_end()))
1065  {
1066  libmesh_ignore(mat_name);
1067  if (auto * const petsc_mat = dynamic_cast<PetscMatrixBase<Number> *>(mat.get()); petsc_mat)
1068  {
1069 #ifdef DEBUG
1070  const char * mat_prefix;
1071  LibmeshPetscCallA(comm.get(), MatGetOptionsPrefix(petsc_mat->mat(), &mat_prefix));
1072  mooseAssert(strcmp(mat_prefix, (solver_sys_name + "_").c_str()) == 0,
1073  "We should have prefixed these matrices previously");
1074 #endif
1075  LibmeshPetscCallA(comm.get(), MatSetFromOptions(petsc_mat->mat()));
1076  }
1077  }
1078  found_matching_prefix = true;
1079  break;
1080  }
1081 
1082  if (!found_matching_prefix)
1083  mooseError("We did not find a matching solver system name for the petsc option '",
1084  lower_case_name,
1085  "'");
1086  }
1087 }
std::string name(const ElemQuality q)
std::string toLower(const std::string &name)
Convert supplied string to lower case.
Definition: MooseUtils.C:1068
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
const Parallel::Communicator & comm() const
std::vector< std::shared_ptr< SolverSystem > > _solver_systems
Combined container to base pointer of every solver system.
void libmesh_ignore(const Args &...)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
SimpleRange< IndexType > as_range(const std::pair< IndexType, IndexType > &p)
Jacobian-Free Newton Krylov.
Definition: MooseTypes.h:839
Moose::SolveType _type
Definition: SolverParams.h:19
communicator & get()
std::vector< std::string > _solver_sys_names
The union of nonlinear and linear system names.
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
auto index_range(const T &sizable)

◆ setSinglePetscOptionIfAppropriate()

void Moose::PetscSupport::setSinglePetscOptionIfAppropriate ( const MultiMooseEnum dont_add_these_options,
const std::string &  name,
const std::string &  value = "",
FEProblemBase *const  problem = nullptr 
)

Same as setSinglePetscOption, but does not set the option if it doesn't make sense for the current simulation type, e.g.

if name is contained within dont_add_these_options

Definition at line 1090 of file PetscSupport.C.

Referenced by setSolverOptions().

1094 {
1095  if (!dont_add_these_options.contains(name))
1096  setSinglePetscOption(name, value, problem);
1097 }
bool contains(const std::string &value) const
Methods for seeing if a value is set in the MultiMooseEnum.
void setSinglePetscOption(const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
A wrapper function for dealing with different versions of PetscOptionsSetValue.

◆ setSolverOptions()

void Moose::PetscSupport::setSolverOptions ( const SolverParams solver_params,
const MultiMooseEnum dont_add_these_options 
)

Definition at line 145 of file PetscSupport.C.

Referenced by petscSetOptions().

146 {
147  // set PETSc options implied by a solve type
148  switch (solver_params._type)
149  {
150  case Moose::ST_PJFNK:
151  setSinglePetscOptionIfAppropriate(dont_add_these_options,
152  solver_params._prefix + "snes_mf_operator");
153  setSinglePetscOptionIfAppropriate(dont_add_these_options,
154  solver_params._prefix + "mat_mffd_type",
155  stringify(solver_params._mffd_type));
156  break;
157 
158  case Moose::ST_JFNK:
159  setSinglePetscOptionIfAppropriate(dont_add_these_options, solver_params._prefix + "snes_mf");
160  setSinglePetscOptionIfAppropriate(dont_add_these_options,
161  solver_params._prefix + "mat_mffd_type",
162  stringify(solver_params._mffd_type));
163  break;
164 
165  case Moose::ST_NEWTON:
166  break;
167 
168  case Moose::ST_FD:
169  setSinglePetscOptionIfAppropriate(dont_add_these_options, solver_params._prefix + "snes_fd");
170  break;
171 
172  case Moose::ST_LINEAR:
174  dont_add_these_options, solver_params._prefix + "snes_type", "ksponly");
175  setSinglePetscOptionIfAppropriate(dont_add_these_options,
176  solver_params._prefix + "snes_monitor_cancel");
177  break;
178  }
179 
180  Moose::LineSearchType ls_type = solver_params._line_search;
181  if (ls_type == Moose::LS_NONE)
182  ls_type = Moose::LS_BASIC;
183 
184  if (ls_type != Moose::LS_DEFAULT && ls_type != Moose::LS_CONTACT && ls_type != Moose::LS_PROJECT)
186  dont_add_these_options, solver_params._prefix + "snes_linesearch_type", stringify(ls_type));
187 }
Full Newton Solve.
Definition: MooseTypes.h:840
std::string _prefix
Definition: SolverParams.h:35
Moose::LineSearchType _line_search
Definition: SolverParams.h:20
Solving a linear problem.
Definition: MooseTypes.h:842
Moose::MffdType _mffd_type
Definition: SolverParams.h:21
LineSearchType
Type of the line search.
Definition: MooseTypes.h:919
std::string stringify(const MffdType &t)
Definition: PetscSupport.C:130
Jacobian-Free Newton Krylov.
Definition: MooseTypes.h:839
Moose::SolveType _type
Definition: SolverParams.h:19
Use finite differences to compute Jacobian.
Definition: MooseTypes.h:841
void setSinglePetscOptionIfAppropriate(const MultiMooseEnum &dont_add_these_options, const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
Same as setSinglePetscOption, but does not set the option if it doesn&#39;t make sense for the current si...
Preconditioned Jacobian-Free Newton Krylov.
Definition: MooseTypes.h:838

◆ setSolveTypeFromParams()

void Moose::PetscSupport::setSolveTypeFromParams ( FEProblemBase fe_problem,
const InputParameters params 
)

Sets the FE problem's solve type from the input params.

Definition at line 552 of file PetscSupport.C.

Referenced by processSingletonMooseWrappedOptions().

553 {
554  // Note: Options set in the Preconditioner block will override those set in the Executioner block
555  if (params.isParamValid("solve_type") && !params.isParamValid("_use_eigen_value"))
556  {
557  // Extract the solve type
558  const std::string & solve_type = params.get<MooseEnum>("solve_type");
559  for (const auto i : make_range(fe_problem.numNonlinearSystems()))
560  fe_problem.solverParams(i)._type = Moose::stringToEnum<Moose::SolveType>(solve_type);
561  }
562 }
virtual std::size_t numNonlinearSystems() const override
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:33
Moose::SolveType _type
Definition: SolverParams.h:19
IntRange< T > make_range(T beg, T end)
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ storePetscOptions()

void Moose::PetscSupport::storePetscOptions ( FEProblemBase fe_problem,
const std::string &  prefix,
const ParallelParamObject param_object 
)

Stores the PETSc options supplied from the parameter object on the problem.

Parameters
fe_problemThe problem on which we will store the parameters
prefixA prefix to apply to all the parameter object's PETSc options. This should either be a single character '-' or a string like "-foo_" where the trailing '_' is required
param_objectThe parameter object potentially holding PETSc options String prefixes may be used to select the system the parameters is applied to

Definition at line 527 of file PetscSupport.C.

Referenced by FEProblemSolve::FEProblemSolve(), MoosePreconditioner::MoosePreconditioner(), and Split::setup().

530 {
531  const auto & params = param_object.parameters();
532  processSingletonMooseWrappedOptions(fe_problem, params);
533 
534  // The parameters contained in the Action
535  const auto & petsc_options = params.get<MultiMooseEnum>("petsc_options");
536  const auto & petsc_pair_options =
537  params.get<MooseEnumItem, std::string>("petsc_options_iname", "petsc_options_value");
538 
539  // A reference to the PetscOptions object that contains the settings that will be used in the
540  // solve
541  auto & po = fe_problem.getPetscOptions();
542 
543  // First process the single petsc options/flags
544  addPetscFlagsToPetscOptions(petsc_options, prefix, param_object, po);
545 
546  // Then process the option-value pairs
548  petsc_pair_options, fe_problem.mesh().dimension(), prefix, param_object, po);
549 }
Moose::PetscSupport::PetscOptions & getPetscOptions()
Retrieve a writable reference the PETSc options (used by PetscSupport)
void processSingletonMooseWrappedOptions(FEProblemBase &fe_problem, const InputParameters &params)
Process some MOOSE-wrapped PETSc options.
Definition: PetscSupport.C:519
virtual unsigned int dimension() const
Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh me...
Definition: MooseMesh.C:2897
unsigned int get(unsigned int i) const
Indexing operator Operator to retrieve the id of an item from the MultiMooseEnum. ...
Class for containing MooseEnum item information.
Definition: MooseEnumItem.h:18
void addPetscPairsToPetscOptions(const std::vector< std::pair< MooseEnumItem, std::string >> &petsc_pair_options, const unsigned int mesh_dimension, const std::string &prefix, const ParallelParamObject &param_object, PetscOptions &petsc_options)
Populate name and value pairs in a given PetscOptions object using vectors of input arguments...
Definition: PetscSupport.C:699
virtual MooseMesh & mesh() override
const InputParameters & parameters() const
Get the parameters of the object.
void addPetscFlagsToPetscOptions(const MultiMooseEnum &petsc_flags, const std::string &prefix, const ParallelParamObject &param_object, PetscOptions &petsc_options)
Populate flags in a given PetscOptions object using a vector of input arguments.
Definition: PetscSupport.C:623
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ storePetscOptionsFromParams()

void Moose::PetscSupport::storePetscOptionsFromParams ( FEProblemBase fe_problem,
const InputParameters params 
)

Stores the Petsc flags and pair options fron the input params in the given PetscOptions object.

◆ stringify() [1/2]

std::string Moose::PetscSupport::stringify ( const LineSearchType t)

Definition at line 101 of file PetscSupport.C.

102 {
103  switch (t)
104  {
105  case LS_BASIC:
106  return "basic";
107  case LS_DEFAULT:
108  return "default";
109  case LS_NONE:
110  return "none";
111  case LS_SHELL:
112  return "shell";
113  case LS_L2:
114  return "l2";
115  case LS_BT:
116  return "bt";
117  case LS_CP:
118  return "cp";
119  case LS_CONTACT:
120  return "contact";
121  case LS_PROJECT:
122  return "project";
123  case LS_INVALID:
124  mooseError("Invalid LineSearchType");
125  }
126  return "";
127 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
means not set
Definition: MooseTypes.h:921

◆ stringify() [2/2]

std::string Moose::PetscSupport::stringify ( const MffdType t)

Definition at line 130 of file PetscSupport.C.

Referenced by setSolverOptions().

131 {
132  switch (t)
133  {
134  case MFFD_WP:
135  return "wp";
136  case MFFD_DS:
137  return "ds";
138  case MFFD_INVALID:
139  mooseError("Invalid MffdType");
140  }
141  return "";
142 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
Definition: MooseError.h:302
means not set
Definition: MooseTypes.h:938