diff options
Diffstat (limited to '3636/CH9/EX9.5')
-rw-r--r-- | 3636/CH9/EX9.5/Ex9_5.sce | 13 | ||||
-rw-r--r-- | 3636/CH9/EX9.5/Ex9_5.txt | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3636/CH9/EX9.5/Ex9_5.sce b/3636/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..479d623f3 --- /dev/null +++ b/3636/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,13 @@ +clc;
+clear;
+ID_sat=5*10^-3 //in mA
+L=1.3*10^-4 //in micro-m
+myu_n=660 //in cm^2/V*s
+Cox=7*10^-8 //in F/cm^2
+VGS=5 //in V
+VT=0.66 //in V
+
+//Calculaation
+Z=(ID_sat*2*L)/(myu_n*Cox*(VGS-VT)^2)
+
+mprintf("Channel width= %.2e cm",Z)
diff --git a/3636/CH9/EX9.5/Ex9_5.txt b/3636/CH9/EX9.5/Ex9_5.txt new file mode 100644 index 000000000..5fceca028 --- /dev/null +++ b/3636/CH9/EX9.5/Ex9_5.txt @@ -0,0 +1 @@ + Channel width= 1.49e-03 cm
\ No newline at end of file |