diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3683/CH18/EX18.2/Ex18_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3683/CH18/EX18.2/Ex18_2.sce')
-rw-r--r-- | 3683/CH18/EX18.2/Ex18_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3683/CH18/EX18.2/Ex18_2.sce b/3683/CH18/EX18.2/Ex18_2.sce new file mode 100644 index 000000000..3e3856ed2 --- /dev/null +++ b/3683/CH18/EX18.2/Ex18_2.sce @@ -0,0 +1,15 @@ +Pu=1500//in kN
+fck=15//in MPa
+fy=250//in MPa
+l=2.75//unsupported length, in m
+//assume 1% steel
+Ag=Pu*10^3/(0.4*fck*0.99+0.67*fy*0.01)//in sq mm
+L1=225//assuming a square column
+L2=Ag/L1//in mm
+L2=880//in mm
+Asc=0.01*L1*L2//in sq mm
+e1=l*10^3/500+L1/30//in mm
+e2=l*10^3/500+L2/30//in mm
+ep1=0.05*L1//<e1
+ep2=0.05*L2//>e2, hence Ok
+mprintf("The column is safe on long dimension side but not on short dimension side. As such, the column be checked for eccentricity in short direction.")
|