blob: 43b08bce5d41de8f012296427406f888db5dbd07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter-6 example 8
//=============================================================================
clc;
clear;
//input data
Na = 1.8*10^15;//Doping Concentration
J = 25*10^3;//current density in A/cm^2
q = 1.6*10^-19;//charge of electron
//Calculations
Vaz = J/(q*Na);//Avalanche Zone Velocity
//output
mprintf('Avalanche Zone Velocity of TRAPATT is %g\n',Vaz);
mprintf(' Note: wrong calculation done in Textbook');
//=============end of the program===============================================
|