diff options
Diffstat (limited to '1787/CH6/EX6.10/Exa6_10.sce')
-rwxr-xr-x | 1787/CH6/EX6.10/Exa6_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1787/CH6/EX6.10/Exa6_10.sce b/1787/CH6/EX6.10/Exa6_10.sce new file mode 100755 index 000000000..f25af33dc --- /dev/null +++ b/1787/CH6/EX6.10/Exa6_10.sce @@ -0,0 +1,16 @@ +//Exa 6.10
+clc;
+clear;
+close;
+//given data
+VCC=10;//in volt
+RL=800;//in ohm
+VL=0.8;//in volt
+alfa=0.96;//unitless
+//VR=IC*RL
+VCE=VCC-VL;//in Volt
+disp(VCE,"Collector-emitter Voltage in volts : ");
+IC=VL*1000/RL;//in mA
+Beta=alfa/(1-alfa);//unitless
+IB=IC/Beta;//in mA
+disp(IB*1000,"Base current in uA : ");
\ No newline at end of file |