blob: b7bfcb74789f63bb3cded846184826bd1ac55d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc//
//
//
//Variable declaration
V=9500; //volume(m^3)
T=1.5; //time(s)
x=100; //absorption(sabines)
//Calculation
sigma_as=0.165*V/T; //total absorption in the hall(OWU)
T=0.165*V/(sigma_as+x); //new period of reverberation(s)
//Result
printf("\n total absorption in the hall is %0.3f OWU",sigma_as)
printf("\n new period of reverberation is %0.3f s",T)
|