GetFEM  5.5
getfem_linearized_plates.h
Go to the documentation of this file.
1 /* -*- c++ -*- (enables emacs c++ mode) */
2 /*===========================================================================
3 
4  Copyright (C) 2004-2026 Yves Renard, Jeremie Lasry
5 
6  This file is a part of GetFEM
7 
8  GetFEM is free software; you can redistribute it and/or modify it
9  under the terms of the GNU Lesser General Public License as published
10  by the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version along with the GCC Runtime Library
12  Exception either version 3.1 or (at your option) any later version.
13  This program is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  License and GCC Runtime Library Exception for more details.
17  You should have received a copy of the GNU Lesser General Public License
18  along with this program. If not, see https://www.gnu.org/licenses/.
19 
20  As a special exception, you may use this file as it is a part of a free
21  software library without restriction. Specifically, if other files
22  instantiate templates or use macros or inline functions from this file,
23  or you compile this file and link it with other files to produce an
24  executable, this file does not by itself cause the resulting executable
25  to be covered by the GNU Lesser General Public License. This exception
26  does not however invalidate any other reasons why the executable file
27  might be covered by the GNU Lesser General Public License.
28 
29 ===========================================================================*/
30 /**@file getfem_linearized_plates.h
31  @author Yves Renard <Yves.Renard@insa-lyon.fr>
32  @date November 1, 2004.
33  @brief Reissner-Mindlin plate model brick.
34 */
35 
36 #ifndef GETFEM_LINEARIZED_PLATES_H__
37 #define GETFEM_LINEARIZED_PLATES_H__
38 
39 #include "getfem_models.h"
40 
41 
42 namespace getfem {
43 
44  /** Add the elementary transformation corresponding to the projection
45  on rotated RT0 element for two-dimensional elements to the model.
46  The name is the name given to the elementary transformation.
47  */
48  void add_2D_rotated_RT0_projection(model &md, std::string name);
49 
50  /** Add the elementary transformation corresponding to the projection
51  on P0 element.
52  The name is the name given to the elementary transformation.
53  */
54  void add_P0_projection(model &md, std::string name);
55 
56 
57  /** Add a term corresponding to the classical Reissner-Mindlin plate
58  model for which `u3` is the transverse displacement,
59  `Theta` the rotation of
60  fibers normal to the midplane, 'param_E' the Young Modulus,
61  `param_nu` the poisson ratio,
62  `param_epsilon` the plate thickness,
63  `param_kappa` the shear correction factor. Note that since this brick
64  uses the high level generic assembly language, the parameter can
65  be regular expression of this language.
66  There are three variants.
67  `variant = 0` corresponds to the an
68  unreduced formulation and in that case only the integration
69  method `mim` is used. Practically this variant is not usable since
70  it is subject to a strong locking phenomenon.
71  `variant = 1` corresponds to a reduced integration where `mim` is
72  used for the rotation term and `mim_reduced` for the transverse
73  shear term. `variant = 2` (default) corresponds to the projection onto
74  a rotated RT0 element of the transverse shear term. For the moment, this
75  is adapted to quadrilateral only (because it is not sufficient to
76  remove the locking phenomenon on triangle elements). Note also that if
77  you use high order elements, the projection on RT0 will reduce the order
78  of the approximation.
79  Returns the brick index in the model.
80  */
82  (model &md, const mesh_im &mim, const mesh_im &mim_reduced,
83  const std::string &u3,
84  const std::string &Theta, const std::string &param_E,
85  const std::string &param_nu, const std::string &param_epsilon,
86  const std::string &param_kappa, size_type variant = size_type(2),
87  size_type region = size_type(-1));
88 
89  /** Add a term corresponding to the enriched Reissner-Mindlin plate
90  model for which `varname_ua` is the membrane displacements,
91  `varname_u3` is the transverse displacement,
92  `varname_theta` the rotation of
93  fibers normal to the midplane,
94  `varname_theta3` the pinching,
95  'param_E' the Young Modulus,
96  `param_nu` the poisson ratio,
97  `param_epsilon` the plate thickness. Note that since this brick
98  uses the high level generic assembly language, the parameter can
99  be regular expression of this language.
100  There are four variants.
101  `variant = 0` corresponds to the an
102  unreduced formulation and in that case only the integration
103  method `mim` is used. Practically this variant is not usable since
104  it is subject to a strong locking phenomenon.
105  `variant = 1` corresponds to a reduced integration where `mim` is
106  used for the rotation term and `mim_reduced1` for the transverse
107  shear term and `mim_reduced2` for the pinching term.
108  `variant = 2` (default) corresponds to the projection onto
109  a rotated RT0 element of the transverse shear term and a reduced integration for the pinching term.
110  For the moment, this is adapted to quadrilateral only (because it is not sufficient to
111  remove the locking phenomenon on triangle elements). Note also that if
112  you use high order elements, the projection on RT0 will reduce the order
113  of the approximation.
114  `variant = 3` corresponds to the projection onto
115  a rotated RT0 element of the transverse shear term and the projection onto P0 element of the pinching term.
116  For the moment, this is adapted to quadrilateral only (because it is not sufficient to
117  remove the locking phenomenon on triangle elements). Note also that if
118  you use high order elements, the projection on RT0 will reduce the order
119  of the approximation.
120  Returns the brick index in the model.
121  */
123  (model &md, const mesh_im &mim, const mesh_im &mim_reduced1, const mesh_im &mim_reduced2,
124  const std::string &ua,const std::string &Theta,
125  const std::string &u3,const std::string &Theta3,
126  const std::string &param_E, const std::string &param_nu, const std::string &param_epsilon,
127  size_type variant = size_type(3), size_type region = size_type(-1));//size_type(2)
128 
129 
130 
131 
132 
133 
134 } /* end of namespace getfem. */
135 
136 
137 #endif /* GETFEM_LINEARIZED_PLATES_H__ */
Model representation in Getfem.
size_t size_type
used as the common size type in the library
Definition: bgeot_poly.h:48
GEneric Tool for Finite Element Methods.
void add_P0_projection(model &md, std::string name)
Add the elementary transformation corresponding to the projection on P0 element.
size_type add_Mindlin_Reissner_plate_brick(model &md, const mesh_im &mim, const mesh_im &mim_reduced, const std::string &u3, const std::string &Theta, const std::string &param_E, const std::string &param_nu, const std::string &param_epsilon, const std::string &param_kappa, size_type variant=size_type(2), size_type region=size_type(-1))
Add a term corresponding to the classical Reissner-Mindlin plate model for which u3 is the transverse...
void add_2D_rotated_RT0_projection(model &md, std::string name)
Add the elementary transformation corresponding to the projection on rotated RT0 element for two-dime...
size_type add_enriched_Mindlin_Reissner_plate_brick(model &md, const mesh_im &mim, const mesh_im &mim_reduced1, const mesh_im &mim_reduced2, const std::string &ua, const std::string &Theta, const std::string &u3, const std::string &Theta3, const std::string &param_E, const std::string &param_nu, const std::string &param_epsilon, size_type variant=size_type(3), size_type region=size_type(-1))
Add a term corresponding to the enriched Reissner-Mindlin plate model for which varname_ua is the mem...