Difference between whole and cut part

About the development of the FEM module/workbench.

Moderator: bernd

Post Reply
LegoCraft29
Posts: 13
Joined: Wed Oct 17, 2018 2:00 pm

Difference between whole and cut part

Post by LegoCraft29 »

Good Morning,

I use freecad probably everyday both for my job and at home for my house project.
I start use around 0.15 version without posting anything as i normally find answer on forum.
But today i can't...so lets try to ask you.

I want to estimate a deformation under pressure of a box. This is a quite simple problem
Pressured_box.png
Pressured_box.png (322.96 KiB) Viewed 907 times
As you can see the deformation is around 9.14mm. A real life trial give me 8mm. (perhaps it's not so bad for FEM)

Then i cut my part to decrease mesh size and time for calculation
Pressured_box_after_cut.png
Pressured_box_after_cut.png (174.15 KiB) Viewed 907 times
Then the deformation is 12mm.
Question 1 : How do you explain this difference ?

I want to add a cover to see also the deformation
Question 2 : How i can fix one point (it's seem to me that i doesn't work)

I suppose, that the mistake between real life and FEM is due to nonlinear simulation (aluminium material)
So i try to set nonlinear geometry to true. I give some strange result.
Sometime i have just one result with quite acurate results and some time i have several time step. the last one is not so bad.
Question 3 : How ot set up non linear material ? Is aluminium non linear ?
Question 4 : what's is the difference between linear and nonlienar ? should i look in calculix documentation ?
Question 5 : Is there a bug ?

Thanks a lot for the great job you do with freecad.

-------------------------------------------------------------
OS: Windows 7
Word size of OS: 64-bit
Word size of FreeCAD: 64-bit
Version: 0.18.14959 (Git)
Build type: Release
Branch: master
Hash: ff05101b68dc9a7d1e70dd69544f14ac8598a433
Python version: 2.7.14
Qt version: 4.8.7
Coin version: 4.0.0a
OCC version: 7.2.0
Locale: French/France (fr_FR)
Attachments
box_under_pressure_no_mesh.FCStd
(57.1 KiB) Downloaded 38 times
UR_
Veteran
Posts: 1355
Joined: Tue Jan 03, 2017 8:42 pm

Re: Difference between whole and cut part

Post by UR_ »

LegoCraft29 wrote: Wed Oct 17, 2018 4:12 pm Question 1 : How do you explain this difference ?
I can't see a noticeable difference

FreeCAD 0.18-000083.png
FreeCAD 0.18-000083.png (68.16 KiB) Viewed 872 times
FreeCAD 0.18-000082.png
FreeCAD 0.18-000082.png (112.01 KiB) Viewed 872 times

Changes:
- reduced max elem size to 3 mm
- corrected sym face constraints

Please note:
On sym faces deflections in plane are allowed (translation and rotation)
deflections out of plane are forbidden ;)

So please don't forget the rotational DOF's :roll:

box_under_pressure_no_mesh_ur_.FCStd
(53.16 KiB) Downloaded 38 times
LegoCraft29
Posts: 13
Joined: Wed Oct 17, 2018 2:00 pm

Re: Difference between whole and cut part

Post by LegoCraft29 »

Thanks a lot for your quick answer.
UR_ wrote: Thu Oct 18, 2018 5:43 pm Please note:
On sym faces deflections in plane are allowed (translation and rotation)
deflections out of plane are forbidden
If i understand well : When you have a symetrical plane, you need to block rotation on the other axe.
But what do you mean exactly when you add "(translation and rotation)" Did you only describe delflection ?(My english find its limit)

Now, i try to answer to other questions. But i haven't find yet.
I remark that the last step of a non linear simulatione give value near real result after pressure test.
I don't understand why. Do you have an idea.
fandaL
Posts: 440
Joined: Thu Jul 24, 2014 8:29 am

Re: Difference between whole and cut part

Post by fandaL »

UR_ wrote: Thu Oct 18, 2018 5:43 pm Please note:
On sym faces deflections in plane are allowed (translation and rotation)
deflections out of plane are forbidden ;)

So please don't forget the rotational DOF's :roll:
Rotational degrees of freedom need to be set properly for symmetry BC for beam and shell elements. In ccx, solid elements do not have rotational DOFs, so if you run UR_'s example you will get exactly same results as if you let rotations to be free at boundaries.

try to imagine solid elements on the boundary - rotations are constrained since solid elements have 2 nodes through the "thickness" on the boundary cross section. Whereas shell element has only 1 original node on the boundary cross section curve, so you need to prescribe the rotation constraints.

Explanation e.g. here: https://www.clear.rice.edu/mech403/Help ... try_BC.pdf

LegoCraft29 wrote: Fri Oct 19, 2018 10:57 pm Now, i try to answer to other questions. But i haven't find yet.
I remark that the last step of a non linear simulatione give value near real result after pressure test.
I don't understand why. Do you have an idea.
The non-linear analysis calculates several iterations and after each iteration it updates loads acting now on the deformed mesh (and material if you define non-linear material properties). Thus it is more precise in case of large deformations.
UR_
Veteran
Posts: 1355
Joined: Tue Jan 03, 2017 8:42 pm

Re: Difference between whole and cut part

Post by UR_ »

fandaL wrote: Sat Oct 20, 2018 8:00 pm solid elements do not have rotational DOFs
Abaqus user's guide says:
Element types
Stress/displacement elements

C3D4 4-node linear tetrahedron
...

C3D10(S) 10-node quadratic tetrahedron

...
Active degrees of freedom

1, 2, 3
That's from here: "28.1.4 Three-dimensional solid element library": https://www.sharcnet.ca/Software/Abaqus ... 1.html#usb

So, I was a little bit overcautious :roll:

I should work on this :lol:
Post Reply