Skip to content

Commit

Permalink
Merge branch 'develop' into bugfix/add_banner_hash
Browse files Browse the repository at this point in the history
  • Loading branch information
ldowen committed Jan 16, 2024
2 parents aec623d + 84e0bc6 commit cce6d2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FSISPH/SolidFSISPHEvaluateDerivatives.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ secondDerivativesLoop(const typename Dimension::Scalar time,
const auto massDensity = state.fields(HydroFieldNames::massDensity, 0.0);
const auto specificThermalEnergy = state.fields(HydroFieldNames::specificThermalEnergy, 0.0);
const auto H = state.fields(HydroFieldNames::H, SymTensor::zero);
const auto damagedPressure = state.fields(HydroFieldNames::pressure, 0.0);
const auto pressure = state.fields(FSIFieldNames::damagedPressure, 0.0);
const auto damagedPressure = state.fields(FSIFieldNames::damagedPressure, 0.0);
const auto pressure = state.fields(HydroFieldNames::pressure, 0.0);
const auto soundSpeed = state.fields(HydroFieldNames::soundSpeed, 0.0);
const auto S = state.fields(SolidFieldNames::deviatoricStress, SymTensor::zero);
const auto K = state.fields(SolidFieldNames::bulkModulus, 0.0);
Expand Down

0 comments on commit cce6d2b

Please sign in to comment.