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 --- 2528/CH1/EX1.19/Ex1_19.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 2528/CH1/EX1.19/Ex1_19.sce (limited to '2528/CH1/EX1.19/Ex1_19.sce') diff --git a/2528/CH1/EX1.19/Ex1_19.sce b/2528/CH1/EX1.19/Ex1_19.sce new file mode 100755 index 000000000..7ebef3cdd --- /dev/null +++ b/2528/CH1/EX1.19/Ex1_19.sce @@ -0,0 +1,21 @@ +//Chapter 1 +//page 40 +//Example no 1-19 +//Determine single ended output +//figure 1.20 +//Given +clc; +Vcc=15; //in Volt +Rc=8000; //in Ohm +re=30; //in ohm +Rt=10000; //in Ohm +Vee=8; //in Volt +It=(Vee-0.7)/Rt; +printf("\n It =%.5f Amp \n",It);// Result +Ie=It/2; +re1=(26*10^-3)/Ie; +printf("\n re1 =%.1f \n",re1);// Result +//for single ended output gain +Av=Rc/(2*(re1+re)); +printf("\n Single output gain is %.1f \n",Av);// Result +printf("\n The diferential output gain is twice Av i.e. %.0f ",2*Av);// Result -- cgit