summaryrefslogtreecommitdiff
path: root/1787/CH6/EX6.16/Exa6_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '1787/CH6/EX6.16/Exa6_16.sce')
-rwxr-xr-x1787/CH6/EX6.16/Exa6_16.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1787/CH6/EX6.16/Exa6_16.sce b/1787/CH6/EX6.16/Exa6_16.sce
new file mode 100755
index 000000000..2ebcc3068
--- /dev/null
+++ b/1787/CH6/EX6.16/Exa6_16.sce
@@ -0,0 +1,19 @@
+//Exa 6.16
+clc;
+clear;
+close;
+//given data :
+Beta=45;//Unitless
+VBE=0.7;//in Volt
+VCC=0;//in Volt
+RB=10^5;//in ohm
+RC=1.2*10^3;//in ohm
+VEE=-9;//in Volt
+disp("Applying Kirchoffs Voltage Law in input loop we have : ");
+disp("IB*RB+VBE+VEE=0");
+IB=-(VBE+VEE)/RB;//in mA
+IC=Beta*IB;//in mA
+VC=VCC-IC*RC;//in Volts
+VB=VBE+VEE;//in Volts
+disp(VC,"VC in volts : ");
+disp(VB,"VB in volts : "); \ No newline at end of file