diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1952/CH1/EX1.13/Ex1_13.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1952/CH1/EX1.13/Ex1_13.sce')
-rwxr-xr-x | 1952/CH1/EX1.13/Ex1_13.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1952/CH1/EX1.13/Ex1_13.sce b/1952/CH1/EX1.13/Ex1_13.sce new file mode 100755 index 000000000..6e4d77058 --- /dev/null +++ b/1952/CH1/EX1.13/Ex1_13.sce @@ -0,0 +1,7 @@ +// chapter 1 , Example1 13 , pg 25
+V=15000//volume(in m^3)
+T1=1.3//initial reverberation time(in sec)
+aS=(0.165*V)/T1 //total absorption of hall (in Sabine)
+T2=(0.165*V)/(aS+300)//revrberation time of hall after adding 300 chairs each having absorption of 1 Sabine
+printf("Reverberation time of hall after adding 300 chairs\n")
+printf("T2=%.3f sec",T2)
|