summaryrefslogtreecommitdiff
path: root/1271/CH8/EX8.5/example8_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1271/CH8/EX8.5/example8_5.sce')
-rwxr-xr-x1271/CH8/EX8.5/example8_5.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1271/CH8/EX8.5/example8_5.sce b/1271/CH8/EX8.5/example8_5.sce
new file mode 100755
index 000000000..b25687d59
--- /dev/null
+++ b/1271/CH8/EX8.5/example8_5.sce
@@ -0,0 +1,10 @@
+clc
+// Given that
+V = 8000 // volume of hall in meter^3
+t = 1.8 // reverberation time in sec
+// Sample Problem 5 on page no. 8.19
+printf("\n # PROBLEM 5 # \n")
+printf(" Standard formula used \n")
+printf(" T = 0.161 V/a*S \n" )
+aS = (0.161 * V) / t// calculation for the total absorption constant
+printf("\n The total absorption constant = %f O.W.U.",aS)