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 /1964/CH12/EX12.10 | |
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 '1964/CH12/EX12.10')
-rwxr-xr-x | 1964/CH12/EX12.10/ex12_10.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1964/CH12/EX12.10/ex12_10.sce b/1964/CH12/EX12.10/ex12_10.sce new file mode 100755 index 000000000..9ec44116a --- /dev/null +++ b/1964/CH12/EX12.10/ex12_10.sce @@ -0,0 +1,19 @@ +//Chapter-12, Example 12.10, Page 352
+//=============================================================================
+clc
+clear
+//INPUT DATA
+V=10;//output voltage in V
+Il=200*10^-3;//load current in A
+//CALCULATIONS
+Rl=V/(Il);//effective load resistance in ohms
+ripplefactor=0.02;
+//critical value occurs at f=50 hz
+f=50;//freq in hz
+L=Rl/(3*2*%pi*f);//inductance in H
+//but taking L=60mh(about 20 percentage higher)we have
+L1=60*10^-3;//inductance in henry
+C=1.194/(ripplefactor*L1);
+mprintf("the values of L and C for LC filter are %g H and %g F respectively",L1,C)
+//note:C value calculated is wrong in textbook
+//=================================END OF PROGRAM======================================================================================================
|