summaryrefslogtreecommitdiff
path: root/3705/CH11/EX11.2/Ex11_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3705/CH11/EX11.2/Ex11_2.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 '3705/CH11/EX11.2/Ex11_2.sce')
-rw-r--r--3705/CH11/EX11.2/Ex11_2.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3705/CH11/EX11.2/Ex11_2.sce b/3705/CH11/EX11.2/Ex11_2.sce
new file mode 100644
index 000000000..dccd269c2
--- /dev/null
+++ b/3705/CH11/EX11.2/Ex11_2.sce
@@ -0,0 +1,26 @@
+
+clear//
+
+//Variable Declaration
+V=1000 //Shear Force in lb
+t=0.5 //Thickness in inches
+wf=12 //Width of the flange in inches
+d=8 //Depth of the section in inches
+//Rest ALL DATA is similar to previous problem
+
+//Calcualtions
+I=t*wf**3*12**-1+t*d**3*12**-1 //Moment of Inertia
+
+//Part 1
+q1=V*t*t*wf*3*I**-1 //Shear Flow in lb/in
+q2=V*t*t*d*2*I**-1 //Shear FLow in lb/in
+V1=2*3**-1*q1*wf //Shear force carried in lb
+V2=2*3**-1*q2*d //Shear force carried in lb
+
+//Part 2
+e=8*V2*V**-1 //Eccentricity in inches
+
+//Result
+printf("\n The Shear Force carried by Flanges is")
+printf("\n Top Flange= %0.1f lb Bottom Flange= %0.1f lb",V1,V2)
+printf("\n The eccentricity is %0.3f in",e)