summaryrefslogtreecommitdiff
path: root/1997/CH6/EX6.6/example6.sce
blob: 29b2bce2cb497829f4983c974a8d2d7484bce425 (plain)
1
2
3
4
5
6
7
8
9
10
11
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===============================================