Skip to content

isotropic behaviour with a multi-linear isotropic hardening #100

Answered by thelfer
pierreguy asked this question in Q&A
Discussion options

You must be logged in to vote

2- If, in addition to finite strain, I want to compute the elastic and plastic energies, is it ok if I add the following lines in the script:
@InternalEnergy{
Psi_s = sig|eel/2.;
};
@DissipatedEnergy{
Psi_d += (sig)|(deto-deel);
}

They mostly are ! Note that the energy density are expressed in the reference configuration, i.e. you must integrate them in the reference configuration to get the values of the stored and dissipated.

"Mostly" refers to the fact that you would have a better approximation (second order) of the dissipated energy as follows:

@LocalVariable StressStensor sig0;

@InitLocalVariables{
  sig0 = sig;
}

@FlowRule {
....
}

@InternalEnergy {
  Psi_s = sig | eel / 2;
}

…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
3 replies
@pierreguy
Comment options

@thelfer
Comment options

@pierreguy
Comment options

Answer selected by thelfer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
2 participants