summaryrefslogtreecommitdiff
path: root/2330/CH11/EX11.4
diff options
context:
space:
mode:
Diffstat (limited to '2330/CH11/EX11.4')
-rwxr-xr-x2330/CH11/EX11.4/ex11_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2330/CH11/EX11.4/ex11_4.sce b/2330/CH11/EX11.4/ex11_4.sce
new file mode 100755
index 000000000..450fcfb12
--- /dev/null
+++ b/2330/CH11/EX11.4/ex11_4.sce
@@ -0,0 +1,14 @@
+// Example 11.4
+format('v',5)
+clc;
+clear;
+close;
+// given data
+h_fe= 120;// unit less
+h_ie= 3.5*10^3;//in Ω
+r_L= 2*10^3;// in Ω
+h_oe= 8.5*10^-6;// in S
+h_re= 1.3*10^-4;// unit less
+// The voltage gain
+A= h_fe*r_L/(h_ie*(1+h_oe*r_L)-h_re*h_fe*r_L)
+disp(A,"The voltage gain is : ")