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 --- 226/CH12/EX12.1/example1_sce.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 226/CH12/EX12.1/example1_sce.sce (limited to '226/CH12/EX12.1') diff --git a/226/CH12/EX12.1/example1_sce.sce b/226/CH12/EX12.1/example1_sce.sce new file mode 100755 index 000000000..bc9d845d5 --- /dev/null +++ b/226/CH12/EX12.1/example1_sce.sce @@ -0,0 +1,15 @@ +//chapter 12 +//example 12.1 +//page 474 +printf("\n") +printf("given") +hfe=50;hie=1*10^3;hib=20;f1=100;Rc=3.3*10^3;Re=Rc; +disp(" required capacitance") +Xc2=hib; +C2=1/(2*3.14*f1*Xc2) +disp(" voltage gain with emitter terminal completely bypassed to ground") +Av=-(hfe*Rc)/hie +disp("voltage gain when f=100") +Av=-(hfe*Rc)/sqrt(((hie^2)+((1+hfe)*Xc2)^2)) +disp(" voltage gain when C2 is incorrectly selected as Xc2=Re/10") +Avx=-(hfe*Rc)/sqrt(((hie^2)+((1+hfe)*(Re/10))^2)) \ No newline at end of file -- cgit