summaryrefslogtreecommitdiff
path: root/213/CH11/EX11.12/11_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '213/CH11/EX11.12/11_12.sce')
-rwxr-xr-x213/CH11/EX11.12/11_12.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/213/CH11/EX11.12/11_12.sce b/213/CH11/EX11.12/11_12.sce
new file mode 100755
index 000000000..a65ac94fb
--- /dev/null
+++ b/213/CH11/EX11.12/11_12.sce
@@ -0,0 +1,23 @@
+//To find power transmitted
+clc
+//Given:
+T0=2000 //N
+mu0=0.3
+theta=150*%pi/180 //radians
+r2=200/1000, d2=2*r2 //m
+N2=500//rpm
+//Solution:
+//Calculating the velocity of the belt
+v=%pi*d2*N2/60 //m/s
+//Calculating the tensions in the belt
+//Initial tension, T0 = (T1+T2)/2, or T1+T2 = 2*T0
+//Ratio of the tensions in the belt, log(T1/T2) = mu*theta, or T1-T2*exp(mu*theta) = 0
+A=[1 1; 1 -exp(mu*theta)]
+B=[2*T0; 0]
+V=A \ B
+T1=V(1) //N
+T2=V(2) //N
+//Calculating the power transmitted
+P=(T1-T2)*v/1000 //kW
+//Results:
+printf("\n\n Power transmitted, P = %.1f kW.\n\n",P) \ No newline at end of file