blob: 246b0b85434c3ec1cd92b6eb6f05fcc7cdb5decd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialisation of variables
Load= 100 //KN
Length= 10 //m
yieldstress= 300 //N/mm^2
loadfactor= 1.5
//CALCULATIONS
requiredultimateload= loadfactor*Load
Mp= requiredultimateload*Length/6
Zp= Mp/yieldstress
//RESULTS
printf ('Zp= %.1e mm^3',Zp)
disp("The appropriate beam for this is 406*140*49")
|