ansys / pymapdl

Pythonic interface to MAPDL
https://mapdl.docs.pyansys.com
MIT License
428 stars 120 forks source link

Where can I find the result file 'rotor.rst' used in the document #22

Closed yagweb closed 6 years ago

yagweb commented 6 years ago

In the document, an Ansys result file named 'rotor.rst' is used. Where can I find it to run the examples? Thank you!

akaszynski commented 6 years ago

'rotor.rst' isn't included as the result file is too large to include. If you have a copy of ANSYS you can read in the sector.cdb file and run a simple modal analysis with:

! Read in sector archive file
CDREAD, DB, sector.cdb
/PREP7

! Make cyclic
CYCLIC

! Set material Properties
MP,    NUXY,  1,  0.31 
MP,    DENS,  1,  4.1408E-04 
MP,      EX,  1,  16900000 
EMODIF, ALL, MAT, 1 

! Run Modal Analysis
/SOLU 
ANTYPE,2,NEW 
MODOPT,LANB,12 
MXPAND,,,,YES
SOLVE 
FINISH 

I've also attached the rotor result file by using the above APDL commands.

rotor.zip