Skip to content

Commit

Permalink
remove white space
Browse files Browse the repository at this point in the history
  • Loading branch information
wjin33 committed Sep 18, 2024
1 parent 9139b79 commit c216d7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/dirackernels/PointEnthalpySourceSinkFromFunction.C
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ PointEnthalpySourceSinkFromFunction::validParams()
"SumQuantityUO",
"User Object of type=PorousFlowSumQuantity in which to place the total "
"outflow from the line sink for each time step.");
params.addRequiredParam<FunctionName>("mass_flux_function",
params.addRequiredParam<FunctionName>("mass_flux_function",
"The function holding the mass flux at this point in kg/s (positive is flux in,"
"negative is flux out)");
params.addRequiredParam<FunctionName>("temperature_function",
params.addRequiredParam<FunctionName>("temperature_function",
"The function holding the temperature (K) of the injected fluid,"
"Function value is 0 if the fluid is extracted");
"Function value is 0 if the fluid is extracted");
params.addRequiredCoupledVar(
"pressure", "Pressure used to calculate the injected fluid enthalpy (measured in Pa)");
params.addRequiredParam<UserObjectName>(
Expand Down Expand Up @@ -113,4 +113,4 @@ PointEnthalpySourceSinkFromFunction::computeQpOffDiagJacobian(unsigned int jvar)
}
else
return 0.;
}
}
4 changes: 2 additions & 2 deletions src/dirackernels/PorousFlowSquarePulsePointEnthalpySource.C
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ PorousFlowSquarePulsePointEnthalpySource::validParams()
"The mass flux at this point in kg/s (positive is flux in, negative is flux out)");
params.addRequiredParam<UserObjectName>(
"fp",
"The name of the user object used to calculate the fluid properties of the injected fluid");
"The name of the user object used to calculate the fluid properties of the injected fluid");
params.addRequiredCoupledVar(
"pressure", "Pressure used to calculate the injected fluid enthalpy (measured in Pa)");
params.addRequiredParam<Real>("T_in", "The incoming fluid temperature");
params.addRequiredParam<Real>("T_in", "The incoming fluid temperature");
params.addRequiredParam<Point>("point", "The x,y,z coordinates of the point source (sink)");
params.addParam<Real>(
"start_time", 0.0, "The time at which the source will start (Default is 0)");
Expand Down

0 comments on commit c216d7c

Please sign in to comment.