Skip to content

Commit

Permalink
Fixed bug in evaluation of total deformation gradient log variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMaas1978 committed Jul 2, 2024
1 parent 3d99032 commit e7aa217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FEBioMech/FEBioMechData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,7 @@ double FELogTotalDeformationGradient::value(FEElement& el)
if (pp)
{
mat3d Fp = pp->prestrain();
mat3d F = F * Fp;
F = F * Fp;
}

val += F(m_r, m_c);
Expand Down

0 comments on commit e7aa217

Please sign in to comment.