diff options
Diffstat (limited to '3754/CH14/EX14.6/14_6.sce')
-rw-r--r-- | 3754/CH14/EX14.6/14_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH14/EX14.6/14_6.sce b/3754/CH14/EX14.6/14_6.sce new file mode 100644 index 000000000..c27a5c374 --- /dev/null +++ b/3754/CH14/EX14.6/14_6.sce @@ -0,0 +1,15 @@ +clear//
+
+//Variables
+
+beta = 100.0 //common emitter current gain
+IC = 40.0 //Collector current (in milli-Ampere)
+
+//Calculation
+
+IB = IC / beta //Base current (in milli-Ampere)
+IE = IB + IC //Emitter current (in milli-Ampere)
+
+//Result
+
+printf("\n The value of emitter current is %0.3f mA.",IE)
|