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 --- 74/CH10/EX10.3/example3_sce.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 74/CH10/EX10.3/example3_sce.sce (limited to '74/CH10/EX10.3') diff --git a/74/CH10/EX10.3/example3_sce.sce b/74/CH10/EX10.3/example3_sce.sce new file mode 100755 index 000000000..9ccd9bb5f --- /dev/null +++ b/74/CH10/EX10.3/example3_sce.sce @@ -0,0 +1,21 @@ +//chapter 10 +//example 10.3 +//page349 +V_=6;Vz=6;//potential at inverting(-) input is equal to vitual +Vr2=Vz; +Vin=30; +Rl=200; +R2=5*10^3; +R1=0;//for minimum Vout +Voutmin=((R1+R2)/R2)*Vz;//minimum output voltage +disp(Voutmin)//minimum voltage +R1=10*10^3;//for maximum output voltage +Voutmax=((R1+R2)/R2)*Vz; +disp(Voutmax)//maximum output voltage +disp(Voutmax,Voutmin)//range when potentiometer change from 0 to 10k +Vce=Vin-Voutmax;//when R1=10k and Vout=18 +disp(Vce) +Ic=Voutmax/Rl; +disp(Ic) +Pd=Vce*Ic;//power +disp(Pd)//watt \ No newline at end of file -- cgit