From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 863/CH3/EX3.10/Ex3_10.sce | 18 ++++++++++++++++++ 863/CH3/EX3.10/Ex3_10.txt | 18 ++++++++++++++++++ 863/CH3/EX3.10/Result3_10.txt | 10 ++++++++++ 3 files changed, 46 insertions(+) create mode 100644 863/CH3/EX3.10/Ex3_10.sce create mode 100644 863/CH3/EX3.10/Ex3_10.txt create mode 100644 863/CH3/EX3.10/Result3_10.txt (limited to '863/CH3/EX3.10') 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 -- cgit