Skip to content

Increase in stiffness over time #29808

Feb 4, 2025 · 1 comments · 4 replies
Discussion options

You must be logged in to vote

@jmeier I was thinking about this some more, and we actually do just what I proposed in some cases for inelastic models. This code is in ComputeMultipleInelasticStress:

     if (_is_elasticity_tensor_guaranteed_isotropic || !_perform_finite_strain_rotations)
        _stress[_qp] =
            _elasticity_tensor[_qp] * (_elastic_strain_old[_qp] + elastic_strain_increment);
      else
      {
        if (_damage_model)
          _stress[_qp] = _undamaged_stress_old + _elasticity_tensor[_qp] * elastic_strain_increment;
        else
          _stress[_qp] = _stress_old[_qp] + _elasticity_tensor[_qp] * elastic_strain_increment;
      }

The last block is the one that applies an increment to th…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@bwspenc
Comment options

bwspenc Feb 6, 2025
Collaborator

@jmeier
Comment options

@bwspenc
Comment options

bwspenc Feb 6, 2025
Collaborator

Answer selected by jmeier
@jmeier
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants