diff options
Diffstat (limited to '377/CH14/EX14.10/14_10.sce')
-rw-r--r-- | 377/CH14/EX14.10/14_10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/377/CH14/EX14.10/14_10.sce b/377/CH14/EX14.10/14_10.sce new file mode 100644 index 000000000..838318ef5 --- /dev/null +++ b/377/CH14/EX14.10/14_10.sce @@ -0,0 +1,13 @@ +disp("(W/L)=2*Idsat/(μ*cox*((Vg-Vt)^2))");
+Idsat=500*10^-8;
+un=500;//say un=μe
+uh=300;//say uh=μh
+b=4.3;//say b=(Vg-Vt)
+eox=3.9*8.85*10^-14; //say eox=Єox
+dox=5*10^-3;
+cox=eox/dox;
+printf('\n The value of Cox is %fnF/cm^2',cox*10^9);
+an=2*Idsat/(un*cox*(b^2));
+ap=2*Idsat/(uh*cox*(b^2));
+printf('\n The value of W/L for n-MOSFET is %f',an);
+printf('\n The value of W/L for p-MOSFET is %f',ap*0.1);
\ No newline at end of file |