diff options
Diffstat (limited to '2045/CH4/EX4.36/Ex4_36.sce')
-rwxr-xr-x | 2045/CH4/EX4.36/Ex4_36.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2045/CH4/EX4.36/Ex4_36.sce b/2045/CH4/EX4.36/Ex4_36.sce new file mode 100755 index 000000000..6f9d19594 --- /dev/null +++ b/2045/CH4/EX4.36/Ex4_36.sce @@ -0,0 +1,20 @@ +//example 36
+clear
+ic=5.2*10^-3;//ampere
+ib=50*10^-6;//ampere
+icb=2*10^-6;//ampere
+beta1=(ic-icb)/(ib+icb);
+disp("beta = "+string((beta1)));
+ie=ib+ic;
+
+disp("ie = "+string((ie))+"ampere");
+alpha1=(ic-icb)/ic;
+disp("alpha = "+string((alpha1)));
+
+
+
+ic=10*10^-3;//ampere
+ib=(ic-(beta1+1)*(icb))/beta1;
+
+
+disp("ib = "+string((ib))+"ampere");//correction in the book
|