summaryrefslogtreecommitdiff
path: root/2084/CH16/EX16.3/16_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2084/CH16/EX16.3/16_3.sce')
-rwxr-xr-x2084/CH16/EX16.3/16_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2084/CH16/EX16.3/16_3.sce b/2084/CH16/EX16.3/16_3.sce
new file mode 100755
index 000000000..fb17ec093
--- /dev/null
+++ b/2084/CH16/EX16.3/16_3.sce
@@ -0,0 +1,16 @@
+//developed in windows XP operating system 32bit
+//platform Scilab 5.4.1
+clc;clear;
+//example 16.3
+//calculation of the intensity of the sound wave
+
+//given data
+p0=2*10^-2//pressure amplitue(in N/m^2)
+p0dash=2.5*10^-2//new pressure amplitue(in N/m^2)
+I=5.0*10^-7//intensity(in W/m^2) of the wave
+
+//calculation
+//intensity of the wave is proportional to square of the pressure amplituide
+Idash=I*((p0dash/p0)^2)
+
+printf('the intensity of the sound wave is %3.1e W/m^2',Idash)