diff options
Diffstat (limited to '3665/CH14/EX14.4/Ex14_4.sce')
-rw-r--r-- | 3665/CH14/EX14.4/Ex14_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH14/EX14.4/Ex14_4.sce b/3665/CH14/EX14.4/Ex14_4.sce new file mode 100644 index 000000000..b7bfcb747 --- /dev/null +++ b/3665/CH14/EX14.4/Ex14_4.sce @@ -0,0 +1,16 @@ +clc//
+//
+//
+
+//Variable declaration
+V=9500; //volume(m^3)
+T=1.5; //time(s)
+x=100; //absorption(sabines)
+
+//Calculation
+sigma_as=0.165*V/T; //total absorption in the hall(OWU)
+T=0.165*V/(sigma_as+x); //new period of reverberation(s)
+
+//Result
+printf("\n total absorption in the hall is %0.3f OWU",sigma_as)
+printf("\n new period of reverberation is %0.3f s",T)
|