The stiffness of an FEA model depends on the mesh resolution?

  • Thread starter feynman1
  • Start date
  • #1
feynman1
435
29
As is well known, the stiffness of an FEA model decreases with a refined mesh. What's the rigorous derivation of this?
 

Answers and Replies

  • #2
pasmith
Homework Helper
2022 Award
2,591
1,196
Why not construct the stiffness matrix for [tex]
\frac{d^2u}{dx^2} = -f(x)[/tex] for [itex]x \in (0,1)[/itex] using elements [itex][nh, h(n+1)][/itex] with basis functions [tex]
\begin{split}
f_0 : [0,h] \to \mathbb{R} : x &\mapsto 1 - \frac{x}{h} \\
f_1 : [0,h] \to \mathbb{R} : x &\mapsto \frac{x}{h}
\end{split}[/tex] and see what happens as you reduce [itex]h[/itex]?
 
Last edited:
  • #3
Arjan82
418
320
As is well known, the stiffness of an FEA model decreases with a refined mesh. What's the rigorous derivation of this?
Euhrm... sources?

Considering that the stiffness of the construction decreasing with mesh refinement would be really silly, do you mean the stiffness of the differential equation? But even in this case I'm not sure about this, why would this be true in general? So again: sources?
 
  • #4
hutchphd
Science Advisor
Homework Helper
2022 Award
5,525
4,705
Instead of an admonishment I will provide a tangential and perhaps incorrect annswer.
I recommend Galileo Galilei "Two New Sciences" where one of which is scale invariance and the strength of materials . To my mind these arguments point directly quantum mechanics which set the scale by which big and small are tto be measured
I believe the examination of FEA issues withion scale of the simulation are really a recapitulation of Galileo's arguments about his brave new world. Read the original!

.
 
Last edited:
  • #5
Arjan82
418
320
Instead of an admonishment I will provide a tangential and perhaps incorrect annswer.
I recommend Galileo Galilei "Two New Sciences" where one of which is scale invariance and the strength of materials . To my mind these arguments point directly quantum mechanics which set the scale by which big and small are tto be measured
I believe the examination of FMEA issues withion scale of the simulation are really a recapitulation of Galileo's arguments about his brave new world. Read the original!

.

This answer and the relation to the OP's question is completely lost to me...
 
  • #7
hutchphd
Science Advisor
Homework Helper
2022 Award
5,525
4,705
This answer and the relation to the OP's question is completely lost to me...

My apologies. I was trying to be not very complete on purpose. I do not know the exact issues with FEA to which the OP alludes but my instinct is that they are related to issues of scale invariance vis. Galileo's discussion of scaling the size of animals and how the bones must modify shape). If one is not very careful issues of absolute scale can be changed with mesh size and subtle errors result. That Calileo fellow was pretty astute.
 
Last edited:
  • #8
FEAnalyst
307
129
Check the "Finite Element Procedures" by Bathe and "The Finite Element Method" by Hughes. There are mathematical proofs of that in these books.
 
  • Like
Likes bob012345, feynman1 and hutchphd
  • #9
feynman1
435
29
Or does the OP mean shear locking?
no not shear locking in particular, though shear locking is due to stiffness being too high
 
  • #10
feynman1
435
29
Check the "Finite Element Procedures" by Bathe and "The Finite Element Method" by Hughes. There are mathematical proofs of that in these books.
many thanks, could you tell which chapter in Bathe's book?
 
  • #11
FEAnalyst
307
129
many thanks, could you tell which chapter in Bathe's book?
It’s in the chapter 4.3. Convergence of analysis results. Especially paragraph 4.3.4. Properties of the Finite Element Solution.
 
  • #12
bob012345
Gold Member
1,842
802
As is well known, the stiffness of an FEA model decreases with a refined mesh. What's the rigorous derivation of this?
I recently worked through the derivation of the FEA model (with the help of @pasmith , thanks) and I know the term stiffness matrix goes back to mechanical engineering application dealing with the literal stiffness of materials but what do you mean when you say stiffness of an FEA model decreases. What is decreasing?

