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/CH9/EX9.5/Ex9_5.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 863/CH9/EX9.5/Ex9_5.txt (limited to '863/CH9/EX9.5/Ex9_5.txt') 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 -- cgit