diff options
Diffstat (limited to '2084/CH16/EX16.10w/16_10w.sce')
-rwxr-xr-x | 2084/CH16/EX16.10w/16_10w.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2084/CH16/EX16.10w/16_10w.sce b/2084/CH16/EX16.10w/16_10w.sce new file mode 100755 index 000000000..d3852d9d6 --- /dev/null +++ b/2084/CH16/EX16.10w/16_10w.sce @@ -0,0 +1,17 @@ +//developed in windows XP operating system 32bit
+//platform Scilab 5.4.1
+clc;clear;
+//example 16.10w
+//calculation of the frequency at which the maxima of intensity are detected
+
+//given data
+r=20*10^-2//radius(in m) of the semicircular part
+v=340//speed(in m/s) of the sound in air
+
+//calculation
+l1=2*r//straight distance
+l2=%pi*r//curve distance
+deltal=l2-l1
+nu=v/deltal
+
+printf('the frequency at which the maxima of intensity are detected are %d Hz and %d Hz',nu,2*nu)
|