summaryrefslogtreecommitdiff
path: root/278/CH10/EX10.2
diff options
context:
space:
mode:
Diffstat (limited to '278/CH10/EX10.2')
-rwxr-xr-x278/CH10/EX10.2/ex_10_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/278/CH10/EX10.2/ex_10_2.sce b/278/CH10/EX10.2/ex_10_2.sce
new file mode 100755
index 000000000..18110e8c9
--- /dev/null
+++ b/278/CH10/EX10.2/ex_10_2.sce
@@ -0,0 +1,12 @@
+//find the max torque
+clc
+//solution
+//given
+d=50//mm
+s=10//mm
+Imax=80//N/mm^2
+pi=3.14
+//let T be max toque
+//Imax=(2.83*T)/(pi*s*d^2)
+T=Imax*pi*s*d^2/(2.83)//N-mm
+printf("the value of max torque is,%f N-mm",T) \ No newline at end of file