diff options
Diffstat (limited to '226/CH6/EX6.12/example12_sce.sce')
-rwxr-xr-x | 226/CH6/EX6.12/example12_sce.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/226/CH6/EX6.12/example12_sce.sce b/226/CH6/EX6.12/example12_sce.sce new file mode 100755 index 000000000..ac86a6f30 --- /dev/null +++ b/226/CH6/EX6.12/example12_sce.sce @@ -0,0 +1,20 @@ +//chapter 6
+//example 6.12
+//page 277
+printf("\n")
+printf("given")
+Rc=5.6*10^3;Rl=33*10^3;rs=600;
+hfe=100;hie=1.5*10^3;vs=50*10^-3;
+disp(" CE circuit operation with vs at transistor base and Re bypassed")
+Av=(hfe*((Rc*Rl)/(Rc+Rl)))/hie
+Zb=hie
+Rb=(R1*R2)/(R1+R2);
+Zi=(Rb*Zb)/(Rb+Zb)
+vi=(vs*Zi)/(rs+Zi)
+vo=Av*vi
+disp("Cb circuit operation with vs at emitter and the base resistor bypassed")
+Av=(hfe*((Rc*Rl)/(Rc+Rl)))/hie
+Ze=hie/(1+hfe)
+Zi=(Ze*Re)/(Ze+Re)
+vi=(vs*Zi)/(rs+Zi)
+vo=Av*vi
\ No newline at end of file |