summaryrefslogtreecommitdiff
path: root/1997/CH6/EX6.6/example6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH6/EX6.6/example6.sce')
-rwxr-xr-x1997/CH6/EX6.6/example6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1997/CH6/EX6.6/example6.sce b/1997/CH6/EX6.6/example6.sce
new file mode 100755
index 000000000..29b2bce2c
--- /dev/null
+++ b/1997/CH6/EX6.6/example6.sce
@@ -0,0 +1,12 @@
+//Chapter-6 example 6
+//=============================================================================
+clc;
+clear;
+//input data
+Vd = 2.2*10^5;//Carrier Drift Velocity in m/s
+l = 5*10^-6;//drift region length
+//Calculations
+F = Vd/(2*l);//frequency of IMPATT Diode
+//output
+mprintf('Frequency of IMPATT Diode is %g Ghz',F/10^9);
+//=============end of the program===============================================