Skip to content

Commit

Permalink
Update ElasticIsotropicPressureDependent.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ryar9534 authored Dec 11, 2024
1 parent 834bba6 commit 3b9372e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ void ElasticIsotropicPressureDependentUpdates::getElasticStrainInc( localIndex c
Q,
deviator );

real64 const elasticStrainVol = LvArray::math::log( P/p0 ) * Cr * (-1.0) + eps_v0;
real64 const elasticStrainDev = Q/3./mu;
real64 elasticStrainVol = LvArray::math::log( P/p0 ) * Cr * (-1.0) + eps_v0;
real64 elasticStrainDev = Q/3./mu;

Check warning on line 257 in src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp

View check run for this annotation

Codecov / codecov/patch

src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp#L256-L257

Added lines #L256 - L257 were not covered by tests

twoInvariant::strainRecomposition( elasticStrainVol,

Check warning on line 259 in src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp

View check run for this annotation

Codecov / codecov/patch

src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp#L259

Added line #L259 was not covered by tests
elasticStrainDev,
Expand All @@ -273,7 +273,7 @@ void ElasticIsotropicPressureDependentUpdates::getElasticStrainInc( localIndex c
deviator );

elasticStrainVol = std::log( P/p0 ) * Cr * (-1.0) + eps_v0;
real64 const elasticStrainDev = Q/3./mu;
elasticStrainDev = Q/3./mu;

Check warning on line 276 in src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp

View check run for this annotation

Codecov / codecov/patch

src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp#L275-L276

Added lines #L275 - L276 were not covered by tests

twoInvariant::strainRecomposition( elasticStrainVol,

Check warning on line 278 in src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp

View check run for this annotation

Codecov / codecov/patch

src/coreComponents/constitutive/solid/ElasticIsotropicPressureDependent.hpp#L278

Added line #L278 was not covered by tests
elasticStrainDev,
Expand Down

0 comments on commit 3b9372e

Please sign in to comment.