getStrain problem

For developers writing C++, Fortran, Java, code who have questions or comments to make.

Moderators: silvia, selimgunay, Moderators

Post Reply
stefanocoluzzi
Posts: 2
Joined: Tue Sep 11, 2018 11:46 pm
Location: La Sapienza

getStrain problem

Post by stefanocoluzzi » Fri Apr 19, 2019 8:14 am

hello,

I'm trying to create a new material, and I actually have a stress - strain curve but I would divide the strain, in output, by a constant, but if I change this:

double
Steel10::getStrain(void)
{

return eps;
}

to:

double
Steel10::getStrain(void)
{
epsf = eps/lp*2;

return epsf;
}

I have no change.

Anyone can help me? thanks!

Post Reply