summaryrefslogtreecommitdiff
path: root/3863/CH1/EX1.6/Ex1_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3863/CH1/EX1.6/Ex1_6.sce')
-rw-r--r--3863/CH1/EX1.6/Ex1_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3863/CH1/EX1.6/Ex1_6.sce b/3863/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..b76750860
--- /dev/null
+++ b/3863/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,16 @@
+clear
+//
+
+//Given
+//Variable declaration
+stress=480 //ultimate stress in N/sq.mm
+P=1.9*10**6 //Axial load in N
+D=200 //External diameter in mm
+f=4 //Factor of safety
+
+//Calculation
+sigma=stress/f //Working stress or Permissable stress in N/sq.mm
+d=sqrt((D**2)-((P*4)/(%pi*sigma))) //internal diameter in mm
+
+//Result
+printf("\n internal diameter = %0.3f mm",d)