diff options
Diffstat (limited to '3636/CH11/EX11.5/Ex11_5.sce')
-rw-r--r-- | 3636/CH11/EX11.5/Ex11_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3636/CH11/EX11.5/Ex11_5.sce b/3636/CH11/EX11.5/Ex11_5.sce new file mode 100644 index 000000000..dd4184db3 --- /dev/null +++ b/3636/CH11/EX11.5/Ex11_5.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+B=10 //current gain
+IB=0.6 //in A
+VBE=1 //in V
+RC=10 //in ohm
+VCC=100 //in Vs
+
+//Calculation
+IC=B*IB //in A
+VCE=VCC-(IC*RC) //in V
+VCB=VCE-VBE //in V
+PT=(VCE*IC)+(VBE*IB)
+
+mprintf("Total power dissipation= %.1f W",PT)
+disp("The BJT is working outside the SOA")
|