Closed QiangF closed 2 years ago
I am not really familar with your condition, but you may check some information on Part.Surface().
I have no idea of a Surface having two sides, in my own experience, I always use the side1Faces
.
I am trying to model the rolling of metal bars with different groove shapes. The model has contact between roll surface and billet surface. In the snippet below, sometimes the roll surface is side1Face, sometimes is side2Face, how to know in advance which type of surface to select?
f = roll.faces if groove_type == 'ovp': roll.Surface(side1Faces=f, name='ROLL') else: roll.Surface(side2Faces=f, name='ROLL')
What is the difference in the created abaqus model using the two different arguments?
These two options result in surface selection on the opposite side of the shell of the roll.
Maybe here is some information you can refer to: https://help.3ds.com/2021/english/dssimulia_established/simacaecaerefmap/simacae-c-picconcside.htm?contextscope=cloud.
It seems that whether it is side1Faces
or side2Faces
depends on the previous selections, if you use side2Faces
to create a Surface once, the next time if you still use side2Faces
to create the surface, the created surface will be the opposite surface.
It seems that whether it is
side1Faces
orside2Faces
depends on the previous selections, if you useside2Faces
to create a Surface once, the next time if you still useside2Faces
to create the surface, the created surface will be the opposite surface.
Sorry, this maybe not correct.
Close this since it is off the topic.
I am trying to model the rolling of metal bars with different groove shapes. The model has contact between roll surface and billet surface. In the snippet below, sometimes the roll surface is side1Face, sometimes is side2Face, how to know in advance which type of surface to select?