diff --git a/framework/doc/content/source/predictors/AdamsPredictor.md b/framework/doc/content/source/predictors/AdamsPredictor.md index 542443810c2a..8a12ec43d046 100644 --- a/framework/doc/content/source/predictors/AdamsPredictor.md +++ b/framework/doc/content/source/predictors/AdamsPredictor.md @@ -22,7 +22,7 @@ B = - \dfrac{\Delta t}{\Delta t_{old}} (1 + \dfrac{\Delta t}{2\Delta t_{old}} + !equation C = \dfrac{\Delta t}{\Delta t_{old}} \dfrac{\Delta t}{2\Delta t_{older}} -with $\dfrac{\Delta t}$, $\dfrac{\Delta t_{old}}$ and $\dfrac{\Delta t_{older}}$ +with $\Delta t$, $\Delta t_{old}$ and $\Delta t_{older}$ being the current, previous and antepenultimate time steps sizes. ## Example input syntax diff --git a/framework/src/postprocessors/ElementIntegralVariablePostprocessor.C b/framework/src/postprocessors/ElementIntegralVariablePostprocessor.C index 2dcad08538e3..2c28684deec5 100644 --- a/framework/src/postprocessors/ElementIntegralVariablePostprocessor.C +++ b/framework/src/postprocessors/ElementIntegralVariablePostprocessor.C @@ -18,7 +18,7 @@ ElementIntegralVariablePostprocessor::validParams() params.addRequiredCoupledVar("variable", "The name of the variable that this object operates on"); params.addClassDescription("Computes a volume integral of the specified variable"); params.addParam( - "use_absolute_value", false, "Whether to use abolsute value of the variable or not"); + "use_absolute_value", false, "Whether to use absolute value of the variable or not"); return params; } diff --git a/framework/src/splits/Split.C b/framework/src/splits/Split.C index 9af81fc19032..ea5e51c51681 100644 --- a/framework/src/splits/Split.C +++ b/framework/src/splits/Split.C @@ -27,11 +27,11 @@ Split::validParams() params.addParam>( "blocks", {}, "Mesh blocks Split operates on (omitting this implies \"all blocks\""); params.addParam>( - "sides", {}, "Sidesets Split operates on (omitting this implies \"no sidesets\""); + "sides", {}, "Sidesets Split operates on (omitting this implies \"all sidesets\")"); params.addParam>( "unsides", {}, - "Sidesets Split excludes (omitting this implies \"do not exclude any sidesets\""); + "Sidesets Split excludes (omitting this implies \"do not exclude any sidesets\")"); params.addParam>( "splitting", {}, "The names of the splits (subsystems) in the decomposition of this split"); params.addParam>( @@ -40,6 +40,8 @@ Split::validParams() params.addParam>( "unside_by_var_var_name", "A map from boundary name to unside by variable, e.g. only unside for a given variable."); + params.addParamNamesToGroup("sides unsides unside_by_var_boundary_name unside_by_var_var_name", + "Sideset restriction"); MooseEnum SplittingTypeEnum("additive multiplicative symmetric_multiplicative schur", "additive"); params.addParam("splitting_type", SplittingTypeEnum, "Split decomposition type"); diff --git a/framework/src/times/Times.C b/framework/src/times/Times.C index 0b03c2259756..7a5a07236496 100644 --- a/framework/src/times/Times.C +++ b/framework/src/times/Times.C @@ -26,6 +26,12 @@ Times::validParams() params.addRequiredParam("auto_broadcast", "Wether Times should be broadcasted across all ranks"); params.addParamNamesToGroup("auto_broadcast auto_sort unique_times unique_tolerance", "Advanced"); + + // Unlikely to ever be used as Times do not loop over the mesh and use material properties, + // let alone stateful + params.suppressParameter("prop_getter_suffix"); + params.suppressParameter("use_interpolated_state"); + params.registerBase("Times"); return params; } diff --git a/framework/src/variables/MooseVariableBase.C b/framework/src/variables/MooseVariableBase.C index e8eb680c32e2..7c33d18e0443 100644 --- a/framework/src/variables/MooseVariableBase.C +++ b/framework/src/variables/MooseVariableBase.C @@ -71,9 +71,8 @@ MooseVariableBase::validParams() "nl0", "If this variable is a solver variable, this is the " "solver system to which it should be added."); - params.addParamNamesToGroup("scaling eigen", "Advanced"); - params.addParam("use_dual", false, "True to use dual basis for Lagrange multipliers"); + params.addParamNamesToGroup("scaling eigen use_dual", "Advanced"); params.registerBase("MooseVariableBase"); params.addPrivateParam("_system_base");