Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do i verify the active coordinate system (python)?

Status
Not open for further replies.

loki3000

Mechanical
Joined
Sep 29, 2009
Messages
652
Location
SI
i want to get S33 values for each element face. how can i verify that i am using the right coord. system -- global, that i've set it manually? i have added this in beginning of the script:

odb.rootAssembly.DatumCsysByThreePoints(name='newCSYS',
coordSysType=CARTESIAN, origin=(0.0, 0.0, 0.0), point1=(1.0, 0.0, 0.0),
point2=(0.0, 1.0, 0.0))
dtm = odb.rootAssembly.datumCsyses['newCSYS']

but the problem is still, that i am getting some strange results for s33 (and/or normal to the face value).

do i have to transform output to the before specified coordsys (getTransformedField) or is that statement above enough?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top