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 /929/CH6/EX6.4/Example6_4.sce | |
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 '929/CH6/EX6.4/Example6_4.sce')
-rwxr-xr-x | 929/CH6/EX6.4/Example6_4.sce | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/929/CH6/EX6.4/Example6_4.sce b/929/CH6/EX6.4/Example6_4.sce new file mode 100755 index 000000000..6f089e88b --- /dev/null +++ b/929/CH6/EX6.4/Example6_4.sce @@ -0,0 +1,47 @@ +//Example 6.4
+
+clear;
+
+clc;
+
+rd=1*10^6;
+
+rc=1*10^9;
+
+a0=10^5;
+
+ro=100;
+
+ft=1*10^6;
+
+R1=2*10^3;
+
+R2=18*10^3;
+
+b=R1/(R1+R2);
+
+fB=b*ft;
+
+Rs=rd;
+
+Rd=rd*(1+(a0*b));
+
+Rp=((2*rc)*Rd)/((2*rc)+Rd);
+
+Ceq=1/(2*%pi*fB*rd);
+
+f1=(Rs/Rp)*fB;
+
+printf("Element Values in the Equivalent Circuit of Zi :");
+
+printf("\nRs=%.2f Mohms",Rs*10^(-6));
+
+printf("\nRp=%.2f Gohms",Rp*10^(-9));
+
+printf("\nCeq=%.2f pF",Ceq*10^12);
+
+printf("\n\nBreakpoint Frequencies of Magnitude Plot :");
+
+printf("\nfB=%.2f kHz",fB*10^(-3));
+
+printf("\nf1=%.2f Hz",f1);
\ No newline at end of file |