diff options
Diffstat (limited to '3665/CH14/EX14.2/Ex14_2.sce')
-rw-r--r-- | 3665/CH14/EX14.2/Ex14_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3665/CH14/EX14.2/Ex14_2.sce b/3665/CH14/EX14.2/Ex14_2.sce new file mode 100644 index 000000000..15b5c44c1 --- /dev/null +++ b/3665/CH14/EX14.2/Ex14_2.sce @@ -0,0 +1,15 @@ +clc//
+//
+//
+
+//Variable declaration
+V=12500; //volume(m^3)
+T1=1.5; //reverberation time(sec)
+n=200; //number of cushioned chairs
+
+//Calculation
+sigma_as=0.165*V/T1;
+T2=0.165*V/(sigma_as+n); //new reverberation time(s)
+
+//Result
+printf("\n new reverberation time is %0.2f s",T2)
|