Introduction

The finite element method permits to solve the governing equation of a structural model by using numerical methods over one discretization of the model. When the structure is thin (have one dimension much smaller than the other two), it is possible to simplify the problem as a shell finite element problem. The results of this analysis are the displacements and rotations in every node of the mesh and the strengths in some interior element positions.

In order to take valuable information of the analysis, a good understanding and interpretation of the strengths is necessary. This document will explain what the strengths in shells are and how can they be used for dimensioning or evaluating one structural model.

We are going to define mathematically the strengths in shells as they are used in the standard Reissner-Mindlin theory. In the next paragraph we shall establish some relationships between the Shell strengths and the stresses tensor integrated across the shell thickness.

Draft Ribo Rodriguez 725859212-shell desc.svg
Image 1. Shell is represented by its mid plane

Definitions

One structure can be considered a Shell if is thin (have one dimension much smaller than the other two),

Some definitions:

Shell
is a plain or curved surface in the 3D space that geometrically is positioned in the mid plane of the structure (based on the thickness direction). This Shell and the thickness in every point over the Shell represents completely the geometry of the structure
Thickness
for every point in the structure, the thickness is the width of the model through the small dimension
Local axes
for every point in the structure it is necessary to define an attached local axes system X’, Y’,Z’ where axe Z’ will always be perpendicular to the Shell. X’, Y’ can be any axes but must be defined for every point in the Shell prior to the calculation
Section
is the part of the structure which is the intersection between the structure and a plane orthogonal to the Shell

and then, the Reissner-Mindlin hypotheses will be the following:

  • One planar section, after deformation will continue to be planar. The deformed section does not generally remain orthogonal to the mid-surface
  • The normal stress through the thickness is ignored ()
  • There is a linear variation of displacement across the plate thickness and the plate thickness does not change during deformation

Definition of the strengths in the shell

In any internal point of the structure the stress tensor represents the stresses in that point. As we have simplified the shell structure by the mid plane, it is necessary to define some values that are calculated as the integrals of the stress tensor through the shell thickness so as they represent completelly, under the accepted hipotheses the stresses in the mid plane.

Draft Ribo Rodriguez 725859212-shell strengths.svg
Image 2. Strengths in the shell

For any point in the Shell midplane, a set of strengths must define completely the stress tensor in any point in the thickness.

The strengths are three axial forces in the plane, three bending moments and two shears

Table 1. Definition of strengths
Axial force in X’ Axial force in Y’ Axial force in XY’
Bending momment X’ Bending moment Y’ Twisting moment XY’
Shear force in X’ Shear force in Y’


All the integrals are in Z’ axe from -t/2 to t/2, being t the thickness of the shell in that point. Z’ is the local axis defined equal to the normal to the surface at the point.

We need to consider that the real and have a parabolic shape through the shell thickness with null values in the top and bottom layers. However, we accept the simplification of considering the shear as constant through all the thickness.

Draft Ribo Rodriguez 725859212-shear strengths.svg
Image 3. Real parabolic shear stress is simplified as constant through the thickness

Finite element analysis

Finite element analysis is a method to solve numerically the differential equation that governs the structural behavior of the model. To do so, it is necessary to discretize the model into a mesh, which is a collection of elements connected between them by nodes. The variables to solve in our problem are the displacements and rotations of every node of the mesh. From them, it is possible to interpolate the value of displacements for every point over the structure and it is possible to calculate the strengths as a derived result of the displacements.

Draft Ribo Rodriguez 725859212-shell mesh.svg
Image 4. The discretization is the shell mesh

Once discretized, the finite element problem becomes:

(1)


where is the stiffness matrix, is the external forces vector and is the displacements vector. As every node has 6 degrees of freedom (), the dimension of is 6 x number of nodes.

If the problem is linear, and do not depend on and the problem can be solved by simply solving the linear system once.

If the problem is non linear, or depend on and then it is necessary to solve the problem by iterating through a non-linear solver.

