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.5/Example6_5.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.5/Example6_5.sce')
-rwxr-xr-x | 929/CH6/EX6.5/Example6_5.sce | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/929/CH6/EX6.5/Example6_5.sce b/929/CH6/EX6.5/Example6_5.sce new file mode 100755 index 000000000..2a6b7f672 --- /dev/null +++ b/929/CH6/EX6.5/Example6_5.sce @@ -0,0 +1,45 @@ +//Example 6.5
+
+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=ft/a0;
+
+fB=b*ft;
+
+Rp=ro;
+
+Rs=ro/(1+(a0*b));
+
+Leq=ro/(2*%pi*fB);
+
+printf("Element Values in the Equivalent Circuit of Zo :");
+
+printf("\nRs=%.f mohms",Rs*10^(3));
+
+printf("\nRp=%.2f ohms",Rp);
+
+printf("\nLeq=%.f uH",Leq*10^6);
+
+printf("\n\nBreakpoint Frequencies of Magnitude Plot :");
+
+printf("\nfb=%.2f Hz",fb);
+
+printf("\nft=%.2f MHz",ft*10^(-6));
\ No newline at end of file |