Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106760742
energy_split.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Mar 31, 05:26
Size
656 B
Mime Type
text/x-c
Expires
Wed, Apr 2, 05:26 (2 d)
Engine
blob
Format
Raw Data
Handle
25268481
Attached To
rAKA akantu
energy_split.cc
View Options
/* -------------------------------------------------------------------------- */
#include "energy_split.hh"
/* -------------------------------------------------------------------------- */
namespace akantu {
/* -------------------------------------------------------------------------- */
EnergySplit::EnergySplit(Real E, Real nu, bool plane_stress)
: E(E), nu(nu), plane_stress(plane_stress) {
this->lambda = this->nu * this->E / ((1 + this->nu) * (1 - 2 * this->nu));
if (this->plane_stress) {
this->lambda = this->nu * this->E / ((1 + this->nu) * (1 - this->nu));
}
this->mu = this->E / (2 * (1 + this->nu));
}
} // namespace akantu
Event Timeline
Log In to Comment