For example I derived the node equations for the differential equation

$$ \frac{d^2u(x)}{dx^2} = -f(x)$$

I got for linear test functions ##N_1(x) = \frac{x_2 - x}{\Delta{x}}## and ##N_2(x) = \frac{x - x_1}{\Delta{x}}##

$$\frac{1}{\Delta{x}}\begin{pmatrix}
1 & -1 \\
-1 & 1
\end{pmatrix}
\begin{pmatrix} u_1 \\ u_2 \end{pmatrix} \\
=
\begin{pmatrix}
- u_1' \\
u_2' \end{pmatrix} +
\begin{pmatrix}
\int_{x_1}^{x_2} N_1(x)f(x)\,dx \\
\int_{x_1}^{x_2} N_2(x)f(x)\,dx
\end{pmatrix}$$

So, as ##\Delta{x}## gets smaller, in what sense is the stiffness being reduced?
 
  • Informative
  • Like
Likes feynman1 and berkeman
  • #13
Frabjous
Gold Member
1,048
1,175
I recently worked through the derivation of the FEA model (with the help of @pasmith , thanks)
Is there a thread?
 
  • #15
berkeman
Mentor
64,454
15,829
It sounds like it could be an interesting thread... :smile:
 
  • #16
FEAnalyst
307
129
what do you mean when you say stiffness of an FEA model decreases. What is decreasing?
What the OP meant is that FEM always converges from below (displacements and stresses increase with mesh refinement). This is proven in the aforementioned books, based on strain energy which is always underestimated in FEM.
 
  • #17
bob012345
Gold Member
1,842
802
What the OP meant is that FEM always converges from below (displacements and stresses increase with mesh refinement). This is proven in the aforementioned books, based on strain energy which is always underestimated in FEM.
Like this simple example of a 1D temperature profile of a rod of length 10 units where the red is the analytic solution, the points are the FEM numerical solution and the lines are the linear interpolations between the node values?

image.png
 
Last edited:
  • #18
FEAnalyst
307
129
Like this simple example of a 1D temperature profile of a rod of length 10 units where the red is the analytic solution, the points are the FEM numerical solution and the lines are the linear interpolations between the node values?
Not really, such graphs are in fact commonly used to illustrate the concept of discretization. The plot showing what we discuss here (convergence from below) may look like this (from "A First Course in the Finite Element Method" by Logan):

plot.JPG
 
  • #19
bob012345
Gold Member
1,842
802
Not really, such graphs are in fact commonly used to illustrate the concept of discretization. The plot showing what we discuss here (convergence from below) may look like this (from "A First Course in the Finite Element Method" by Logan):

View attachment 298814
If I pick one point on my curve and plot the extrapolated solution vs. the number of elements used I get this where the red line is the exact value and the points are the extrapolated values between the node points for different numbers of elements;

desmos-graph (18).png
 
  • #20
feynman1
435
29
I recently worked through the derivation of the FEA model (with the help of @pasmith , thanks) and I know the term stiffness matrix goes back to mechanical engineering application dealing with the literal stiffness of materials but what do you mean when you say stiffness of an FEA model decreases. What is decreasing?

For example I derived the node equations for the differential equation

$$ \frac{d^2u(x)}{dx^2} = -f(x)$$

I got for linear test functions ##N_1(x) = \frac{x_2 - x}{\Delta{x}}## and ##N_2(x) = \frac{x - x_1}{\Delta{x}}##

$$\frac{1}{\Delta{x}}\begin{pmatrix}
1 & -1 \\
-1 & 1
\end{pmatrix}
\begin{pmatrix} u_1 \\ u_2 \end{pmatrix} \\
=
\begin{pmatrix}
- u_1' \\
u_2' \end{pmatrix} +
\begin{pmatrix}
\int_{x_1}^{x_2} N_1(x)f(x)\,dx \\
\int_{x_1}^{x_2} N_2(x)f(x)\,dx
\end{pmatrix}$$

