diff options
Diffstat (limited to '3866/CH5/EX5.4/Ex5_4.sce')
-rw-r--r-- | 3866/CH5/EX5.4/Ex5_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3866/CH5/EX5.4/Ex5_4.sce b/3866/CH5/EX5.4/Ex5_4.sce new file mode 100644 index 000000000..a50162a1b --- /dev/null +++ b/3866/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,12 @@ +clc; clear; close;
+
+Cl=100*(10^(-15));//in farad
+T=200*(10^(-12));//in seconds
+Reqn=12500;//in_ohms for_nmos_devices
+r=(0.7*Reqn*Cl)/T;
+disp(r,'W/L=');
+Wn=r*100;
+disp(Wn,'Wn for both nmos devices(in nanometer)=');
+Wp=4*Wn;
+disp(Wp,'Wp for both pmos devices(in nanometers)=' );
+//answers vary due to round off error
|