Skip to content

Commit

Permalink
Address comment (idaholab#21801)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschwen authored and MengnanLi91 committed Mar 8, 2023
1 parent 91167b4 commit d275074
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -2,7 +2,7 @@

!syntax description /UserObjects/RenormalizeVector

This user object can renormalize the solution for a set of variables, taking each variable as the component of a vector and scaling the variables to obtain the user specified L2-norm.
This user object can pointwise renormalize the solution for a set of variables, taking each variable as the component of a vector and scaling the variables to obtain the user specified L2-norm.

## Applications

Expand Down
3 changes: 2 additions & 1 deletion framework/src/userobject/RenormalizeVector.C
Expand Up @@ -43,7 +43,8 @@ InputParameters
RenormalizeVector::validParams()
{
InputParameters params = GeneralUserObject::validParams();
params.addClassDescription("Renormalize the solution of a set of variables comprising a vector");
params.addClassDescription(
"Pointwise renormalize the solution of a set of variables comprising a vector");
params.addCoupledVar("v", "Variables comprising the vector");
params.addParam<Real>("norm", 1.0, "Desired norm for the coupled variable vector");
return params;
Expand Down

0 comments on commit d275074

Please sign in to comment.