diff options
Diffstat (limited to '1271/CH8/EX8.4')
-rwxr-xr-x | 1271/CH8/EX8.4/4.txt | 2 | ||||
-rwxr-xr-x | 1271/CH8/EX8.4/example8_4.sce | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/1271/CH8/EX8.4/4.txt b/1271/CH8/EX8.4/4.txt new file mode 100755 index 000000000..f1f83a978 --- /dev/null +++ b/1271/CH8/EX8.4/4.txt @@ -0,0 +1,2 @@ +Coefficient of absorption to be provided by the walls, floor and ceiling when the hall is fully occupied is 99.632353 SI unit.
+ Reverberation time if only half upholstered seats are occupied is 2.025324 sec.
diff --git a/1271/CH8/EX8.4/example8_4.sce b/1271/CH8/EX8.4/example8_4.sce new file mode 100755 index 000000000..df64bb21f --- /dev/null +++ b/1271/CH8/EX8.4/example8_4.sce @@ -0,0 +1,17 @@ +clc +// Given that +A = 15 * 30 // area of the floor in square meter +h = 6 // height of hall in meter +N = 500 // no. of people +t = 1.36 // optimum time for orchestral music in sec +k = 0.44 // absorption coefficient per person +// Sample Problem 4 on page no. 8.19 +printf("\n # PROBLEM 4 # \n") +printf(" Standard formula used \n") +printf(" T = 0.161 V/a*S \n" ) +aS = 0.161 * ((A * h) / t) +a = N * k +a_ = aS - a +w = a_ + (N / 2) * k + (N / 2) * 0.02 +t = (0.161 * (A * h)) / w +printf("\n Coefficient of absorption to be provided by the walls, floor and ceiling when the hall is fully occupied is %f SI unit.\n Reverberation time if only half upholstered seats are occupied is %f sec.",a_,t) |