diff options
Diffstat (limited to '3811/CH2/EX2.1/Ex2_1.sce')
-rw-r--r-- | 3811/CH2/EX2.1/Ex2_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3811/CH2/EX2.1/Ex2_1.sce b/3811/CH2/EX2.1/Ex2_1.sce new file mode 100644 index 000000000..af4212e5d --- /dev/null +++ b/3811/CH2/EX2.1/Ex2_1.sce @@ -0,0 +1,14 @@ +//Book Name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 2
+//example 2.1
+//edition 1
+//publisher and place:Nelson Engineering
+clc;
+clear;
+Ic=10;//collector current in ampere
+beta1=200; // current gain in the linear region
+beta2=10; //current gain in the saturation region
+Ib1=(Ic/beta1); //base current in the linear region in ampere
+Ib2=(Ic/beta2); //base current in the saturation region in ampere
+disp(Ib1,'The base current in the linear region in ampere is')
+disp(Ib2,'The base current in the saturation region in ampere is')
|