summaryrefslogtreecommitdiff
path: root/226/CH12/EX12.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /226/CH12/EX12.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '226/CH12/EX12.1')
-rwxr-xr-x226/CH12/EX12.1/example1_sce.sce15
1 files changed, 15 insertions, 0 deletions
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