diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3673/CH17/EX17.a.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3673/CH17/EX17.a.3')
-rw-r--r-- | 3673/CH17/EX17.a.3/Example_a_17_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3673/CH17/EX17.a.3/Example_a_17_3.sce b/3673/CH17/EX17.a.3/Example_a_17_3.sce new file mode 100644 index 000000000..51e9249a7 --- /dev/null +++ b/3673/CH17/EX17.a.3/Example_a_17_3.sce @@ -0,0 +1,19 @@ +//Example_a_17_3 page no:865
+clc;
+f1=1000;
+f2=5*10^3;
+k=500;
+f0=sqrt(f1*f2);
+B_omega=f2-f1;
+//calculating T-section elements
+L1=k*(f2-f1)/(%pi*f1*f2);
+C1=1/(4*%pi*k*(f2-f1));
+//calculating pi-section elements
+L2=k/(4*%pi*(f2-f1));
+C2=(f2-f1)/(%pi*k*(f2*f1));
+disp("T-Section filter is given by");
+disp(L2*1000,"the inductance is (in mH)");
+disp(C2*10^6,"the capacitance is (in microFarad)");
+disp("pi-Section filter is given by");
+disp(2*L2*1000,"the inductance is (in mH)");
+disp(C2*10^6/2,"the capacitance is (in microFarad)");
|