@@ -230,7 +230,7 @@ SolidFSISPHHydroBase(const SmoothingScaleBase<Dimension>& smoothingScaleMethod,
230
230
231
231
mTimeStepMask = dataBase.newFluidFieldList (int (0 ), HydroFieldNames::timeStepMask);
232
232
mPressure = dataBase.newFluidFieldList (0.0 , HydroFieldNames::pressure);
233
- mDamagedPressure = dataBase.newFluidFieldList (0.0 , FSIFieldNames ::damagedPressure);
233
+ mDamagedPressure = dataBase.newFluidFieldList (0.0 , SolidFieldNames ::damagedPressure);
234
234
mSoundSpeed = dataBase.newFluidFieldList (0.0 , HydroFieldNames::soundSpeed);
235
235
mBulkModulus = dataBase.newSolidFieldList (0.0 , SolidFieldNames::bulkModulus);
236
236
mShearModulus = dataBase.newSolidFieldList (0.0 , SolidFieldNames::shearModulus);
@@ -342,7 +342,7 @@ registerState(DataBase<Dimension>& dataBase,
342
342
dataBase.resizeSolidFieldList (mShearModulus , 0.0 , SolidFieldNames::shearModulus, false );
343
343
dataBase.resizeSolidFieldList (mYieldStrength , 0.0 , SolidFieldNames::yieldStrength, false );
344
344
dataBase.resizeSolidFieldList (mPlasticStrain0 , 0.0 , SolidFieldNames::plasticStrain + " 0" , false );
345
- dataBase.resizeSolidFieldList (mDamagedPressure , 0.0 , FSIFieldNames ::damagedPressure, false );
345
+ dataBase.resizeSolidFieldList (mDamagedPressure , 0.0 , SolidFieldNames ::damagedPressure, false );
346
346
dataBase.resizeSolidFieldList (mInterfaceNormals , Vector::zero, FSIFieldNames::interfaceNormals, false );
347
347
dataBase.resizeSolidFieldList (mInterfaceFraction , 0.0 , FSIFieldNames::interfaceFraction, false );
348
348
dataBase.resizeSolidFieldList (mInterfaceSmoothness , 0.0 , FSIFieldNames::interfaceSmoothness, false );
@@ -647,7 +647,7 @@ applyGhostBoundaries(State<Dimension>& state,
647
647
FieldList<Dimension, Scalar> specificThermalEnergy = state.fields (HydroFieldNames::specificThermalEnergy, 0.0 );
648
648
FieldList<Dimension, Vector> velocity = state.fields (HydroFieldNames::velocity, Vector::zero);
649
649
FieldList<Dimension, Scalar> pressure = state.fields (HydroFieldNames::pressure, 0.0 );
650
- FieldList<Dimension, Scalar> damagedPressure = state.fields (FSIFieldNames ::damagedPressure, 0.0 );
650
+ FieldList<Dimension, Scalar> damagedPressure = state.fields (SolidFieldNames ::damagedPressure, 0.0 );
651
651
FieldList<Dimension, Scalar> soundSpeed = state.fields (HydroFieldNames::soundSpeed, 0.0 );
652
652
FieldList<Dimension, SymTensor> S = state.fields (SolidFieldNames::deviatoricStress, SymTensor::zero);
653
653
FieldList<Dimension, Scalar> K = state.fields (SolidFieldNames::bulkModulus, 0.0 );
@@ -699,7 +699,7 @@ enforceBoundaries(State<Dimension>& state,
699
699
FieldList<Dimension, Scalar> specificThermalEnergy = state.fields (HydroFieldNames::specificThermalEnergy, 0.0 );
700
700
FieldList<Dimension, Vector> velocity = state.fields (HydroFieldNames::velocity, Vector::zero);
701
701
FieldList<Dimension, Scalar> pressure = state.fields (HydroFieldNames::pressure, 0.0 );
702
- FieldList<Dimension, Scalar> damagedPressure = state.fields (FSIFieldNames ::damagedPressure, 0.0 );
702
+ FieldList<Dimension, Scalar> damagedPressure = state.fields (SolidFieldNames ::damagedPressure, 0.0 );
703
703
FieldList<Dimension, Scalar> soundSpeed = state.fields (HydroFieldNames::soundSpeed, 0.0 );
704
704
FieldList<Dimension, SymTensor> S = state.fields (SolidFieldNames::deviatoricStress, SymTensor::zero);
705
705
FieldList<Dimension, Scalar> K = state.fields (SolidFieldNames::bulkModulus, 0.0 );
0 commit comments