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 /1514/CH2/EX2.6 | |
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 '1514/CH2/EX2.6')
-rwxr-xr-x | 1514/CH2/EX2.6/ch2_2_6.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/1514/CH2/EX2.6/ch2_2_6.sce b/1514/CH2/EX2.6/ch2_2_6.sce new file mode 100755 index 000000000..7b46b5b01 --- /dev/null +++ b/1514/CH2/EX2.6/ch2_2_6.sce @@ -0,0 +1,28 @@ +//chapter 2
+//example 2.6
+//page 42
+clear;
+clc ;
+//given
+VF=0.7;//forward voltage drop across diode
+Rl=500;//load resistor in ohm
+Vp=30;//input voltage in volts
+
+//peak o/p voltage
+Ep=Vp-VF;
+
+//peak o/p current
+Ip=((Vp-VF)/Rl)*10^3;
+
+//for half wave rectifier
+Iave= (0.637 * Ip)/2; //average current through diode
+//power dissipation
+PD= Iave * VF;
+
+//Peak Reverse Voltage(PRV)
+PRV=2*Vp;
+
+ printf('\npeak o/p voltage=%.1f V\n',Ep);
+ printf('peak o/p current=%.1f mA\n',Ip);
+ printf('power dissipation=%d mW\n',PD);
+ printf('Peak Reverse Voltage(PRV)=%d V',PRV);
|