summaryrefslogtreecommitdiff
path: root/1205/CH18/EX18.4/S_18_4.sce
blob: dfb872caac8bb8b233b9bfacf97596368294c98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc;
m=300;//g, mass of each rod
m=m/1000;//kg, conversion into kg
c=100;//mm, length of each rod
c=c/1000;//m, conversion into meter
//From theoritical work , we got formula for Dy and Dz
w=1200;//rpm
w=w*2*%pi/60;//rad/s, conversion
M=6;//N.m, Couple applied to shaft
Dy=-3/16*M/c-1/4*m*c*w^2;//N, y component of reaction at D
Dz=3/8*M/c-1/8*m*c*w^2;//N, z component of reaction at D
printf("Components of dynamic reaction at D is Dy= %.1f N and Dz= %.1f N\n",Dy,Dz);
//Applying similar theory we get following expressions
Cy=-9/16*M/c-1/4*m*c*w^2;//N, y component of reaction at C
Cz=3/8*M/c-3/8*m*c*w^2;//N, z component of reaction at C
printf("Components of dynamic reaction at C is Cy= %.1f N and Cz= %.1f N\n",Cy,Cz);