blob: 15b5c44c1fa7a55e2e51aa954a6425e481cd75ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc//
//
//
//Variable declaration
V=12500; //volume(m^3)
T1=1.5; //reverberation time(sec)
n=200; //number of cushioned chairs
//Calculation
sigma_as=0.165*V/T1;
T2=0.165*V/(sigma_as+n); //new reverberation time(s)
//Result
printf("\n new reverberation time is %0.2f s",T2)
|