diff options
Diffstat (limited to '1823/CH6/EX6.2/SolEx6_2.sce')
-rwxr-xr-x | 1823/CH6/EX6.2/SolEx6_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1823/CH6/EX6.2/SolEx6_2.sce b/1823/CH6/EX6.2/SolEx6_2.sce new file mode 100755 index 000000000..6113131cf --- /dev/null +++ b/1823/CH6/EX6.2/SolEx6_2.sce @@ -0,0 +1,13 @@ +//Find an expression for the current-gain ratio Ai ¼ iL=is and evaluate it
+//Example 6.2 page no 175
+clear
+clc
+a=0.99//alpha
+Rc=4*10^3 //kΩ
+Rl=4*10^3 //kΩ
+Re=5*10^3 //kΩ
+re=30 //Ω
+rb=300 //Ω
+Ai=(a*Rc*Re)/((Rc+Rl)*(Re+re+(1-a)*rb))
+printf("\n The value of Ai=%0.3f " ,Ai)
+
|