diff options
Diffstat (limited to '2300/CH7/EX7.13.1')
-rwxr-xr-x | 2300/CH7/EX7.13.1/Ex7_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2300/CH7/EX7.13.1/Ex7_1.sce b/2300/CH7/EX7.13.1/Ex7_1.sce new file mode 100755 index 000000000..22ce2e58b --- /dev/null +++ b/2300/CH7/EX7.13.1/Ex7_1.sce @@ -0,0 +1,17 @@ +
+//scilab 5.4.1
+//windows 7 operating system
+//chapter 7:Junction Transistor Characteristics
+clc;
+clear;
+//given data
+a=0.99;//a=fraction of the emitter current contributed by the carriers injected into the base and reaching the collector
+Rl=4500; //Load resistance in ohms
+rd=50; //dynamic resistance in ohms
+
+Av=a*Rl/rd; //Voltage gain
+Ap=a*Av;//Power gain
+
+disp(Av,'Av=');
+disp(Ap,'Ap=');
+
|