summaryrefslogtreecommitdiff
path: root/3754/CH22/EX22.3/22_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH22/EX22.3/22_3.sce')
-rw-r--r--3754/CH22/EX22.3/22_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH22/EX22.3/22_3.sce b/3754/CH22/EX22.3/22_3.sce
new file mode 100644
index 000000000..8fac10a4c
--- /dev/null
+++ b/3754/CH22/EX22.3/22_3.sce
@@ -0,0 +1,18 @@
+clear//
+
+//Variables
+
+VCC = 25.0 //Source voltage (in volts)
+RC = 820.0 //Collector Resistance (in ohm)
+RB = 180.0 //Base Resistance (in kilo-ohm)
+beta = 80.0 //Common-Emitter current gain
+
+//Calculation
+
+IB = VCC / RB //Base current (in milli-Ampere)
+IC = beta * IB //Collector current (in milli-Ampere)
+VCE = VCC - IC * RC * 10**-3 //Collector-to-Emitter voltage (in volts)
+
+//Result
+
+printf("\n The value of base current is %0.2f mA.\nThe value of Collector current is %0.2f mA.\nTHe value of Collector-to-Emitter voltage is %0.2f V.",IB,IC,VCE)