summaryrefslogtreecommitdiff
path: root/3863/CH16/EX16.10/Ex16_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3863/CH16/EX16.10/Ex16_10.sce')
-rw-r--r--3863/CH16/EX16.10/Ex16_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3863/CH16/EX16.10/Ex16_10.sce b/3863/CH16/EX16.10/Ex16_10.sce
new file mode 100644
index 000000000..01881dc79
--- /dev/null
+++ b/3863/CH16/EX16.10/Ex16_10.sce
@@ -0,0 +1,17 @@
+clear
+//
+//Given
+//Variable declaration
+P=75e3 //Power transmitted in W
+N=200 //R.P.M of the shaft
+tau=70 //Shear stress in N/sq.mm
+
+//Calculation
+T=P*60/(%pi*2*N)*1e3 //Mean Torque transmitted in Nmm
+Tmax=1.3*T //Maximum Torque transmitted in Nmm
+D=((16*Tmax/(%pi*tau))**(1/3)) //Suitable diameter of the shaft in mm
+
+
+//Result
+printf("\n Diameter of the shaft = %d mm",D)
+