blob: 4f2f9ab4eb2bbe2377969a27e820f02bf6b98832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clc//
//
//
//Variable declaration
V=2265; //volume(m^3)
sigma_as=92.9; //absorption(m^2)
a=18.6; //area(m^2)
//Calculation
T=0.165*V/sigma_as; //reverberation time of hall(s)
T1=0.165*V/2;
inc=T1-sigma_as; //increase in absorption(OWU)
n=inc/a; //number of persons to be seated
//Result
printf("\n reverberation time of hall is %0.3f s",T)
printf("\n number of persons to be seated is %0.3f ",n)
|