3pb unexpected results when varying input data

Good afternoon.
I am a little confused and hope someone here could help me explain this? I have a 3-point-bending simulation of a sandwich panel with composite skins and an aluminium core. I tried making small variations to the material input values and get very large variations in results which do not look correct any longer. I cannot explain this…

The model looks like this, inspired by @FEAnalyst video: https://www.youtube.com/watch?v=nGraA5nsHOo


The dimensions are length 120 mm, width 36.7 mm and core height 8.3 mm.
NB: Not sure why there is an area defined to input load (guess to minimise stress concentrations?) and also not entirely sure what size should be selected based on which reasoning. Here 1mm width has been used as a best guess for the contact area of the loading roller.

I defined the skins as shells and expand these through the keyword manager to layered composites representing this material with 2mm thickness:

I leave this unchanged between simulations. For the core material modelled as a solid, I define an orthotropic material using the keyword editor. This should represent a honeycomb core of 3.2 mm cell size and density of about 70 kg/m3:
*MATERIAL, NAME=core
*ELASTIC, TYPE=ENGINEERING CONSTANTS
200, 200, 1270, 0.278, 0.278, 0.278, 200, 200,
550, 20
Definitions here: *ELASTIC

This is the result which does look reasonable:

I then tried to vary E1 and E2 of the core to check if other input values would provide simulation results which match test data better. I tried for example E1 = E2 =140, 141 or 142 and otherwise kept all other parameters constant. However, the simulation results vary significantly. Why would this be? Here are the screenshots of maximum displacement:

E1=E2=140:


In this example, the input looks like:
*MATERIAL, NAME=core
*ELASTIC, TYPE=ENGINEERING CONSTANTS
140, 140, 1270, 0.278, 0.278, 0.278, 200, 200,
550, 20

E1=E2=141:

E1=E2=142:

Not only look the displacement fields patchy but also the max deflection peaks at 141? I have tried to play with mesh density but no luck.

Could anyone point out where these artifacts come from? What is wrong with the set-up? The variations to the material data are minute (<1%) but the variations are large. Somehow, it reminds me about the Butterfly effect…

The pmx file, using v2.2.11 dev can be found here:

On a different note:
When creating a model and defining material properties in the tree and others in the keyword editor and then deleting a material in the tree, this removes the materials in the keyword editor too. This may be an unexpected behaviour?

Many thanks for any of your wisdom! Thank you all the same if you wouldn’t know either.

There’s an interference between the expanded shells of the skins and the solid core. You should offset the shells by 2 mm (I had a gap in the tutorial as well).

Still, the core seems to be exhibiting incorrect hourglassing-like distortion:

Abaqus gives a clue by throwing this error message when submitting input file with modified constants:

***ERROR: STIFFNESS DEFINED BY ENGINEERING CONSTANTS IS NOT PHYSICALLY
REASONABLE. CHECK CHOICE OF POISSON’S RATIOS

Check the stability criteria. From Abaqus documentation:

1 Like

Knowing the above criteria and the following relationship:

image

we can see that your second set of data is invalid - the last criterion yields negative value (-0.869). Your original set of data also gives negative value of the last criterion (-0.332) but it somehow works in CalculiX (it causes error in Abaqus though).

2 Likes

Thank you for this Jakub.
Expanding the skins in the wrong direction is of course a rooky mistake. The keyword should have read:
** 2 mm skins
*SHELL SECTION, COMPOSITE, Elset=Element_Set-1, OFFSET=-0.5
0.5, , CFRP, OR_0
0.5, , CFRP, OR_90
0.5, , CFRP, OR_0
0.5, , CFRP, OR_90
*SHELL SECTION, COMPOSITE, Elset=Element_Set-2, OFFSET=0.5
0.5, , CFRP, OR_0
0.5, , CFRP, OR_90
0.5, , CFRP, OR_0
0.5, , CFRP, OR_90

I’m not entirely sure about the need for a gap between the skins and the core (the 2 mm offset you mentioned). The load introduction is defined at the outer face of the top skin—shouldn’t that remain consistent when the skins are expanded? Even if not, it likely makes little difference for the simulation in this case I believe…

Pointing out the Abaqus error message seems to be the key to the problems faced and many thanks for this! In the absence of better Poison ratios I used the default ~0.3. Should have known better… Updating this with something reasonable for honeycomb structures to
v12 = v21 = 0.21
v13 = v31 = 0.01
v23 = v32 = 0.01
removed the artefacts and the model runs well.

For the stability criteria you show, these should all have passed; but of course depends if the value of vij is to be taken positive or negative in these checks? It will make a big difference to
1-v12^2-v23^2-v13^2-2*v12v23v13

Lesson learned from this exercise. Get your material properties correct from the start! :wink:
Many thanks again!

You can either add gaps or use proper offsets, this is equivalent. Just make sure there’s no intersection when shell is expanded (you don’t have to run full analysis to check that, just choose “Check Model”).

They should be taken as they are from the standard relationship:

image

where j is the transverse strain direction when the material is stressed in the i direction.

1 Like