summaryrefslogtreecommitdiff
path: root/3864/CH9/EX9.4
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH9/EX9.4
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3864/CH9/EX9.4')
-rw-r--r--3864/CH9/EX9.4/Ex9_4.sce43
1 files changed, 43 insertions, 0 deletions
diff --git a/3864/CH9/EX9.4/Ex9_4.sce b/3864/CH9/EX9.4/Ex9_4.sce
new file mode 100644
index 000000000..ea72d26dd
--- /dev/null
+++ b/3864/CH9/EX9.4/Ex9_4.sce
@@ -0,0 +1,43 @@
+clear
+//
+//
+
+//Initilization of Variables
+
+D=400 //mm //Overall Depth
+
+//Flanges
+b=300 //mm //Width
+t=50 //mm //Thickness
+
+t2=30 //mm //Web Thickness
+
+dell=10 //mm //Deflection
+w=40 //N/mm //Load
+FOS=1.75 //Factor of safety
+E=2*10**5 //N/mm**2
+
+//Calculations
+
+//M.I at x-x axis
+I_x=1*12**-1*(b*D**3-(b-t2)*b**3) //mm**4
+
+//Central Deflection
+//dell=5*w*L**4*(384*E*I)**-1
+//After sub values in above equation and further simplifying we get
+L=(dell*384*E*I_x*(5*w)**-1)**0.25
+
+//M.I aty-y axis
+I=1*12**-1*t*b**3+1*12**-1*b*t2**3+1*12**-1*t*b**3 //mm**4
+I_y=1*12**-1*t*b**3+1*12**-1*b*t2**3+1*12**-1*t*b**3 //mm**4
+
+//Both the Ends of column are hinged
+
+//Crippling Load
+P=%pi**2*E*I*(L**2)**-1 //N
+
+//Safe Load
+S=P*(FOS)**-1*10**-3 //N
+
+//Result
+printf("\n Safe Load if I-section is used as column with both Ends hhinged %0.2f KN",S)