blob: fd7d34a4755164ffe51a4398c2f055e8557c737f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//chapter-9 page 412 example 9.7
//==============================================================================
clc;
clear;
//For a Gunn Diode
L=5*10^(-4);//Drift Length in cm
Vg=3300;//Voltage gradient in V/cm [Vg>3.3 kV/cm]
//CALCULATION
Vmin=Vg*L;//Minimum Voltage needed to initiate Gunn effect in volts
//OUTPUT
mprintf('\nMinimum Voltage needed to initiate Gunn effect is Vmin=%1.2f volts',Vmin);
//=========================END OF PROGRAM===============================
|