blob: 0993d17c833a36915ca0d2e955f0dcd2574edd88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Example 7.8.1 page 7.39
clc;
clear;
w=25d-6; //width
v=1d5; //velocity
r=40d-6; //radius
eps=12.5d-13;
t=w/v; //computing drift time
c=eps*3.14*(r)^2/w; //computing junction capacitance
c=c*10^16;
printf("\nDrift time %.1e sec.\nJunction capacitance %.1f pf.",t,c);
printf("\nCalculation error in the book at the answer of drift time.");
//calculation error in drift time answer in the book is 25*10^-10. it should be 2.5*10^-10.
|