summaryrefslogtreecommitdiff
path: root/1979/CH9/EX9.1/Ex9_1.sce
blob: bc548009f690d95363c817507953b538cc93d4af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//chapter-9 page 411 example 9.1
//==============================================================================
clc;
clear;

L=2*10^(-6);//Drift Length of a IMPATT diode in m
Vd=(10^7)*(10^(-2));//Drift Velocity for Siin m/sec

//CALCULATION
f=(Vd/(2*L))/10^9;//Operating Frequency in GHz

//OUTPUT
mprintf('\nOperating Frequency of the IMPATT diode is f=%2.0f GHz',f);

//=========================END OF PROGRAM===============================