diff options
Diffstat (limited to '135/CH5/EX5.4')
-rwxr-xr-x | 135/CH5/EX5.4/EX4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/135/CH5/EX5.4/EX4.sce b/135/CH5/EX5.4/EX4.sce new file mode 100755 index 000000000..d94e263e3 --- /dev/null +++ b/135/CH5/EX5.4/EX4.sce @@ -0,0 +1,16 @@ +// Example 5.4: VCEQ, ICQ
+clc, clear
+VBE=0.7; // in volts
+betaf=45;
+// From Fig. 5.14
+VEE=9; // in volts
+RB=100e3; // in ohms
+RC=1.2e3; // in ohms
+// Applying KVL in the clockwise direction base emitter loop
+IB=(VEE-VBE)/RB; // in amperes
+IC=betaf*IB; // in amperes
+// Writing KVL for the collector loop
+VCE=VEE-IC*RC; // in volts
+IC=IC*1e3; // in mili-amperes
+disp(VCE,"VCEQ (V) =");
+disp(IC,"ICQ (mA) =");
\ No newline at end of file |