diff options
Diffstat (limited to '3392/CH7/EX7.8/Ex7_8.sce')
-rwxr-xr-x | 3392/CH7/EX7.8/Ex7_8.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3392/CH7/EX7.8/Ex7_8.sce b/3392/CH7/EX7.8/Ex7_8.sce new file mode 100755 index 000000000..3edb5283b --- /dev/null +++ b/3392/CH7/EX7.8/Ex7_8.sce @@ -0,0 +1,26 @@ +clc
+// initialization of variables
+clear
+Ix=937e+06 //mm^4
+Iy=18.7e+6 //mm^4
+Ixy=0
+yA=305 //mm
+xA=90.5 //mm
+Phi=1.5533 //rad
+//calculations
+Ix=Ix*10^-12
+Iy=Iy*10^-12
+Ixy=Ixy*10^-12
+yA=yA*10^-3 //m
+xA=xA*10^-3 //m
+alpha=atan(-Ix/(Iy*tan(Phi)))
+Mxk=sin(Phi) // Mx=Mxk*M
+Sigma_Ak1=Mxk*(yA-xA*tan(alpha))/(Ix-Ixy*tan(alpha))
+//Sigma_A=Aigma_Ak*M
+// When the plane of the loads coincide with the y axes
+Sigma_Ak2=yA/Ix
+ratio=Sigma_Ak1/Sigma_Ak2
+percent=(ratio-1)*100
+printf('alpha = %.3f rad',alpha)
+printf('\n The maximum stress in the beam is increased %.1f percent when the plane of the loads is merely 1 degre from the symmetrical vertical plane',percent)
+// Wrong alpha given in the textbook
|