diff options
Diffstat (limited to '1997/CH6/EX6.7/example7.sce')
-rwxr-xr-x | 1997/CH6/EX6.7/example7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1997/CH6/EX6.7/example7.sce b/1997/CH6/EX6.7/example7.sce new file mode 100755 index 000000000..4e468634b --- /dev/null +++ b/1997/CH6/EX6.7/example7.sce @@ -0,0 +1,12 @@ +//Chapter-6 example 7
+//=============================================================================
+clc;
+clear;
+//input data
+Vd = 3*10^5;//Carrier Drift Velocity in m/s
+l = 7*10^-6;//drift region length
+//Calculations
+F = Vd/(2*l);//frequency of IMPATT Diode
+//output
+mprintf('Frequency of IMPATT Diode is %3.2f Ghz',F/10^9);
+//=============end of the program===============================================
|