summaryrefslogtreecommitdiff
path: root/3864/CH4/EX4.17
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH4/EX4.17
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/CH4/EX4.17')
-rw-r--r--3864/CH4/EX4.17/Ex4_17.sce54
1 files changed, 54 insertions, 0 deletions
diff --git a/3864/CH4/EX4.17/Ex4_17.sce b/3864/CH4/EX4.17/Ex4_17.sce
new file mode 100644
index 000000000..0477cf682
--- /dev/null
+++ b/3864/CH4/EX4.17/Ex4_17.sce
@@ -0,0 +1,54 @@
+clear
+//
+//
+
+//Initilization of Variables
+
+F=40*10**3 //N //shear Force
+
+//I-section
+
+//Flanges
+b=80 //mm //Width of flange
+t=20 //mm //Thickness
+
+//Web
+d=200 //mm //Depth
+t2=20 //mm //Thickness
+
+//Flange-2
+b2=160 //mm //Width
+t3=20 //mm //Thickness
+
+D=240 //mm //Overall Depth
+
+//Calculations
+
+//Distance of N-A from Top Fibre
+y=(b*t*t*2**-1+d*t2*(t+d*2**-1)+b2*t3*(t+d+t3*2**-1))*(b*t+d*t2+b2*t3)**-1 //mm
+
+//Moment of Inertia
+I=1*12**-1*b*t**3+b*t*(y-(t*2**-1))**2+1*12**-1*t2*d**3+t2*d*(y-(t+d*2**-1))**2+1*12**-1*b2*t3**3+t3*b2*((d+t+t3*2**-1)-y)**2 //mm**4
+
+//Shear stress bottom of flange
+sigma=F*b*t*(y-t*2**-1)*(b*I)**-1 //N/mm**2
+
+//At same Level but in web
+sigma2=F*b*t*(y-t*2**-1)*(t2*I)**-1 //N/mm**2
+
+//for shear stress at N.A
+X=b*t*(y-t*2**-1)+t2*(y-t)*(y-t)*2**-1 //mm**3
+sigma3=F*X*(t2*I)**-1 //N/mm**2
+
+//Shear stress at bottom of web
+
+X=b2*t3*((D-y)-t3*2**-1) //mm**3
+
+//Stress at bottom of web
+sigma4=F*X*(t2*I)**-1 //N/mm**2
+
+//Stress at Lower flange
+sigma5=F*X*(b2*I)**-1 //N/mm**2
+
+//Result
+printf("\n The Shear Force Diagram is the result")