Skip to content

Commit

Permalink
Improvements to doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfalcone1997 committed Jan 10, 2025
1 parent 6a57aa1 commit 43435c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/auxkernels/TimeAverageAux.C
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ TimeAverageAux::validParams()
{
InputParameters params = AuxKernel::validParams();

params.addClassDescription("AuxKernel that performs time averaging of variables."
"");
params.addClassDescription("AuxKernel that performs time averaging of variables.");
params.addRequiredCoupledVar("scalars",
"Scalar variables to be averaged");
"Scalar variables to be averaged. If multiple scalars are "
"given the average of their product is given");
return params;
}
TimeAverageAux::TimeAverageAux(const InputParameters & parameters)
Expand Down
6 changes: 4 additions & 2 deletions src/auxkernels/VectorTimeAverageAux.C
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ VectorTimeAverageAux::validParams()
params.addRequiredCoupledVar("vectors",
"Vector variables to be time averaged."
"If multiple vectors are provided the average of their "
"scalar multiplication is given. ");
"component-wise multiplication is given. ");

params.addCoupledVar("scalars",
"Scalar variables to be included in the time average.");
"Scalar variables to be included in the time average. "
"If scalars are are given the average of their product with the vector "
"averages is given");
return params;
}
VectorTimeAverageAux::VectorTimeAverageAux(const InputParameters & parameters)
Expand Down

0 comments on commit 43435c5

Please sign in to comment.