|
OOFEM 3.0
|
#include <structuralinterfacematerialstatus.h>
Public Member Functions | |
| StructuralInterfaceMaterialStatus (GaussPoint *g) | |
| Constructor. Creates new StructuralInterfaceMaterialStatus with number n, belonging to domain d and IntegrationPoint g. | |
| void | printOutputAt (FILE *file, TimeStep *tStep) const override |
| Print receiver's output to given stream. | |
| void | initTempStatus () override |
| void | updateYourself (TimeStep *tStep) override |
| void | saveContext (DataStream &stream, ContextMode mode) override |
| void | restoreContext (DataStream &stream, ContextMode mode) override |
| const FloatArrayF< 3 > & | giveJump () const |
| Returns the const pointer to receiver's jump. | |
| const FloatArrayF< 3 > & | giveTraction () const |
| Returns the const pointer to receiver's traction vector. | |
| const FloatArrayF< 3 > & | giveFirstPKTraction () const |
| Returns the const pointer to receiver's first Piola-Kirchhoff traction vector. | |
| const FloatMatrixF< 3, 3 > & | giveF () const |
| Returns the const pointer to receiver's deformation gradient vector. | |
| const FloatArrayF< 3 > & | giveTempJump () const |
| Returns the const pointer to receiver's temporary jump. | |
| const FloatArrayF< 3 > & | giveTempTraction () const |
| Returns the const pointer to receiver's temporary traction vector. | |
| const FloatArrayF< 3 > & | giveTempFirstPKTraction () const |
| Returns the const pointer to receiver's temporary first Piola-Kirchhoff traction vector. | |
| const FloatMatrixF< 3, 3 > & | giveTempF () const |
| Returns the const pointer to receiver's temporary deformation gradient vector. | |
| const FloatArrayF< 3 > & | giveNormal () const |
| Returns const reference to normal vector. | |
| const FloatArrayF< 2 > & | giveProjectedTraction () const |
| Returns the projected traction. | |
| void | letJumpBe (const FloatArrayF< 3 > v) |
| Assigns jump to given vector v. | |
| void | letTractionBe (const FloatArrayF< 3 > v) |
| Assigns traction to given vector v. | |
| void | letFirstPKTractionBe (const FloatArrayF< 3 > v) |
| Assigns firstPKTraction to given vector v. | |
| void | letFBe (const FloatMatrixF< 3, 3 > v) |
| Assigns FVector to given vector v. | |
| void | letTempTractionBe (const FloatArrayF< 3 > v) |
| Assigns tempTraction to given vector v. | |
| void | letTempJumpBe (const FloatArrayF< 3 > v) |
| Assigns tempJump to given vector v. | |
| void | letTempFirstPKTractionBe (const FloatArrayF< 3 > v) |
| Assigns tempFirstPKTraction to given vector v. | |
| void | letTempFBe (const FloatMatrixF< 3, 3 > &v) |
| Assigns tempFVector to given vector v. | |
| void | letNormalBe (const FloatArrayF< 3 > &iN) |
| Assigns normal vector. | |
| void | letProjectedTractionBe (const FloatArrayF< 2 > &iProjectedTraction) |
| Assigns projeted traction. | |
| const char * | giveClassName () const override |
| @TODO Projected tractions are never set. What is it supposed to be good for? | |
| void | copyStateVariables (const MaterialStatus &iStatus) override |
| Functions for MaterialStatusMapperInterface. | |
| void | addStateVariables (const MaterialStatus &iStatus) override |
| bool | giveNewlyInserted () const |
| void | setNewlyInserted (bool iNewlyInserted) |
| virtual double | giveDamage () const |
| virtual double | giveTempDamage () const |
| Public Member Functions inherited from oofem::MaterialStatus | |
| MaterialStatus (GaussPoint *g) | |
| virtual bool | giveMaterialProperty (int propID, double &value) |
| virtual void | setMaterialProperty (int propID, double value) |
| Public Member Functions inherited from oofem::IntegrationPointStatus | |
| IntegrationPointStatus (GaussPoint *g) | |
| virtual | ~IntegrationPointStatus ()=default |
| Destructor. | |
| virtual void | setStatusVariable (int varID, double value) |
| virtual Interface * | giveInterface (InterfaceType t) |
| Public Member Functions inherited from oofem::MaterialStatusMapperInterface | |
| MaterialStatusMapperInterface () | |
| virtual | ~MaterialStatusMapperInterface () |
| virtual int | MSMI_map (const GaussPoint &iGP, const Domain &iOldDom, Set &sourceSet, const TimeStep &iTStep, MaterialStatus &oStatus) |
| virtual int | MSMI_map_cz (const GaussPoint &iGP, const Domain &iOldDom, Set &sourceSet, const TimeStep &iTStep, MaterialStatus &oStatus) |
| virtual int | MSMI_update (const GaussPoint &iGP, const TimeStep &iTStep) |
| virtual int | MSMI_finish (const TimeStep &iTStep) |
Protected Attributes | |
| FloatArrayF< 3 > | jump |
| Equilibrated jump (discontinuity). | |
| FloatArrayF< 3 > | traction |
| Equilibrated (engineering) traction vector. | |
| FloatArrayF< 3 > | tempTraction |
| Temporary (engineering) traction vector. | |
| FloatArrayF< 3 > | tempJump |
| Temporary jump (discontinuity). | |
| FloatArrayF< 3 > | firstPKTraction |
| Equilibrated first Piola-Kirchhoff traction vector T. | |
| FloatArrayF< 3 > | tempFirstPKTraction |
| Temporary first Piola-Kirchhoff traction vector (to find balanced state). | |
| FloatMatrixF< 3, 3 > | F |
| Equilibrated deformation gradient in reduced form. | |
| FloatMatrixF< 3, 3 > | tempF |
| Temporary deformation gradient in reduced form (to find balanced state). | |
| FloatArrayF< 3 > | mNormalDir |
| Interface normal direction. | |
| bool | mNewlyInserted = true |
| FloatArrayF< 2 > | projectedTraction |
| Protected Attributes inherited from oofem::IntegrationPointStatus | |
| GaussPoint * | gp |
| Associated integration point. | |
| Protected Attributes inherited from oofem::MaterialStatusMapperInterface | |
| std::unique_ptr< MaterialMappingAlgorithm > | mpMaterialMapper |
This class implements a structural interface material status information. It is attribute of gaussPoint. This is only an abstract class, for every instance of this material class there should be a specialized derived class, which handles are history variables.
This is a base class for all material statuses corresponding to materials derived from StructuralInterfaceMaterial class. It defines the traction, jump (discontinuity), deformation gradient and their temporary counterparts. Functions for accessing these components are defined.
Definition at line 58 of file structuralinterfacematerialstatus.h.
| oofem::StructuralInterfaceMaterialStatus::StructuralInterfaceMaterialStatus | ( | GaussPoint * | g | ) |
Constructor. Creates new StructuralInterfaceMaterialStatus with number n, belonging to domain d and IntegrationPoint g.
Definition at line 45 of file structuralinterfacematerialstatus.C.
References oofem::eye(), F, oofem::MaterialStatus::MaterialStatus(), and tempF.
Referenced by oofem::BondCEBMaterialStatus::BondCEBMaterialStatus(), oofem::CebFipSlip90MaterialStatus::CebFipSlip90MaterialStatus(), copyStateVariables(), oofem::ExpCZMaterialStatus::ExpCZMaterialStatus(), oofem::IntMatBilinearCZFagerstromStatus::IntMatBilinearCZFagerstromStatus(), oofem::IntMatBilinearCZJanssonStatus::IntMatBilinearCZJanssonStatus(), oofem::IntMatBilinearCZStatus::IntMatBilinearCZStatus(), oofem::IntMatCoulombContactStatus::IntMatCoulombContactStatus(), oofem::IntMatIsoDamageStatus::IntMatIsoDamageStatus(), oofem::IntMatPhaseFieldStatus::IntMatPhaseFieldStatus(), oofem::IsoInterfaceDamageMaterialStatus::IsoInterfaceDamageMaterialStatus(), oofem::IsoInterfaceDamageMaterialStatus_2::IsoInterfaceDamageMaterialStatus_2(), oofem::LinkSlipStatus::LinkSlipStatus(), and oofem::SimpleInterfaceMaterialStatus::SimpleInterfaceMaterialStatus().
|
overridevirtual |
Implements oofem::MaterialStatusMapperInterface.
Definition at line 143 of file structuralinterfacematerialstatus.C.
References oofem::MaterialStatus::MaterialStatus(), and OOFEM_ERROR.
|
overridevirtual |
Functions for MaterialStatusMapperInterface.
Implements oofem::MaterialStatusMapperInterface.
Definition at line 127 of file structuralinterfacematerialstatus.C.
References F, firstPKTraction, giveF(), giveFirstPKTraction(), giveJump(), giveNormal(), giveTempF(), giveTempFirstPKTraction(), giveTempJump(), giveTempTraction(), giveTraction(), jump, oofem::MaterialStatus::MaterialStatus(), mNormalDir, StructuralInterfaceMaterialStatus(), tempF, tempFirstPKTraction, tempJump, tempTraction, and traction.
|
inlineoverridevirtual |
@TODO Projected tractions are never set. What is it supposed to be good for?
Implements oofem::IntegrationPointStatus.
Definition at line 140 of file structuralinterfacematerialstatus.h.
|
inlinevirtual |
Reimplemented in oofem::IntMatBilinearCZElasticStatus, oofem::IntMatBilinearCZFagerstromStatus, oofem::IntMatBilinearCZJanssonStatus, oofem::IntMatIsoDamageStatus, oofem::IntMatPhaseFieldStatus, oofem::IsoInterfaceDamageMaterialStatus, and oofem::IsoInterfaceDamageMaterialStatus_2.
Definition at line 149 of file structuralinterfacematerialstatus.h.
Referenced by oofem::StructuralInterfaceMaterial::giveIPValue().
|
inline |
Returns the const pointer to receiver's deformation gradient vector.
Definition at line 105 of file structuralinterfacematerialstatus.h.
References F.
Referenced by copyStateVariables(), and oofem::StructuralInterfaceMaterial::giveIPValue().
|
inline |
Returns the const pointer to receiver's first Piola-Kirchhoff traction vector.
Definition at line 103 of file structuralinterfacematerialstatus.h.
References firstPKTraction.
Referenced by copyStateVariables(), oofem::StructuralInterfaceMaterial::giveIPValue(), oofem::GnuplotExportModule::outputXFEM(), and oofem::Shell7BaseXFEM::recoverShearStress().
|
inline |
Returns the const pointer to receiver's jump.
Definition at line 99 of file structuralinterfacematerialstatus.h.
References jump.
Referenced by copyStateVariables(), oofem::BondCEBMaterial::giveEngTraction_3d(), oofem::StructuralInterfaceMaterial::giveIPValue(), and oofem::GnuplotExportModule::outputXFEM().
|
inline |
Definition at line 146 of file structuralinterfacematerialstatus.h.
References mNewlyInserted.
|
inline |
Returns const reference to normal vector.
Definition at line 115 of file structuralinterfacematerialstatus.h.
References mNormalDir.
Referenced by oofem::XfemStructuralElementInterface::computeCohesiveForces(), oofem::XfemStructuralElementInterface::computeCohesiveTangent(), copyStateVariables(), and oofem::StructuralInterfaceMaterial::giveIPValue().
|
inline |
Returns the projected traction.
Definition at line 117 of file structuralinterfacematerialstatus.h.
References projectedTraction.
Referenced by oofem::GnuplotExportModule::outputInterfaceEl().
|
inlinevirtual |
Reimplemented in oofem::IntMatBilinearCZFagerstromStatus, oofem::IntMatBilinearCZJanssonStatus, oofem::IntMatIsoDamageStatus, oofem::IsoInterfaceDamageMaterialStatus, and oofem::IsoInterfaceDamageMaterialStatus_2.
Definition at line 150 of file structuralinterfacematerialstatus.h.
Referenced by oofem::PLCZdamageRadius::propagateInterface().
|
inline |
Returns the const pointer to receiver's temporary deformation gradient vector.
Definition at line 113 of file structuralinterfacematerialstatus.h.
References tempF.
Referenced by copyStateVariables(), oofem::StructuralInterfaceMaterial::give1dStiffnessMatrix_dTdj_Num(), oofem::StructuralInterfaceMaterial::give2dStiffnessMatrix_dTdj_Num(), and oofem::StructuralInterfaceMaterial::give3dStiffnessMatrix_dTdj_Num().
|
inline |
Returns the const pointer to receiver's temporary first Piola-Kirchhoff traction vector.
Definition at line 111 of file structuralinterfacematerialstatus.h.
References tempFirstPKTraction.
Referenced by oofem::IntElLine1PF::computeFreeEnergy(), copyStateVariables(), oofem::Shell7BaseXFEM::giveRecoveredTransverseInterfaceStress(), and oofem::Shell7BaseXFEM::recoverShearStress().
|
inline |
Returns the const pointer to receiver's temporary jump.
Definition at line 107 of file structuralinterfacematerialstatus.h.
References tempJump.
Referenced by oofem::IntElLine1PF::computeFreeEnergy(), oofem::IntElLine1PF::computeGMatrix(), copyStateVariables(), oofem::StructuralInterfaceMaterial::give1dStiffnessMatrix_dTdj_Num(), oofem::StructuralInterfaceMaterial::give1dStiffnessMatrix_Eng_Num(), oofem::StructuralInterfaceMaterial::give2dStiffnessMatrix_dTdj_Num(), oofem::IntMatIsoDamage::give2dStiffnessMatrix_Eng(), oofem::StructuralInterfaceMaterial::give2dStiffnessMatrix_Eng_Num(), oofem::IntMatBilinearCZElastic::give3dStiffnessMatrix_dTdj(), oofem::IntMatBilinearCZFagerstrom::give3dStiffnessMatrix_dTdj(), oofem::IntMatBilinearCZJansson::give3dStiffnessMatrix_dTdj(), oofem::StructuralInterfaceMaterial::give3dStiffnessMatrix_dTdj_Num(), oofem::CohesiveInterfaceMaterial::give3dStiffnessMatrix_Eng(), oofem::ExpCZMaterial::give3dStiffnessMatrix_Eng(), oofem::IntMatCoulombContact::give3dStiffnessMatrix_Eng(), oofem::IntMatIsoDamage::give3dStiffnessMatrix_Eng(), oofem::IntMatPhaseField::give3dStiffnessMatrix_Eng(), oofem::IsoInterfaceDamageMaterial::give3dStiffnessMatrix_Eng(), oofem::IsoInterfaceDamageMaterial_2::give3dStiffnessMatrix_Eng(), oofem::SimpleInterfaceMaterial::give3dStiffnessMatrix_Eng(), oofem::StructuralInterfaceMaterial::give3dStiffnessMatrix_Eng_Num(), oofem::IntMatBilinearCZFagerstrom::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstromRate::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZJansson::giveFirstPKTraction_3d(), and oofem::IntMatPhaseField::giveTangents().
|
inline |
Returns the const pointer to receiver's temporary traction vector.
Definition at line 109 of file structuralinterfacematerialstatus.h.
References tempTraction.
Referenced by copyStateVariables(), and oofem::SimpleInterfaceMaterial::give3dStiffnessMatrix_Eng().
|
inline |
Returns the const pointer to receiver's traction vector.
Definition at line 101 of file structuralinterfacematerialstatus.h.
References traction.
Referenced by copyStateVariables(), oofem::BondCEBMaterial::giveEngTraction_3d(), oofem::LinkSlip::giveEngTraction_3d(), oofem::BondLink3d::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::StructuralInterfaceMaterial::giveIPValue(), and oofem::GnuplotExportModule::outputInterfaceEl().
|
overridevirtual |
Initializes the temporary internal variables, describing the current state according to previously reached equilibrium internal variables.
Reimplemented from oofem::MaterialStatus.
Definition at line 81 of file structuralinterfacematerialstatus.C.
References F, firstPKTraction, jump, tempF, tempFirstPKTraction, tempJump, tempTraction, and traction.
Referenced by oofem::IntMatCoulombContactStatus::initTempStatus().
|
inline |
Assigns FVector to given vector v.
Definition at line 125 of file structuralinterfacematerialstatus.h.
References F.
|
inline |
Assigns firstPKTraction to given vector v.
Definition at line 123 of file structuralinterfacematerialstatus.h.
References firstPKTraction.
|
inline |
Assigns jump to given vector v.
Definition at line 119 of file structuralinterfacematerialstatus.h.
References jump.
|
inline |
Assigns normal vector.
Definition at line 135 of file structuralinterfacematerialstatus.h.
References mNormalDir.
Referenced by oofem::StructuralInterfaceElement::computeTraction(), and oofem::XfemStructuralElementInterface::XfemElementInterface_updateIntegrationRule().
|
inline |
Assigns projeted traction.
Definition at line 137 of file structuralinterfacematerialstatus.h.
References projectedTraction.
|
inline |
Assigns tempFVector to given vector v.
Definition at line 133 of file structuralinterfacematerialstatus.h.
References tempF.
Referenced by oofem::IntMatBilinearCZFagerstrom::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstromRate::giveFirstPKTraction_3d(), and oofem::IntMatBilinearCZJansson::giveFirstPKTraction_3d().
|
inline |
Assigns tempFirstPKTraction to given vector v.
Definition at line 131 of file structuralinterfacematerialstatus.h.
References tempFirstPKTraction.
Referenced by oofem::IntMatBilinearCZ::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZElastic::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstrom::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstromRate::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZJansson::giveFirstPKTraction_3d(), oofem::IntMatElastic::giveFirstPKTraction_3d(), and oofem::IntMatIsoDamage::giveFirstPKTraction_3d().
|
inline |
Assigns tempJump to given vector v.
Definition at line 129 of file structuralinterfacematerialstatus.h.
References tempJump.
Referenced by oofem::CebFipSlip90Material::giveEngTraction_1d(), oofem::BondCEBMaterial::giveEngTraction_3d(), oofem::CohesiveInterfaceMaterial::giveEngTraction_3d(), oofem::ExpCZMaterial::giveEngTraction_3d(), oofem::IntMatCoulombContact::giveEngTraction_3d(), oofem::IntMatIsoDamage::giveEngTraction_3d(), oofem::IntMatPhaseField::giveEngTraction_3d(), oofem::IsoInterfaceDamageMaterial::giveEngTraction_3d(), oofem::IsoInterfaceDamageMaterial_2::giveEngTraction_3d(), oofem::SimpleInterfaceMaterial::giveEngTraction_3d(), oofem::IntMatBilinearCZ::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZElastic::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstrom::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZFagerstromRate::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZJansson::giveFirstPKTraction_3d(), oofem::IntMatDummyCZ::giveFirstPKTraction_3d(), and oofem::IntMatElastic::giveFirstPKTraction_3d().
|
inline |
Assigns tempTraction to given vector v.
Definition at line 127 of file structuralinterfacematerialstatus.h.
References tempTraction.
Referenced by oofem::CebFipSlip90Material::giveEngTraction_1d(), oofem::BondCEBMaterial::giveEngTraction_3d(), oofem::CohesiveInterfaceMaterial::giveEngTraction_3d(), oofem::ExpCZMaterial::giveEngTraction_3d(), oofem::IntMatCoulombContact::giveEngTraction_3d(), oofem::IntMatIsoDamage::giveEngTraction_3d(), oofem::IntMatPhaseField::giveEngTraction_3d(), oofem::IsoInterfaceDamageMaterial::giveEngTraction_3d(), oofem::IsoInterfaceDamageMaterial_2::giveEngTraction_3d(), oofem::SimpleInterfaceMaterial::giveEngTraction_3d(), oofem::IntMatBilinearCZ::giveFirstPKTraction_3d(), oofem::IntMatBilinearCZElastic::giveFirstPKTraction_3d(), and oofem::IntMatElastic::giveFirstPKTraction_3d().
|
inline |
Assigns traction to given vector v.
Definition at line 121 of file structuralinterfacematerialstatus.h.
References traction.
|
overridevirtual |
Print receiver's output to given stream.
Reimplemented from oofem::MaterialStatus.
Definition at line 53 of file structuralinterfacematerialstatus.C.
References jump, and traction.
Referenced by oofem::IntMatCoulombContactStatus::printOutputAt().
|
overridevirtual |
Restores the receiver state previously written in stream.
| stream | Input stream. |
| mode | Determines amount of info available in stream (state, definition, ...). |
| throws | an ContextIOERR exception if error encountered. |
Reimplemented from oofem::IntegrationPointStatus.
Definition at line 111 of file structuralinterfacematerialstatus.C.
References oofem::CIO_OK, and THROW_CIOERR.
Referenced by oofem::IntMatCoulombContactStatus::restoreContext().
|
overridevirtual |
Stores receiver state to output stream.
| stream | Output stream. |
| mode | Determines amount of info required in stream (state, definition, ...). |
| throws | an ContextIOERR exception if error encountered. |
Reimplemented from oofem::IntegrationPointStatus.
Definition at line 93 of file structuralinterfacematerialstatus.C.
References oofem::CIO_OK, and THROW_CIOERR.
Referenced by oofem::IntMatCoulombContactStatus::saveContext().
|
inline |
Definition at line 147 of file structuralinterfacematerialstatus.h.
References mNewlyInserted.
Referenced by oofem::XfemStructuralElementInterface::computeCohesiveForces().
|
overridevirtual |
Update equilibrium history variables according to temp-variables. Invoked, after new equilibrium state has been reached.
Reimplemented from oofem::MaterialStatus.
Definition at line 70 of file structuralinterfacematerialstatus.C.
References F, firstPKTraction, jump, tempF, tempFirstPKTraction, tempJump, tempTraction, and traction.
Referenced by oofem::IntMatCoulombContactStatus::updateYourself().
|
protected |
Equilibrated deformation gradient in reduced form.
Definition at line 75 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveF(), initTempStatus(), letFBe(), StructuralInterfaceMaterialStatus(), and updateYourself().
|
protected |
Equilibrated first Piola-Kirchhoff traction vector T.
Definition at line 71 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveFirstPKTraction(), initTempStatus(), letFirstPKTractionBe(), and updateYourself().
|
protected |
Equilibrated jump (discontinuity).
Definition at line 62 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveJump(), initTempStatus(), letJumpBe(), oofem::LinkSlipStatus::printOutputAt(), printOutputAt(), oofem::IntMatBilinearCZStatus::updateYourself(), and updateYourself().
|
protected |
Definition at line 82 of file structuralinterfacematerialstatus.h.
Referenced by giveNewlyInserted(), and setNewlyInserted().
|
protected |
Interface normal direction.
Definition at line 80 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveNormal(), and letNormalBe().
|
protected |
Definition at line 84 of file structuralinterfacematerialstatus.h.
Referenced by giveProjectedTraction(), and letProjectedTractionBe().
|
protected |
Temporary deformation gradient in reduced form (to find balanced state).
Definition at line 77 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveTempF(), initTempStatus(), letTempFBe(), StructuralInterfaceMaterialStatus(), and updateYourself().
|
protected |
Temporary first Piola-Kirchhoff traction vector (to find balanced state).
Definition at line 73 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveTempFirstPKTraction(), initTempStatus(), letTempFirstPKTractionBe(), and updateYourself().
|
protected |
Temporary jump (discontinuity).
Definition at line 68 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveTempJump(), initTempStatus(), letTempJumpBe(), and updateYourself().
|
protected |
Temporary (engineering) traction vector.
Definition at line 66 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveTempTraction(), initTempStatus(), letTempTractionBe(), and updateYourself().
|
protected |
Equilibrated (engineering) traction vector.
Definition at line 64 of file structuralinterfacematerialstatus.h.
Referenced by copyStateVariables(), giveTraction(), initTempStatus(), letTractionBe(), oofem::LinkSlipStatus::printOutputAt(), printOutputAt(), and updateYourself().