View source: R/ogden_model_symmetric.R
ogden_model_symmetric | R Documentation |
Convenience function, giving the elastic stress as a function of the material stretch, according to the Ogden model (Ogden 1972), by using symmetric pairs of mu
and alpha
. Uses ogden_model
ogden_model_symmetric(mu,alpha,stretch)
mu |
Vector of Young moduli at zero stretch (see details) |
alpha |
Vector of coefficients |
stretch |
Stretch at which the stress values should be evaluated |
Stress at the given stretch values, obtained by calling ogden_model via:
ogden_model(c(mu,mu),c(alpha,-alpha),stretch)
Thomas Braschler
Ogden, R. W. (1972), ?Large Deformation Isotropic Elasticity - On the Correlationof Theory and Experiment for Incompressible Rubberlike Solids?,Proceedings of theRoyal Society A: Mathematical, Physical and Engineering Sciences326(1567), 565?584.
stretch=seq(from=0.5,to=2,by=0.01) stress=ogden_model_symmetric(mu=c(1e3),alpha=c(3),stretch=stretch) # Sekant Young model E=stress/(stretch-1) plot(E ~ stretch)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.