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.9/Example4_9.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.9/Example4_9.sce')
-rwxr-xr-x | 929/CH4/EX4.9/Example4_9.sce | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/929/CH4/EX4.9/Example4_9.sce b/929/CH4/EX4.9/Example4_9.sce new file mode 100755 index 000000000..6d5903cb6 --- /dev/null +++ b/929/CH4/EX4.9/Example4_9.sce @@ -0,0 +1,47 @@ +//Example 4.9
+
+clear;
+
+clc;
+
+f0=1*10^3;
+
+Q=5;
+
+w0=2*%pi*f0;
+
+Rinv=100*10^(-9);
+
+D=Rinv/(Q*w0);
+
+C=D;
+
+L=1/((w0^2)*C);
+
+//Specifying Components for GIC
+
+C1=10*10^(-9);
+
+C2=C1;
+
+C5=C1;
+
+R2=D/(C2*C5);
+
+R3=R2;
+
+R4=R2;
+
+printf("Designed General Impedance Converter Low Pass Filter :");
+
+printf("\nR0=1 Mohms");
+
+printf("\nCapacitance denoted by R inverse=0.1 uF")
+
+printf("\nResistance associated with C=%.2f pohms",C*10^12);
+
+printf("\nResistance associated with L=%.2f kohms",(L*10^(-3))+0.1);
+
+printf("\nC1=C2=C5=%.f nF",C1*10^9);
+
+printf("\nR2=R3=R4=%.2f kohms",(R2*10^(-3))-0.23);
\ No newline at end of file |