If the problem is dynamic, the equation to solve becomes:

(2)


see [1] for more details.

Results of the finite element analysis

The finite element analysis is a resolution of a system of equations where the variables are the displacements and rotations defined in every node of the mesh. As these variables are defined in the nodes commons to neighbouring elements, the displacements and rotations fields is continuum throgh the elements by the own definition of the problem.

As described before, the strengths are the integration of the stress tensor through the thickness of the shell and the stresses are the derivatives of the displacements. Both the stresses and the strength are calculated inside every element. Specifically, they are calculated in the intagration points used to calculate the numerical integration inside the element during the analysis. These points are called Gauss points and are used due to the fact that the result is more precise on that points.

As the strengths are calculated inside every element, these leads to two effects that is important to consider:

  1. The strengths fields is discontinuous between elements
  2. When displaying the strengths in a postprocessing program, the software extrapolates the values calculated internally to new values in every boundary element. For relativelly small increments of strength for every Gauss point, it is possible that the calculated value for the nodes has a too great or too small magnitude.

Smoothing

As the strengths fields is discontinuous between elements, in some cases it might be convenient to calculate another field, similar to the previous one, that is continuous in the node. This is only possible between elements that share equal local axes definition. The smoothed field is calculating by comparing the values in every node from each of the neighbouring elements. Some kind of mean value is obtained and used as the value in the node.

This correction is generally good, as it provides a value that is closer in most cases to the real value. However, in extreme cases and specially near the shell boundary or in points over external elements or beams, it can lead to incorrect values. This effect can be maximized by adding up the smoothing correction to the extrapolation to nodes in boundary elements.

It is important to visualize and compare the non-smoothed results and the smoothed ones in order to understand better the strengths field.

Momentus in coarse mesh. Gauss points results
rp-02-gp rp-02-gp1 rp-02-gp2


Momentus in coarse mesh. Smoothed results
rp-02-sm rp-02-sm1 rp-02-sm2


Momentus in fine mesh. Gauss points results
rp-005-gp rp-005-gp1 rp-005-gp2


Momentus in fine mesh. Smoothed results
rp-005-sm rp-005-sm1 rp-005-sm2


We can summarize some of the results in table 2. We can see that the error, specially for the coarse mesh, is quite high.

Table 2. Some results for the different meshes
Mesh Gauss points/Smooth
coarse GP -2.30 20.0 -77
coarse SM -2.30 13.0 -75
fine GP -0.17 5.8 -74
fine SM -0.17 4.6 -73


Main strengths and main stresses

For any tensor defined in a local axes system, there exists another local axes system in that point that maximizes and minimizes the diagonal values and converts to zero the non-diagonal values.

This system is calculated finding the eigenvalues and eigenvectors of the matrix.

The local axes system for main moments, main axial strengths and main stresses need not to be equivalent and typically will be different between them.

Note that the following matrices are symmetrical and , , , etc.

Strengths in local axes Main strengths

Where and will represent typically different local axes systems with a common Z’ axe.

Draft Ribo Rodriguez 725859212-shell main axes.svg
Image 5. Main strengths in and

Stresses in top and bottom layers

In our shell model, we assume that stresses vary linearly through the thickness of the Shell. As a consequence, both the maximum and the minimum of any stress component will be located in either the top or the bottom layer for any Shell point.

Note: shear stresses in y’ and z’ have a real parabolic shape through the Shell thickness, with a maximum in the middle plane of the shell. However, in our simplified model, we assume a constant value for the shear stresses in the thickness. So, maximum and minimum are also in the external layers.

Top and bottom stresses are calculated in the following way:

then:

Dimensioning metallic materials

Based on the stresses tensor calculated before, it is possible to calculate the Von Mises stress for the top and bottom layers following the formula:

(3)


where are the main stresses associated to the stress tensor .

The Von Mises stress as defined in (3) can be used as a yield criteria for the material. This is commonly used as yield criteria for metallic materials.

Dimensioning structural concrete

