summaryrefslogtreecommitdiff
path: root/1997/CH6/EX6.9/example9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH6/EX6.9/example9.sce')
-rwxr-xr-x1997/CH6/EX6.9/example9.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1997/CH6/EX6.9/example9.sce b/1997/CH6/EX6.9/example9.sce
new file mode 100755
index 000000000..c21f8e548
--- /dev/null
+++ b/1997/CH6/EX6.9/example9.sce
@@ -0,0 +1,13 @@
+//Chapter-6 example 9
+//=============================================================================
+clc;
+clear;
+//input data
+l = 12*10^-3;//gunn diode oscillator length in m
+Vd = 2*10^8;//Drift velocity in gunn diode
+//Calculations
+F = Vd/l;//Frequency of Gunn Diode Oscillator
+//output
+mprintf('Frequency of Gunn Diode Oscillator is %3.2f Ghz',F/10^9');
+
+//=============end of the program===============================================