diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3281/CH8/EX8.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3281/CH8/EX8.11')
-rwxr-xr-x | 3281/CH8/EX8.11/ex8_11.jpg | bin | 0 -> 8480 bytes | |||
-rwxr-xr-x | 3281/CH8/EX8.11/ex8_11.sce | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3281/CH8/EX8.11/ex8_11.jpg b/3281/CH8/EX8.11/ex8_11.jpg Binary files differnew file mode 100755 index 000000000..3fbe85b36 --- /dev/null +++ b/3281/CH8/EX8.11/ex8_11.jpg diff --git a/3281/CH8/EX8.11/ex8_11.sce b/3281/CH8/EX8.11/ex8_11.sce new file mode 100755 index 000000000..5d441b602 --- /dev/null +++ b/3281/CH8/EX8.11/ex8_11.sce @@ -0,0 +1,26 @@ +//Page Number: 434
+//Example 8.11
+clc;
+//Given
+e0=8.854D-12;
+er=3.9;
+d=0.15D-6; //m
+e=1.6D-19; //J
+Nmax=2.2D+16; //m-2
+A=0.6D-8; //m
+P=0.67D-3; //W
+n=3;
+
+//(i) Junction capacitance
+Ci=(e0*er)/d;
+
+//Gate voltage
+V=(Nmax*e)/Ci;
+disp('V',V,'Gate voltage:');
+
+//(ii) Charge stored
+Qmax=Nmax*e*A;
+
+//Clock frequency
+f=P/(n*V*Qmax);
+disp('MHz',f/10^6,'Clock frequency:');
|