From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2198/CH2/EX2.7.3/Ex2_7_3.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2198/CH2/EX2.7.3/Ex2_7_3.sce (limited to '2198/CH2/EX2.7.3') diff --git a/2198/CH2/EX2.7.3/Ex2_7_3.sce b/2198/CH2/EX2.7.3/Ex2_7_3.sce new file mode 100755 index 000000000..724d89b9c --- /dev/null +++ b/2198/CH2/EX2.7.3/Ex2_7_3.sce @@ -0,0 +1,17 @@ +//Ex 2.7.3 +clc;clear;close; +format('v',8); + +//Given : +Eta=2;//for Si diode +T=300;//K +VT=T/11600;//V +IbyIo=90/100; +//I=Io*(exp(V/Eta/VT)-1) +V=log(IbyIo+1)*Eta*VT;//V +disp(V*1000,"Saturation value of voltage in mV : "); +VF=0.5;//volts +VR=-0.5;//volts +IFbyIR=(exp(VF/Eta/VT)-1)/(exp(VR/Eta/VT)-1);//ratio +disp(IFbyIR,"Ratio of forward to reverse current : "); +//Answer in the book is wrong. -- cgit