summaryrefslogtreecommitdiff
path: root/3705/CH12/EX12.4/Ex12_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3705/CH12/EX12.4/Ex12_4.sce')
-rw-r--r--3705/CH12/EX12.4/Ex12_4.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3705/CH12/EX12.4/Ex12_4.sce b/3705/CH12/EX12.4/Ex12_4.sce
new file mode 100644
index 000000000..b47cf530a
--- /dev/null
+++ b/3705/CH12/EX12.4/Ex12_4.sce
@@ -0,0 +1,23 @@
+
+clear//
+//
+
+//NOTE:The figure mentions the unit of length as ft which is incorrect
+//Variable Declaration
+L=30 //Length in m
+m=2000 //Mass in kg
+v=2 //Velocity in m/s
+E=10**5 //Youngs Modulus in MPa
+A=600 //Area in mm^2
+g=9.81 //Acceleration due to gravity in m/s^2
+
+//Calculations
+k=E*A*L**-1 //Stifness of the cable in N/m
+
+//Applying the Work-Energy principle
+delta_max=sqrt((0.5*m*v**2)*(0.5*k)**-1) //Maximum Displacement in m
+
+P_max=k*delta_max+m*g //Maximum force in N
+
+//Result
+printf("\n The maximum force is %0.1f kN",P_max*10**-3)