diff options
Diffstat (limited to '273/CH11/EX11.2')
-rwxr-xr-x | 273/CH11/EX11.2/ex11_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/273/CH11/EX11.2/ex11_2.sce b/273/CH11/EX11.2/ex11_2.sce new file mode 100755 index 000000000..8c8c4d11e --- /dev/null +++ b/273/CH11/EX11.2/ex11_2.sce @@ -0,0 +1,17 @@ +clc;clear;
+//Example 11.2
+//calculation of average absorption coefficient
+
+//given values
+
+V=10*8*6;//volume of hall in m^3
+t=1.5;//reverberation time of empty hall in sec
+A=20;//area of curtain cloth in m^2
+t1=1;//new reverberation time in sec
+
+//calculation
+a1=.161*V/t;//total absorption of empty hall
+a2=.161*V/t1;//total absorption after a curtain cloth is suspended
+
+k=(a2-a1)/(2*20);
+disp(k,'the average absorption coefficient is');
|