diff options
Diffstat (limited to '863/CH9/EX9.5')
-rw-r--r-- | 863/CH9/EX9.5/Ex9_5.sce | 18 | ||||
-rw-r--r-- | 863/CH9/EX9.5/Ex9_5.txt | 18 | ||||
-rw-r--r-- | 863/CH9/EX9.5/Result9_5.txt | 8 |
3 files changed, 44 insertions, 0 deletions
diff --git a/863/CH9/EX9.5/Ex9_5.sce b/863/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..ce6ce80e1 --- /dev/null +++ b/863/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,18 @@ +//Caption:Design a UJT relaxation oscillator and find peak to peak output amplitude
+//Ex9.5
+clc;
+clear;
+close;
+Vbb=20//Supply voltage(in volts)
+f=5//Frequency(in khz)
+Veb=3//Fringe Voltage(in volts)
+Ip=2//Fringe current(in micro ampere)
+Iv=1//Emitter current(in mA)
+n=0.75
+Vp=0.7+(n*Vbb)
+R1x=(Vbb-Vp)/Ip
+R1n=(Vbb-Veb)/Iv
+t=1000/f
+C1=t*1000/(R1n*(log((Vbb-Veb)/(Vbb-Vp))))
+E=Vp-Veb
+disp(C1,R1n,E,'Peak to peak voltage(in volts) and Components for circuit are resistor(in kilo ohm) and capacitance(in pf)=')
\ No newline at end of file diff --git a/863/CH9/EX9.5/Ex9_5.txt b/863/CH9/EX9.5/Ex9_5.txt new file mode 100644 index 000000000..ce6ce80e1 --- /dev/null +++ b/863/CH9/EX9.5/Ex9_5.txt @@ -0,0 +1,18 @@ +//Caption:Design a UJT relaxation oscillator and find peak to peak output amplitude
+//Ex9.5
+clc;
+clear;
+close;
+Vbb=20//Supply voltage(in volts)
+f=5//Frequency(in khz)
+Veb=3//Fringe Voltage(in volts)
+Ip=2//Fringe current(in micro ampere)
+Iv=1//Emitter current(in mA)
+n=0.75
+Vp=0.7+(n*Vbb)
+R1x=(Vbb-Vp)/Ip
+R1n=(Vbb-Veb)/Iv
+t=1000/f
+C1=t*1000/(R1n*(log((Vbb-Veb)/(Vbb-Vp))))
+E=Vp-Veb
+disp(C1,R1n,E,'Peak to peak voltage(in volts) and Components for circuit are resistor(in kilo ohm) and capacitance(in pf)=')
\ No newline at end of file diff --git a/863/CH9/EX9.5/Result9_5.txt b/863/CH9/EX9.5/Result9_5.txt new file mode 100644 index 000000000..dbed93ba2 --- /dev/null +++ b/863/CH9/EX9.5/Result9_5.txt @@ -0,0 +1,8 @@ +Peak to peak voltage(in volts) and Components for circuit are resistor(in kilo ohm) and capacitance(in pf)=
+
+ 12.7
+
+ 17.
+
+ 8558.65
+
\ No newline at end of file |