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 /863/CH3/EX3.10 | |
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 '863/CH3/EX3.10')
-rw-r--r-- | 863/CH3/EX3.10/Ex3_10.sce | 18 | ||||
-rw-r--r-- | 863/CH3/EX3.10/Ex3_10.txt | 18 | ||||
-rw-r--r-- | 863/CH3/EX3.10/Result3_10.txt | 10 |
3 files changed, 46 insertions, 0 deletions
diff --git a/863/CH3/EX3.10/Ex3_10.sce b/863/CH3/EX3.10/Ex3_10.sce new file mode 100644 index 000000000..660531281 --- /dev/null +++ b/863/CH3/EX3.10/Ex3_10.sce @@ -0,0 +1,18 @@ +//Caption:Calculate Capacitance C1and C2,Diode reverse recovery time and input voltage
+//Ex3.10
+clc;
+clear;
+close;
+V=12//Output voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+R=1.2//Load resistance(in Kilo ohm)
+f=1//Frequency(in KHz)
+r=10//Ripple in output voltage(in %)
+Il=V/R
+t=1000/(2*f)
+C2=(Il*t)*10^(-3)/((r/(2*100))*V)
+C1=(2*Il*t)*10^(-3)/((r/(2*100))*V)
+trr=t/10
+Vpp=V+((r/100)*V)+(2*Vd)
+Vp=Vpp/2
+disp(C1,C2,trr,Vp,'Input voltage(in volts),Diode reverse recovery time(in micro sec),C2 and C1(in micro farad)=')
\ No newline at end of file diff --git a/863/CH3/EX3.10/Ex3_10.txt b/863/CH3/EX3.10/Ex3_10.txt new file mode 100644 index 000000000..660531281 --- /dev/null +++ b/863/CH3/EX3.10/Ex3_10.txt @@ -0,0 +1,18 @@ +//Caption:Calculate Capacitance C1and C2,Diode reverse recovery time and input voltage
+//Ex3.10
+clc;
+clear;
+close;
+V=12//Output voltage(in volts)
+Vd=0.7//Diode forward voltage(in volts)
+R=1.2//Load resistance(in Kilo ohm)
+f=1//Frequency(in KHz)
+r=10//Ripple in output voltage(in %)
+Il=V/R
+t=1000/(2*f)
+C2=(Il*t)*10^(-3)/((r/(2*100))*V)
+C1=(2*Il*t)*10^(-3)/((r/(2*100))*V)
+trr=t/10
+Vpp=V+((r/100)*V)+(2*Vd)
+Vp=Vpp/2
+disp(C1,C2,trr,Vp,'Input voltage(in volts),Diode reverse recovery time(in micro sec),C2 and C1(in micro farad)=')
\ No newline at end of file diff --git a/863/CH3/EX3.10/Result3_10.txt b/863/CH3/EX3.10/Result3_10.txt new file mode 100644 index 000000000..c4572ac53 --- /dev/null +++ b/863/CH3/EX3.10/Result3_10.txt @@ -0,0 +1,10 @@ +Input voltage(in volts),Diode reverse recovery time(in micro sec),C2 and C1(in micro farad)=
+
+ 7.3
+
+ 50.
+
+ 8.3333333
+
+ 16.666667
+
\ No newline at end of file |