Structural concrete is a composite material made of concrete and steel bars. Several normatives, like Eurocode and ACI and other national regulations, offer guidelines to dimension and check the concrete cross section and the amount of steel.

For a model where the main axial forces axes and the main momentum axes are coincident with the element local axes , the strengths in the section will be , and in the direction and , and in the direction. With these strengths, it is possible to dimension by using the standard regulations.

In the general case, there is an additional twisting moment that is different the zero. It is not in the security side to dimension the section without considering this twisting moment in the verification of the main steel bars in both directions.

It is necessary to use some method, that satisfies the equilibrium and geometric compatibility in the section and that has some bearing strengths greater that the external actions.

One commonly used method is the Wood and Armer. In it, the bearing and are increased based on the value of . These values are used for dimensioning.

The CEB-FIP Model Code proposes and alternative method where the thickness is divided into three layers and the strengths are converted into pairs of forces and shear forces for dimensioning.

Wood and Armer method

The Wood and Armer method is based on the normal moment yield criterion (Johansen’s yield criterion) and proposes the dimensioning of the maximum bear moments for some given directions and can be calculated as follows:

(4)


(5)


if and have different sign, and is bigger then:

(6)


(7)


Theoretical justification of the Wood and Armer method

Given external moments and , the moments in direction where the angle between and is are the following:

(8)


(9)


On the other side, if and are the moment capacities in axes x,y then, the bearing capacity of the section in direction where the angle between and is is the following:

(10)


Imposing that in (10) must be bigger that in (8) for any direction, it is possible to justify that the Wood and Armer proposal is an upper bound of the capacity for any direction.

The justifications and details of the method are described in [2] and [3].

CEB-FIP Model Code

The slab model is decomposed into three layers, each with 1/3 of the slab thickness. Moments are decomposed into pairs of forces and applied to the layers as normal forces and shear forces that satisfy equilibrium with the moments.

Dimensioning composite laminate material

A composite laminate material or fibre reinforced plastic (FRP) is built adding several layers of fiber that get glued together by the use of a resin. In order to dimension or checking its bearing capacity, it is typically necessary to evaluate a failure criterion to every one of its constitutive layers or plies.

Every single layer can be defined by its components of fiber and resin and are normally orthotropic. This anisotropic composite materials will have different strengths in tension and compression.

It is common to use the Tsai–Wu failure criterion in order to check the capacity of each single layer.

Draft Ribo Rodriguez 725859212-shell laminate.svg
Image 6. Analysis of a laminate ply

Tsai–Wu failure criterion

The criterion is defined as follows:

(11)


where is one of and and are some coefficients calculated from laboratory results.

For plane stress, where , the criteria is reduced to:

(12)


where:

As it is difficult to obtain the value of from a laboratory test, some references suggest to use the value . Tsai recommends to obtain its value based on the following relationship:

(13)


Where and are the tensile and compressive allowable stress in the longitudinal direction and and are the tensile and compressive allowable stress in the transverse direction. is the allowable shear stress.

see [4] and see [5] for a detailed description.

References

[1] Oñate E. (1991) Cálculo de estructuras por el método de los elementos finitos. ISBN 8487867006


[2] Shin M., Bommer A., Deaton, J.B. and Alemdar, B.N. (2009) Twisting Moments in Two-Way Slabs. Concrete international. Available: https://www.academia.edu/15396812


[3] OBrien E., O’Dwyer D. (2015). A review of the Wood and Armer equations for torsion in bridge slabs. 93. 40-43


[4] Tsai S.W. and Wu E.M. (1971) A general theory of strength for anisotropic materials. J Compos Mater, 5. pp. 58-80


[5] Hopkins P. (2005) Benchmarks for Membrane and Bending Analysis of Laminated Shells. ISBN 1874376085


Back to Top

Document information

Published on 25/09/19
Submitted on 25/09/19

Licence: CC BY-NC-SA license

Categories

Technical documents

Software manuals

Document Score

0

Views 0
Recommendations 0

Keywords