So, as ##\Delta{x}## gets smaller, in what sense is the stiffness being reduced?
same question from me, how to see the stiffness being reduced?
 
  • #21
feynman1
435
29
It’s in the chapter 4.3. Convergence of analysis results. Especially paragraph 4.3.4. Properties of the Finite Element Solution.
many thanks really helpful, though it's not explained 100%, for all it says is that the solution is underestimated without saying why.
 
  • #22
FEAnalyst
307
129
many thanks really helpful, though it's not explained 100%, for all it says is that the solution is underestimated without saying why.
I didn't have time to go through the whole section carefully but I think that the explanation lies in the equations presented there and the text that you are talking about is just a comment to these equations.
 
  • #23
bob012345
Gold Member
1,842
802
I didn't have time to go through the whole section carefully but I think that the explanation lies in the equations presented there and the text that you are talking about is just a comment to these equations.
I'm now looking for a comprehensible 2D example of a heated plate that I can learn and teach someone using the FEM analysis. I've looked but everything is either too complex and theoretical or uses triangular elements rather than square element which I need for a simple example by hand. Any suggestions would be appreciated.
 
  • #24
hutchphd
Science Advisor
Homework Helper
2022 Award
5,525
4,705
I suggest that as an example you choose a problem that can be solved analytically and compare it to various FEM approaches . Start in 1D ?. Do this several times.
 
  • #25
bob012345
Gold Member
1,842
802
I suggest that as an example you choose a problem that can be solved analytically and compare it to various FEM approaches . Start in 1D ?. Do this several times.
Thanks. That's a good suggestion but we did a couple different 1D examples both analytically solvable and now the student wants to see a 2D version.
 
  • #26
hutchphd
Science Advisor
Homework Helper
2022 Award
5,525
4,705
So go to 2D? Rectangular should be easy. Maybe circular? Hexagonal? (I don't know how nasty this will get). Nonorthogonal axis can be tricky.
 
  • #27
bob012345
Gold Member
1,842
802
So go to 2D? Rectangular should be easy. Maybe circular? Hexagonal? (I don't know how nasty this will get). Nonorthogonal axis can be tricky.
I know. I want to avoid anything like those boundary value problems in Grad school.
 
  • #28
hutchphd
Science Advisor
Homework Helper
2022 Award
5,525
4,705
Life is messy. Physics a little less so.
 
  • #29
feynman1
435
29
Why not construct the stiffness matrix for [tex]
\frac{d^2u}{dx^2} = -f(x)[/tex] for [itex]x \in (0,1)[/itex] using elements [itex][nh, h(n+1)][/itex] with basis functions [tex]
\begin{split}
f_0 : [0,h] \to \mathbb{R} : x &\mapsto 1 - \frac{x}{h} \\
f_1 : [0,h] \to \mathbb{R} : x &\mapsto \frac{x}{h}
\end{split}[/tex] and see what happens as you reduce [itex]h[/itex]?
what can we imply from this derivation?
 
  • #30
FEAnalyst
307
129
I'm now looking for a comprehensible 2D example of a heated plate that I can learn and teach someone using the FEM analysis. I've looked but everything is either too complex and theoretical or uses triangular elements rather than square element which I need for a simple example by hand. Any suggestions would be appreciated.
Check "A First Course in Finite Elements" book by Fish. You will find such example there.
 

Suggested for: The stiffness of an FEA model depends on the mesh resolution?

Replies
7
Views
623
Replies
2
Views
556
Replies
3
Views
542
Replies
2
Views
380
Replies
0
Views
340
  • Last Post
Replies
9
Views
580
Replies
12
Views
708
  • Last Post
Replies
9
Views
657
  • Last Post
Replies
2
Views
1K
Top