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.3/Ex17_3.sce | |
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.3/Ex17_3.sce')
-rw-r--r-- | 3673/CH17/EX17.3/Ex17_3.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3673/CH17/EX17.3/Ex17_3.sce b/3673/CH17/EX17.3/Ex17_3.sce new file mode 100644 index 000000000..c1bfe85fb --- /dev/null +++ b/3673/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,32 @@ +//Example 17_3 page no:831
+clc;
+//given
+k=400;
+fc=1000;
+fx=1100;
+//calculating m,L,C
+m=sqrt(1-(fc/fx)^2)
+L=k/(%pi*fc);
+C=1/(%pi*k*fc);
+//calculating T-section elements are
+L1=m*L/2;
+L1=L1*1000;//converting to milliHenry
+C1=m*C;
+C1=C1*10^6;//converting to microFarad
+L2=(1-(m^2))*L/(4*m);
+L2=L2*1000;//converting to milliHenry
+disp("the values of T-section elements are");
+disp(L1,"the inductance between which capacitance is connected is (in mH)");
+disp(C1,"the capacitance connected between inductor is (in microFarad)");
+disp(L2,"the inductance connected in series with capacitance is (in mH)");
+//calculating the pi section elements are
+C1=m*C/2;
+C1=C1*10^6;//converting to microFarad
+C2=(1-m^2)*C/(4*m);
+C2=C2*10^6;//converting to microFarad
+L1=m*L;
+L1=L1*1000;//converting to milliHenry
+disp("the values of pi section elements are");
+disp(C1,"the capacitance connected in parallel is (in microFarad)");
+disp(C2,"the capacitance connected in parallel to inductor is (in microFarad)");
+disp(L1,"the inductor connected in parallel to capacitance is (in mH)");
|