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 /2045/CH2/EX2.14 | |
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 '2045/CH2/EX2.14')
-rwxr-xr-x | 2045/CH2/EX2.14/Ex2_14.pdf | bin | 0 -> 12320 bytes | |||
-rwxr-xr-x | 2045/CH2/EX2.14/Ex2_14.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/2045/CH2/EX2.14/Ex2_14.pdf b/2045/CH2/EX2.14/Ex2_14.pdf Binary files differnew file mode 100755 index 000000000..49ef021e8 --- /dev/null +++ b/2045/CH2/EX2.14/Ex2_14.pdf diff --git a/2045/CH2/EX2.14/Ex2_14.sce b/2045/CH2/EX2.14/Ex2_14.sce new file mode 100755 index 000000000..c79009d0d --- /dev/null +++ b/2045/CH2/EX2.14/Ex2_14.sce @@ -0,0 +1,20 @@ +//pagenumber 109 example 14
+clear
+voltag=40;//volt
+i1=0.2;//ampere
+c1=40*10^-6;//farad
+c2=c1;
+induct=2;//henry
+//(1) ripple
+vdc=2*sqrt(2)*voltag/3.14;
+r1=vdc/i1;
+induc1=r1/1130;
+v1=voltag/(3*3.14^3*120^2*4*induct*c1);
+disp("ripple voltage = "+string((v1))+"volt");
+//(2) with two filter
+v1=4*voltag/((3*3.14^5)*(16*120^2*induct^2*c1^2));
+disp("ripple voltage including filters = "+string((v1))+"volt");//correction in the book
+//(3)ripple voltage
+v1=4*voltag/(5*3.14*1.414*2*3.14*240*240*3.14*induct*c1);
+v1=v1/20;
+disp("ripple voltage = "+string((v1))+"volt");
|