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 /2459/CH9/EX9.15 | |
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 '2459/CH9/EX9.15')
-rw-r--r-- | 2459/CH9/EX9.15/Ex9_15.PNG | bin | 0 -> 6813 bytes | |||
-rw-r--r-- | 2459/CH9/EX9.15/Ex9_15.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/2459/CH9/EX9.15/Ex9_15.PNG b/2459/CH9/EX9.15/Ex9_15.PNG Binary files differnew file mode 100644 index 000000000..56b5692a6 --- /dev/null +++ b/2459/CH9/EX9.15/Ex9_15.PNG diff --git a/2459/CH9/EX9.15/Ex9_15.sce b/2459/CH9/EX9.15/Ex9_15.sce new file mode 100644 index 000000000..faa0de2cc --- /dev/null +++ b/2459/CH9/EX9.15/Ex9_15.sce @@ -0,0 +1,24 @@ +//chapter9
+//example9.15
+//page158
+
+n=4
+Rl=200 // ohm
+fin=50 // Hz
+Vp=230 // V rms
+
+Vs=Vp/n // V rms
+Vsm=Vs*2^0.5 // maximum voltage across secondary
+
+Idc=2*Vsm/(%pi*Rl)
+Vdc=Idc*Rl
+PIV=Vsm
+
+// in full wave rectifier, output frequency is twice input frequency since there are two ouput pulses for each cycle of input
+fout=2*fin
+
+printf("dc output voltage = %.3f V \n",Vdc)
+printf("peak inverse voltage = %.3f V \n",PIV)
+printf("output frequency = %.3f Hz",fout)
+
+// the accurate answer for dc output voltage is 51.768 V but in book it is given as 52 V
|