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 /3772/CH3/EX3.12 | |
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 '3772/CH3/EX3.12')
-rw-r--r-- | 3772/CH3/EX3.12/Ex3_12.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/3772/CH3/EX3.12/Ex3_12.sce b/3772/CH3/EX3.12/Ex3_12.sce new file mode 100644 index 000000000..5c8e30309 --- /dev/null +++ b/3772/CH3/EX3.12/Ex3_12.sce @@ -0,0 +1,29 @@ +// Problem 3.12,Page no.61 + +clc;clear; +close; + +P=500 //KN //Safe Load +d=20 //mm //steel rod diameter +n=4 //number of steel rod +sigma_c=4 //N/mm**2 //stress in concrete +//E_S*E_c**-1=15 + + +//Calculations + +A_s=4*%pi*4**-1*d**2 //mm**2 //Area os steel rod +sigma_s=15*sigma_c //N/mm**2 //stress in steel + +//P=sigma_s*A_s+sigma_c*A_c + +//After substituting and simplifying above equation we get, + +A_c=(P*10**3-sigma_s*1256)*(sigma_c)**-1 //mm**2 //Area of the concrete +X=(A_s+A_c)**0.5 //mm //Total cross sectional area +P_s=A_s*sigma_s*10**-3 //KN //Load carried by steel + +//Result +printf("Load carried by steel is %.2f kN",P_s) +printf("\n stress induced in steel is %.2f kN",sigma_s) +printf("\n cross sectional area of column is %.2f mm",X) |