Hello Krzysztof,
sorry for error in my last comment, DRX=0.0, DRY=0.0, DRZ=0.0, for GROUP_NO=('P1','P2','P3','P4',) are not needed, removing elements it's enough.
k_zurawski wrote:
It's weird, but I did not specify any modelisation to SEG2, so those elements should be "transparent" for the solver. Correct me please if I'm wrong.
To be honest I don't now. From approach of jeanpierreaubry I see, that you can have more elements in mesh and in AFFE_MODELE define model just on part of the mesh.
It is writen in 4.41.01 (Operator AFFE_MODELE): This operator allows to affect modelings on whole or part of the grid. To this I never pay attention.
Some tests for using TOUT='OUI' with 088-case02-QUAD4.zip:
for
model = AFFE_MODELE(AFFE=(_F(MODELISATION='DKT',
PHENOMENE='MECANIQUE',
TOUT='OUI'),
_F(GROUP_MA=('P1','P2','P3','P4',),
PHENOMENE='MECANIQUE',
MODELISATION='DIS_TR',),
),
MAILLAGE=Mesh)
and mesh without removed elements you have in .mess file (after AFFE_MODELE):
Modélisation Formulation Type maille Élément fini Nombre
_ _ SEG2 MEBODKT 1294
DIS_TR _ POI1 MECA_DIS_TR_N 4
DKT _ QUAD4 MEDKQU4 8640
DKT _ TRIA3 MEDKTR3 4
So there are 1294 SEG2 MEBODKT elements.
Finite elements of type SEG2 MEBODKT (used for application of loadings - see U3.12.01 part 1.3) are created for all edges of the elements of plate.
Same model = AFFE_MODELE definition and mesh with removed elements:
Modélisation Formulation Type maille Élément fini Nombre
_ _ SEG2 MEBODKT 1286
DIS_TR _ POI1 MECA_DIS_TR_N 4
DKT _ QUAD4 MEDKQU4 8640
DKT _ TRIA3 MEDKTR3 4
So there are 8 SEG2 MEBODKT fewer. Obviously with option TOUT='OUI' are SEG2 MEBODKT elements created not only for edges of the elements of plate but on beams outside of plate too.
Original mesh (no removed elements) with jeanpierreaubry .comm file:
Modélisation Formulation Type maille Élément fini Nombre
_ _ SEG2 MEBODKT 8
DIS_TR _ POI1 MECA_DIS_TR_N 4
DKT _ QUAD4 MEDKQU4 8640
DKT _ TRIA3 MEDKTR3 4
Just 8 elements are created needed for 'LOADD_EL' !
It seems like using TOUT='OUI' in AFFE_MODELE can create a unexpected problem. I learned something :).
k_zurawski wrote:
The other weird thing is that my last mesh doesn't contain any additional SEG2 elements in those holes and I'm still getting rigid body motion.
You mean Case02.med? It runs well on my computer?
Stano