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 MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Element Force and NODE acceleration during a simulation

Status
Not open for further replies.

schaerr

Mechanical
Joined
Jan 29, 2013
Messages
2
Location
SE
Hello Everybody,

In order to implement a controller within the ANSYS programm, I need to have access to the acceleration of a node and the force acting on an element. I know how to do this in the postprocess, but I couldn't find any helpful command to do it during a simulation (within a DO-loop)

What I found so far:
*GET,x1,NODE,10113,U,Y => results in the displacement in Y direction of node 10113
*GET,F,NODE,10113,F,FY => results in the force acting in Y direction on node 10113

the DERIV command doesn't work here. Also I think doing the derivation manually is not a really nice solution.. but a backup idea. I hope someone has a better approach.

Does someone have an idea how to solve this problem? The *GET command doesn't future the force together with 'ELEM' and I also couldn't find a A instead of a U to get the acceleration.

Thank you for your help.

Regards
Raphael
 
Hello Raphael,

I hope a have a better solution: There is a toolbox for Ansys Mechanical APDL for user friendly definition of controller structures (GUI and macro based).

See description at and a video of the controlled motion of a machine tool at
Regards
Alex

MESHPARTS
Tuning Your Simulation
 
Thank you for the hint. I will check that.

What I found so far is, that
*GET,acc,NODE,10113,A,Y is a way to get the acceleration if the following setting is made:
OUTRES,ALL,ALL

10113 is the node of interest. Value is then stored in 'acc'

And the force of a contact element can be read out with the following command:
*GET,Fcontact,ELEM,11013,NMISC,44 where 11013 is the element number of the contact element. Value is then stored in 'Fcontact'.

Regards
Raphael

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top