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 /339/CH7/EX7.5 | |
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 '339/CH7/EX7.5')
-rwxr-xr-x | 339/CH7/EX7.5/ex7_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/339/CH7/EX7.5/ex7_5.sce b/339/CH7/EX7.5/ex7_5.sce new file mode 100755 index 000000000..eb2a3ba25 --- /dev/null +++ b/339/CH7/EX7.5/ex7_5.sce @@ -0,0 +1,14 @@ +l=1*10^-6; //length
+w=200*10^-6; //width
+d=0.5*10^-6; //depth
+E0=8.854*10^-12;
+Er=13.1;
+q=1.6*10^-19; //electron charge
+Nd=1*10^16; //doping concentration
+mun=8500;
+Vp=(q*Nd*d^2)/(2*Er*E0);
+G0=(q*mun*Nd*w)/l;
+gm=0.0358;
+Cap=(E0*Er*w*l)/d;
+fT=gm/(2*%pi*Cap);
+disp("Hertz",fT,"Cut off frequency");
\ No newline at end of file |