diff options
Diffstat (limited to '2672/CH7/EX7.6/Ex7_6.sce')
-rwxr-xr-x | 2672/CH7/EX7.6/Ex7_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2672/CH7/EX7.6/Ex7_6.sce b/2672/CH7/EX7.6/Ex7_6.sce new file mode 100755 index 000000000..13d5d80e2 --- /dev/null +++ b/2672/CH7/EX7.6/Ex7_6.sce @@ -0,0 +1,14 @@ +//Ex_7_6
+clc;
+clear;
+close;
+format('v',6);
+//given data :
+IE=10;//mA
+IB=5;///mA(Base Current)
+IC=IE-IB;//mA(Collector Current)
+BetaR=IC/IB;//unitless
+alfaR=IC/IE;//current gain
+disp(BetaR,"BetaR=");
+disp(alfaR,"alfaR=");
+//Answer is wrong in the book.
|