summaryrefslogtreecommitdiff
path: root/1664/CH1/EX1.4
diff options
context:
space:
mode:
Diffstat (limited to '1664/CH1/EX1.4')
-rwxr-xr-x1664/CH1/EX1.4/Ex1_4.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1664/CH1/EX1.4/Ex1_4.sce b/1664/CH1/EX1.4/Ex1_4.sce
new file mode 100755
index 000000000..d7571b4bb
--- /dev/null
+++ b/1664/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,10 @@
+
+// Example No.1.4.
+// Page No.29.
+clc;clear;
+f = 2*10^(6);//frequency of transducer -[Hz].
+cosq = cosd(30);//Angle of inclination of the probe -[degree].
+c = 800;//Velocity of ultrasonic wave -[m/s].
+v = 3;//Speed of blood -[m/s].
+delf = ((2*f*v*cosq)/c);//Doppler shifted frequency.
+printf("\nThe Doppler shifted frequency is %3.3e Hz",delf);