Good morning,
thank you all for your answers, they are helping me a lot!!!
I have another question on stage management.
I am simulating a construction by stages, in the COMM1 file I have only one floor of the building (e.g. 2 pillars and 1 beam), then I want to add in the COMM2 file two more pillars and another beam to simulate the construction of a second floor.
In the COMM1 file I have defined the model in this way:
model = AFFE_MODELE(AFFE=(
_F(GROUP_MA=('P_1'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('P_2'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('T_1'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
),
MAILLAGE=mesh)
In the COMM2 file I want to add more parameters to model, how do I do this?
Now I am going to rewrite a new variable (model2), but I think there is an easier way, can you help me?
model2 = AFFE_MODELE(AFFE=(
_F(GROUP_MA=('P_1'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('P_2'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('T_1'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('P_3'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('P_4'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
_F(GROUP_MA=('T_2'),
MODELISATION = 'POU_D_T',
PHENOMENE='MECANIQUE'),
),
MAILLAGE=mesh)
Many thanks
Greetings