Source code for felupe.field._planestrain

# -*- 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 ..math import sym as symmetric
from ._base import Field


[docs] class FieldPlaneStrain(Field): r"""A plane strain :class:`~felupe.Field` on points of a two-dimensional :class:`~felupe.Region` with dimension ``dim`` (default is 2) and initial point ``values`` (default is 0). Parameters ---------- region : Region The region on which the field will be created. dim : int, optional The dimension of the field (default is 2). values : float or array A single value for all components of the field or an array of shape (region.mesh.npoints, dim)`. Default is 0.0. Notes ----- This is a modified :class:`~felupe.Field` for plane strain. The :meth:`grad`-method is modified in such a way that the in-plane 2d-gradient is embedded in 3d-space, see Eq. :eq:`gradient_planestrain`. .. math:: :label: gradient_planestrain \frac{\partial \boldsymbol{u}}{\partial \boldsymbol{X}} = \begin{bmatrix} \left( \frac{\partial \boldsymbol{u}}{\partial \boldsymbol{X}} \right)_{2d} & \boldsymbol{0} \\ \boldsymbol{0}^T & 0 \end{bmatrix} See Also -------- felupe.Field : Field on points of a :class:`~felupe.Region` with dimension ``dim`` and initial point ``values``. """ def __init__(self, region, dim=2, values=0.0): # init base Field super().__init__(region, dim=dim, values=values) def _interpolate_2d(self, out=None): """Interpolate 2D field values at points and evaluate them at the integration points of all cells in the region.""" # interpolated field values "aI" # evaluated at quadrature point "q" # for cell "c" return np.einsum( "ca...,aqc->...qc", self.values[self.region.mesh.cells], self.region.h, out=out, )
[docs] def interpolate(self, out=None): # out-argument is not supported # if out is not None: # out = out[:2] # extend dimension of in-plane 2d-gradient return np.pad(self._interpolate_2d(out=None), ((0, 1), (0, 0), (0, 0)))
def _grad_2d(self, sym=False, out=None): """In-plane 2D gradient as partial derivative of field values at points w.r.t. the undeformed coordinates, evaluated at the integration points of all cells in the region. Optionally, the symmetric part of the gradient is returned. Arguments --------- sym : bool, optional Calculate the symmetric part of the gradient (default is False). out : None or ndarray, optional A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly- allocated array is returned (default is None). Returns ------- ndarray In-plane 2D-gradient as partial derivative of field values at points w.r.t. undeformed coordinates, evaluated at the integration points of all cells in the region. """ # gradient as partial derivative of field component "I" at point "a" # w.r.t. undeformed coordinate "J" evaluated at quadrature point "q" # for each cell "c" g = np.einsum( "ca...,aJqc->...Jqc", self.values[self.region.mesh.cells], self.region.dhdX, out=out, ) if sym: return symmetric(g, out=g) else: return g
[docs] def grad(self, sym=False, out=None): """3D-gradient as partial derivative of field values at points w.r.t. the undeformed coordinates, evaluated at the integration points of all cells in the region. Optionally, the symmetric part of the gradient is returned. .. code-block:: | dudX(2d) : 0 | dudX(planestrain) = | ..................| | 0 : 0 | Arguments --------- sym : bool, optional Calculate the symmetric part of the gradient (default is False). out : None or ndarray, optional A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly- allocated array is returned (default is None). Returns ------- ndarray Full 3D-gradient as partial derivative of field values at points w.r.t. undeformed coordinates, evaluated at the integration points of all cells in the region. """ # out-argument is not supported # if out is not None: # out = out[:2, :2] # extend dimension of in-plane 2d-gradient g = np.pad(self._grad_2d(sym=sym, out=None), ((0, 1), (0, 1), (0, 0), (0, 0))) return g