summaryrefslogtreecommitdiff
path: root/3281/CH8/EX8.3/ex8_3.sce
blob: 0508b81e473645822cb789b61bd165a777c076ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Page Number: 392
//Example 8.3
clc;
//Given
Vbd=1000; //V
f=30D+9; //Hz
E=3D+5; //V/cm
Cj=0.3D-12; //F
er=11.8;
e0=8.854D-12;

W=Vbd/E;
Wpi=W/100; //mu

//Total series resistance
R=1/(2*%pi*f*Cj);
disp('ohms',R,'Total series resistance:');

//Junction Area
A=(Cj*Wpi)/(e0*er);
disp('cm2',A*10000,'Junction Area:');