We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.
構造全般

構造全般

Ansysで、Abaqusの最大主ひずみ(abs)に相当する値を取得する方法を教えてください。

Tagged:

    • FAQFAQ
      Participant

      “[結果]オブジェクトの下に、以下のコマンドスニペットを挿入します。Mechanicalで、最大主ひずみ(abs)のAPDLイメージが表示されます。 ! Inserts Abaqus type “”Max Principal Strain (abs)”” as APDL image under command snippet in Mechanical /post1 set,last allsel *vget,epprin1,node,0,epto,1 *vget,epprin3,node,0,epto,3 *get,ncount,node,,count *dim,epprinab,array,ncount nn=0 *do,J,1,ncount nn = ndnext(nn) *if,abs(epprin1(J)),ge,abs(epprin3(J)),then epprinab(J) = epprin1(J) *else epprinab(J) = epprin3(J) *endif *enddo *vput,epprinab,node,0,epto,int ! overwrites strain intensity in results database /GRAPHICS,FULL /efacet,1 /show,png plnsol,epto,int”