summaryrefslogtreecommitdiff
path: root/1928/CH4/EX4.15.3/ex_4_15_3.sce
blob: 3e23962133ac93f369deb4bdc64304b28316266a (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
27
28
29
30
31
//Chapter-4,Example4_15_3,pg 4-26

S1=220                                  //wall area

a1=0.03                                 //absorption coefficient for the wall

S2=120                                  //floor area

a2=0.8                                  //absorption coefficient for the floor

S3=120                                  //ceiling area

a3=0.06                                 //absorption coefficient for the ceiling

V=600                                   //volume of room

S=S1+S2+S3                              //total surface area

a=(a1*S1+a2*S2+a3*S3)/S                 //average sound absorption coefficient

printf("1) average sound absorption coefficient =")

disp(a)

T=(0.161*V)/(a*S)                       //Reverberation time,using Sabine's formula

printf("2) Reverberation time =")

disp(T)

printf("sec")