summaryrefslogtreecommitdiff
path: root/3705/CH6/EX6.11/Ex6_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3705/CH6/EX6.11/Ex6_11.sce')
-rw-r--r--3705/CH6/EX6.11/Ex6_11.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3705/CH6/EX6.11/Ex6_11.sce b/3705/CH6/EX6.11/Ex6_11.sce
new file mode 100644
index 000000000..16aa50af8
--- /dev/null
+++ b/3705/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,17 @@
+
+clear//
+
+//Variable Declaration
+P1=80 //Load in lb
+P2=100 //Load in lb
+b1=3 //Distance of load from end in ft
+b2=2 //Distance of load from end in ft
+L=9 //Span of the beam in ft
+
+//Calcualtions
+EI_delta1=(P1*b1*48**-1)*(3*L**2-4*b1**2) //Deflection in lb.ft^3
+EI_delta2=(P2*b2*48**-1)*(3*L**2-4*b2**2) //Deflection in lb.ft^3
+EI_delta=EI_delta1+EI_delta2 //Deflection at modspan in lb.ft^3
+
+//Result
+printf("\n The deflection at midspan is %0.0f lb.ft^3 downward",EI_delta)