I used to apply loads to the end of a pipe or pressure vessel nozzle using the commands below. (With credit to the torque example in CAELINUX.)
C_node is a node on the pipe centerline to which the loads are applied. Node group Load_MPC is on the edge of the pipe and includes C_node.
How would one do the same thing now that, as I understand the error messages I get, GROUP_NO is not available any more?
Thanks in advance.
.....
MODE=AFFE_MODELE(MAILLAGE=MAIL,
AFFE=(_F(TOUT='OUI',
PHENOMENE='MECANIQUE',
MODELISATION='3D',),
_F(GROUP_NO='C_node',
PHENOMENE='MECANIQUE',
MODELISATION='DIS_TR',),),);
CARA=AFFE_CARA_ELEM(MODELE=MODE,
DISCRET=_F(CARA='K_TR_D_N',
GROUP_NO='C_node',
VALE=(0.0,0.0,0.0,0.0,0.0,0.0,),),);
........
BC=AFFE_CHAR_MECA(MODELE=MODE,
DDL_IMPO=(_F(GROUP_MA='X_Fix_F',
DX=0.0,),
_F(GROUP_MA='Y_Fix_E',
DY=0.0,),
_F(GROUP_MA='Z_Fix_E',
DZ=0.0,),),
LIAISON_SOLIDE=_F(GROUP_NO='Load_MPC',),
FORCE_NODALE=_F(GROUP_NO='C_node',
FX=FNX,
etc