blob: fed6af75114f76ebf64c6f8ba254b487bce541f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Exa 2.12
format('v',7);
clc;
clear;
close;
// Given data
I_D= 0.5;// in mA
I_D= I_D*10^-3;// in mA
V_D= 3;// in V
Vt= -1;// in V
KpWbyL= 1;// in mA/V^2
KpWbyL=KpWbyL*10^-3;// in A/V^2
// Formul I_D= 1/2*KpWbyL*(V_OV)^2
V_OV= sqrt(2*I_D/KpWbyL);// in V
// For PMOS
V_OV= -V_OV;// in V
V_GS= V_OV+Vt;// in V
R_D= V_D/I_D;// in Ω
V_Dmax= V_D+abs(Vt);// in V
R_D= V_Dmax/I_D;// in Ω
R_D= R_D*10^-3;// in kΩ
disp(R_D,"The largest value that R_D can have while maintaining saturation-region operation in kΩ is : ")
|