diff options
Diffstat (limited to '2330/CH7/EX7.4/ex7_4.sce')
-rwxr-xr-x | 2330/CH7/EX7.4/ex7_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2330/CH7/EX7.4/ex7_4.sce b/2330/CH7/EX7.4/ex7_4.sce new file mode 100755 index 000000000..d6ebdaba0 --- /dev/null +++ b/2330/CH7/EX7.4/ex7_4.sce @@ -0,0 +1,17 @@ +// Example 7.4
+format('v',6)
+clc;
+clear;
+close;
+// given data
+R_E= 430;// in Ω
+R_L= 100;// in Ω
+R1= 10*10^3;// in Ω
+R2= 10*10^3;// in Ω
+bita= 200;
+r_e= 2.5;// in Ω
+// The load resistance
+r_L= R_E*R_L/(R_E+R_L);// in Ω
+// The power gain
+G= bita*r_L/(r_L+r_e);
+disp(G,"The power gain is : ")
|