diff options
Diffstat (limited to '3705/CH6/EX6.6/Ex6_6.sce')
-rw-r--r-- | 3705/CH6/EX6.6/Ex6_6.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3705/CH6/EX6.6/Ex6_6.sce b/3705/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..c10a9808b --- /dev/null +++ b/3705/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,20 @@ + +clear//
+
+//Variable Declaration
+L1=3 //Length in m
+L2=1 //Length in m
+L3=8 //Length in m
+L4=4 //Length in m
+L5=6 //Length in m
+
+//Calculations
+//Deflection midway
+EIv=250*3**-1*L1**3-(50*3**-1*(L1-L2)**4)-(3925*3**-1*L1) //Deflection in N.m^3
+
+//Deflection at E
+EIv_E=250*3**-1*L3**3-(50*3**-1*(L3-L2)**4)+(50*3**-1*(L3-L4)**4)+(650*3**-1*(L3-L5)**3)-(3925*3**-1*L3) //Deflection in N.m^3
+
+//Result
+printf("\n The deflection at midspan is %0.0f N.m^3 downwards",-EIv)
+printf("\n The deflection at point E is %0.0f N.m^3 downwards",-EIv_E)
|