summaryrefslogtreecommitdiff
path: root/3772/CH3/EX3.3/Ex3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3772/CH3/EX3.3/Ex3_3.sce')
-rw-r--r--3772/CH3/EX3.3/Ex3_3.sce35
1 files changed, 35 insertions, 0 deletions
diff --git a/3772/CH3/EX3.3/Ex3_3.sce b/3772/CH3/EX3.3/Ex3_3.sce
new file mode 100644
index 000000000..99d79a09c
--- /dev/null
+++ b/3772/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,35 @@
+// Problem 3.3,Page no.56
+
+clc;clear;
+close;
+
+P=800 //N //force applied to steel wire
+L=150 //m //Length of steel wire
+E=200 //GN/m**2 //Modulus of Elasticity
+d=10 //mm //Diameter of steel wire
+W=7.8*10**4 //N/m**3 //Weight Density of steel
+//A=(%pi*4**-1)*(d)**2 //m**2
+
+//After simplifying Area,we get
+A=7.85*10**-5 //m**2
+
+//calculation (Part-1)
+
+//Elongation Due to 800N Load
+dell_L_1=(P*L*10**-3)*(A*E*10**9*10**-6)**-1 //mm
+
+//calculation (Part-2)
+
+//Elongation due to Weight of wire
+dell_L_2=((%pi*4**-1)*150*W*L*10**-3)*(2*A*E*10**7)**-1 //mm
+
+//calculation (Part-3)
+
+//Total Elongation of wire
+dell_L_3=dell_L_1+dell_L_2
+
+
+//Result
+printf("The Elongation due to 800N Load = %.2f mm",dell_L_1)
+printf("\n The Elongation due to Weight of wire = %.2f mm",dell_L_2)
+printf("\n Total Elongation of wire = %.2f mm",dell_L_3)