0% found this document useful (0 votes)
20 views4 pages

Column Final

The document describes the design of a reinforced concrete column with a lateral dimension of 450mm x 600mm, unsupported length of 3m, and axial load of 2500kN. It determines that the column is short and the code formula can be used. It calculates the required and provided area of compression steel as 5887.799 sqmm and 5890.486 sqmm respectively, with 12 compression bars of 25mm diameter. The design is acceptable with 8mm diameter lateral ties spaced at 300mm.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views4 pages

Column Final

The document describes the design of a reinforced concrete column with a lateral dimension of 450mm x 600mm, unsupported length of 3m, and axial load of 2500kN. It determines that the column is short and the code formula can be used. It calculates the required and provided area of compression steel as 5887.799 sqmm and 5890.486 sqmm respectively, with 12 compression bars of 25mm diameter. The design is acceptable with 8mm diameter lateral ties spaced at 300mm.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Program-4

10/10/2023 ASWIN KUMAR E K


232ST007

Design of RCC Column


Matlab Code
clc;
clear all;

fid=fopen('column.txt','w');
fprintf(fid,'Design of columns');
fprintf(fid,'\n----------------');

%inputs
Dx=input('\n Enter the lateral dimension 1 (mm) = ');
Dy=input('\n Enter the lateral dimension 2 (mm) = ');
l=input('\n Enter the unsupported length of column (m) = ');
w=input('\n Enter the axial load over the column (kN) = ');
fck=input('\n Enter the grade of concrete used (N/sq.mm) = ');
fy=input('\n Enter the grade of steel used (N/sq.mm) = ');
d1=input('\n Enter the diameter of compression reinforcement (mm) = ');

%slenderness ratio
sl1=l*1000/Dx;
sl2=l*1000/Dy;

if (sl1<12 && sl2<12)


fprintf(fid,'\n The given column is a short column');
ex=l/500+Dx/30;
ey=l/500+Dy/30;
m1=0.05*Dx;
m2=0.05*Dy;
if (m1>ex && m2>ey) %min eccentricity
fprintf(fid,'\n\n The code formula for axially loaded column can be
used');
else
fprintf(fid,'\n\n The code formula for axially loaded column cannot be
used');
end
Pu=1.5*w;
Asc=(Pu*1000-(.4*fck*Dx*Dy))/(0.67*fy-0.4*fck); %area of compression steel
fprintf(fid,'\n\n Area of steel required in compression= %6.3f sq.mm',Asc);
n=ceil((4*Asc)/(pi*d1^2));
fprintf(fid,'\n\n Number of compression reinforcement provided = %6.1f
nos',n);

Ascp=(n*pi*d1^2)/4; % area of compression steel provided


fprintf(fid,'\n\n Area of compression reinforcement provided = %6.3f sq.mm',
Ascp);
p=(100*Ascp)/(Dx*Dy);

if(p>0.8)
fprintf(fid,'\n\n The design is OK');
else
fprintf(fid,'\n\n Redidesign');
end

else
fprintf(fid,'\n\n The given column is long column');
end

d2=max(d1/4,6); % design for dia of lateral ties

if (d2==6)
fprintf(fid,'\n\n Diameter of laetral ties = 6 mm');
elseif (d2<=8)
fprintf(fid,'\n\n Diameter of lateral ties = 8 mm');
else
fprintf(fid,'\n\n Diameter of lateral ties = 10 mm');
end

s1=min(Dx,Dy); % design for spacing of lateral ties


s2=min(s1,16*d1);
if (s2>300)
fprintf(fid,'\n\n Spacing provided for the lateral ties = 300 mm');
else
fprintf(fid,'\n\n Spacing provided for the lateral ties = %6.3f mm',s2-
rem(s2,10));
end
INPUT

Enter the lateral dimension 1 (mm) = 450

Enter the lateral dimension 2 (mm) = 600

Enter the unsupported length of column (m) = 3

Enter the axial load over the column (kN) = 2500

Enter the grade of concrete used (N/sq.mm) = 20

Enter the grade of steel used (N/sq.mm) = 415

Enter the diameter of compression reinforcement (mm) = 25


>>
OUTPUT

Design of columns
----------------
The given column is a short column

The code formula for axially loaded column can be used

Area of steel required in compression= 5887.799 sq.mm

Number of compression reinforcement provided = 12.0 nos

Area of compression reinforcement provided = 5890.486 sq.mm

The design is OK

Diameter of lateral ties = 8 mm

Spacing provided for the lateral ties = 300 mm

You might also like