Source code for felupe.constitution.linear_elasticity._linear_elastic_1d

# -*- coding: utf-8 -*-
"""
This file is part of FElupe.

FElupe is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

FElupe is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with FElupe.  If not, see <http://www.gnu.org/licenses/>.
"""

import numpy as np

from .._base import ConstitutiveMaterial


[docs] class LinearElastic1D(ConstitutiveMaterial): r"""Isotropic one-dimensional linear-elastic material formulation. Parameters ---------- E : float Young's modulus. Notes ----- The stress-stretch relation of the linear-elastic material formulation is given in Eq. :eq:`linear-elastic-1d` .. math:: :label: linear-elastic-1d \sigma = E\ \left(\lambda - 1 \right) with the stretch from Eq. :eq:`linear-elastic-strain-1d`. .. math:: :label: linear-elastic-strain-1d \lambda = \frac{l}{L} Examples -------- .. plot:: >>> import felupe as fem >>> >>> umat = fem.LinearElastic1D(E=1) >>> ax = umat.plot() """ def __init__(self, E): self.E = np.array(E) self.kwargs = {"E": self.E} # aliases for gradient and hessian self.stress = self.gradient self.elasticity = self.hessian # initial variables for calling # ``self.gradient(self.x)`` and ``self.hessian(self.x)`` self.x = [np.ones(1), np.zeros(0)]
[docs] def gradient(self, x, out=None): r"""Evaluate the stress (as a function of the stretch). Parameters ---------- x : list of ndarray List with the stretch :math:`\lambda` as first item. out : ndarray or None, optional A location into which the result is stored (default is None). Not implemented. Returns ------- ndarray Stress """ λ, statevars = x[0], x[-1] return [self.E * (λ - 1), statevars]
[docs] def hessian(self, x=None, shape=(1,), dtype=None, out=None): r"""Evaluate the elasticity. The stretch is only used for the shape of the trailing axes. Parameters ---------- x : list of ndarray, optional List with stretch :math:`\lambda` as first item (default is None). shape : tuple of int, optional Tuple with shape of the trailing axes (default is (1,)). out : ndarray or None, optional A location into which the result is stored (default is None). Not implemented. Returns ------- ndarray Elasticity """ return [self.E]