Skip to content

Commit

Permalink
Minor formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikeowen committed Nov 29, 2023
1 parent ae16d61 commit aeb3907
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Porosity/PalphaPorosity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ evaluateDerivatives(const Scalar time,
const auto& dPdu = state.field(buildKey(HydroFieldNames::partialPpartialEps), 0.0);
const auto& dPdr = state.field(buildKey(HydroFieldNames::partialPpartialRho), 0.0);
const auto& alpha = state.field(buildKey(SolidFieldNames::porosityAlpha), 0.0);
const auto& DrhoDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar, Scalar>::prefix() + HydroFieldNames::massDensity), 0.0);
const auto& DuDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar, Scalar>::prefix() + HydroFieldNames::specificThermalEnergy), 0.0);
auto& DalphaDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar, Scalar>::prefix() + SolidFieldNames::porosityAlpha), 0.0);
const auto& DrhoDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar>::prefix() + HydroFieldNames::massDensity), 0.0);
const auto& DuDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar>::prefix() + HydroFieldNames::specificThermalEnergy), 0.0);
auto& DalphaDt = derivs.field(buildKey(IncrementBoundedState<Dimension, Scalar>::prefix() + SolidFieldNames::porosityAlpha), 0.0);

Field<Dimension, Scalar>* fDSnewPtr = nullptr;
if (mJutziStateUpdate) {
Expand Down

0 comments on commit aeb3907

Please sign in to comment.