diff options
Diffstat (limited to '3866/CH2/EX2.6')
-rw-r--r-- | 3866/CH2/EX2.6/Ex2_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3866/CH2/EX2.6/Ex2_6.sce b/3866/CH2/EX2.6/Ex2_6.sce new file mode 100644 index 000000000..5cbe032cd --- /dev/null +++ b/3866/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,11 @@ +clear; clc; close;
+
+vgs=1.8;
+vt=0.5;
+cl=200*(10^(-9));
+enln=6*(10^6)*cl;
+eplp=24*(10^6)*cl;
+vdsat1=((vgs-vt)*enln)/(vgs-vt+enln);
+vdsat2=((vgs-vt)*eplp)/(vgs-vt+eplp);
+disp(vdsat1,'Vdsat for NMOS(in volts)');
+disp(vdsat2,'Vdsat for PMOS(in volts)');
|