Two shaft conection #1036
Unanswered
augustodc76
asked this question in
Q&A
Replies: 1 comment
-
Hi @augustodc76 , I'd not fully understand the your question. import ross as rs
Q_ = rs.Q_
steel = rs.Material("steel", rho=7800, E=200e9, Poisson=0.27)
L = 0.2
idl = 0.03
odl = 0.08
N = 6
shaft = [rs.ShaftElement(L=L, idl=idl, odl=odl, material=steel) for i in range(N)]
disks = [
rs.DiskElement.from_geometry(n=3, material=steel, width=0.08, o_d=0.4, i_d=0.08)
]
rotor1 = rs.Rotor(shaft_elements=shaft, disk_elements=disks)
rotor1.plot_rotor().show() This code was adapted from the documentation Example 16. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi ROSS developers
I did some trials with ROSS some months ago with a very good results, my congratulations to the ROSS development team!.
Now I would like to evaluate a special case, I have 2 coaxial shafts and I´m having issues with:
Do you have any recomendation to model this case?
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions