summaryrefslogtreecommitdiff
path: root/3665/CH14/EX14.5
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH14/EX14.5')
-rw-r--r--3665/CH14/EX14.5/Ex14_5.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH14/EX14.5/Ex14_5.sce b/3665/CH14/EX14.5/Ex14_5.sce
new file mode 100644
index 000000000..52fb55ba8
--- /dev/null
+++ b/3665/CH14/EX14.5/Ex14_5.sce
@@ -0,0 +1,16 @@
+clc//
+//
+//
+
+//Variable declaration
+V=20*15*5; //volume(m^3)
+T=3.5; //time(s)
+A=950; //surface area(m^2)
+
+//Calculation
+sigma_as=0.165*V/T; //total absorption in the hall(OWU)
+ac=sigma_as/A; //average absorption coefficient
+
+//Result
+printf("\n total absorption in the hall is %0.3f OWU",sigma_as)
+printf("\n average absorption coefficient is %0.3f sabine/m^2",ac)