blob: 536feaeea1d102ac6cf50e15e02510f0e12683ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
clear
//
//
//Initilization of Variables
d=2500 //mm //Diameter of riveted boiler
P=1 //N/mm**2 //Pressure
rho1=0.7 //Percent efficiency
rho2=0.4 //Circumferential joints
sigma=150 //N/mm**2 //Permissible stress
//Calculations
//Equating Bursting force to longitudinal joint strength ,we get
//p*d*L=rho1*2*t*L*sigma
//After rearranging and further simplifying we get
t=P*d*(2*sigma*rho1)**-1 //mm
//Considering Longitudinal force
//%pi*d**2*4**-1*P=rho2*%pi*d*t*sigma
//After rearranging and further simplifying we get
t2=P*d*(4*sigma*rho2)**-1
//Result
printf("\n Thickness of plate required is %0.2f mm",t)
|