diff options
Diffstat (limited to '3877/CH1/EX1.6/Ex1_6.sce')
-rw-r--r-- | 3877/CH1/EX1.6/Ex1_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3877/CH1/EX1.6/Ex1_6.sce b/3877/CH1/EX1.6/Ex1_6.sce new file mode 100644 index 000000000..ca5ec79f0 --- /dev/null +++ b/3877/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,13 @@ +//Given + N = 160 //Speed of driving shaft in rpm + d = 18//distance between parallel shafts in mm +//calculation + Omega = (2*%pi*N)/60//angular velocity in rad/s + v = (Omega*d)/1000//sliding velocity in m/s +//Result +clc +printf('Angular Velocity is %f rad/s \n',Omega) +printf(' The maximum velocity of sliding is %f m/s \n',v) + + + |