Search found 1 match
- Fri Sep 08, 2023 11:05 pm
- Forum: Framework
- Topic: A little confused about source code of ViscousMaterial
- Replies: 1
- Views: 9373
A little confused about source code of ViscousMaterial
Hello everyone, When I look through the source code of ViscousMaterial, I'm confused about some lines about it (line122~139): double ViscousMaterial::getStress(void) { double stress = 0.0; double absRate = fabs(trialRate); if (absRate > minVel) stress = C*pow(absRate, Alpha); else stress = C*pow(min...