0
다른 Abaqus-Python-Objects처럼 Abaqus-Python에서 ReferencePoints를 다루고 재사용하는 방법?
Abaqus-Python을 스크립팅하는 동안 나는 종종 다음과 같은 변수에 객체를 저장합니다. myAssembly 나중에 코드를 단축하고 이러한 객체를 안정적으로 처리 할 수 있습니다. 예 : myAssembly = mdb.models['Model-1'].rootAssembly 그러나 반환 값은 myAssembly.ReferencePoint(point=(0.5, 0.5, 0.0)) FeatureObject이며 "ReferencePoint"는 없습니다 (Abaqus 2016 Scripting Manual 20.1.58 참조). 따라서 코드 : myReferencePoint = myAssembly.ReferencePoint(point=(0.5, 0.5, 0.0)) mySetMaster …