summaryrefslogtreecommitdiff
path: root/3764/CH4/EX4.10/Ex4_10.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3764/CH4/EX4.10/Ex4_10.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3764/CH4/EX4.10/Ex4_10.sce')
-rw-r--r--3764/CH4/EX4.10/Ex4_10.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3764/CH4/EX4.10/Ex4_10.sce b/3764/CH4/EX4.10/Ex4_10.sce
new file mode 100644
index 000000000..67f76db10
--- /dev/null
+++ b/3764/CH4/EX4.10/Ex4_10.sce
@@ -0,0 +1,33 @@
+clc
+//
+//
+
+// Variable declaration
+M0=1500 // Couple of magnitude(kN)
+yA=50 // Distance()
+zA=74
+Iy=(3.25*((10**-6))) // Moment of inertia(m**4)
+Iz=(4.18*((10**-6))) // Moment of inertia(m**4)
+Iyz=(2.87*((10**-6))) // Moment of inertia(m**4)
+
+// Calculation
+// Principal axes
+Theta=(80.8)/2.0 // Angle
+R=sqrt((0.465**2)+(2.87**2)) // Radius
+R=2.91*((10**-6)) // Converting to meter
+Iu=3.72-2.91 // Moment of inertia(m**4)
+Iv=3.72+2.91 // Moment of inertia(m**4)
+//Loading
+Mu=(M0*sin(40.4)) // Applied couple(N.m)
+Mv=(M0*cos(40.4)) // Applied couple(N.m)
+//Case(a) Stress at A
+uA=50*cos(40.4*((2*%pi)/360.0))+74*sin(40.4*((2*%pi)/360.0)) // Perpendicular distances(mm)
+vA=-50*sin(40.4*((2*%pi)/360.0))+74*cos(40.4*((2*%pi)/360.0)) // Perpendicular distances(mm)
+sA=((972*0.0239)/(0.810*((10**-6))) - ((1142)*(0.0860))/(6.63*(10**-6)))/((10**6)) // Stress at A(MPa)
+//Case(b) Neutral Axis
+phy=81.8 // Angle neutral axis with the v axis(degree)
+B=81.8-40.4 // Angle neutral axis with the horizontal axis(degree)
+
+// Result
+printf("\n Stress at point A = %0.3f MPa' ,sA)
+printf("\n The angle formed by the neutral axis and the horizontal is = %0.3f degree' ,B)