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/CH4/EX4.13/Example4_13.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/CH4/EX4.13/Example4_13.sce')
-rwxr-xr-x | 929/CH4/EX4.13/Example4_13.sce | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/929/CH4/EX4.13/Example4_13.sce b/929/CH4/EX4.13/Example4_13.sce new file mode 100755 index 000000000..74c2577dd --- /dev/null +++ b/929/CH4/EX4.13/Example4_13.sce @@ -0,0 +1,47 @@ +//Example 4.13
+
+clear;
+
+clc;
+
+C1=0.618;
+
+C5=C1;
+
+C3=2.00;
+
+L2=1.618;
+
+L4=L2;
+
+fc=1*10^3;
+
+wc=2*%pi*fc;
+
+fck=100*10^3;
+
+C0=1*10^(-12);
+
+CC1=(C1/wc)*fck*C0;
+
+CL2=(L2/wc)*fck*C0;
+
+CC5=CC1;
+
+CL4=CL2;
+
+CC3=(C3/wc)*fck*C0;
+
+CRi=C0;
+
+CRo=C0;
+
+printf("Designed Switched Capacitor Low Pass Filter for Butterworth Response :");
+
+printf("\nCRi=CRo=C0=%.2f pF",C0*10^12);
+
+printf("\nCC1=CC5=%.2f pF",CC1*10^12);
+
+printf("\nCL2=CL4=%.2f pF",CL2*10^12);
+
+printf("\nCC3=%.2f pF",CC3*10^12);
\ No newline at end of file |