summaryrefslogtreecommitdiff
path: root/1223/CH10/EX10.11/Ex10_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH10/EX10.11/Ex10_11.sce')
-rwxr-xr-x1223/CH10/EX10.11/Ex10_11.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1223/CH10/EX10.11/Ex10_11.sce b/1223/CH10/EX10.11/Ex10_11.sce
new file mode 100755
index 000000000..444556b97
--- /dev/null
+++ b/1223/CH10/EX10.11/Ex10_11.sce
@@ -0,0 +1,16 @@
+clear;
+clc;
+//Example 10.11
+Van=120;
+Vap=80;
+Vt=0.026;
+Ico=0.001;
+//Rl=infinity
+Av=-(1/Vt)/(1/Van+1/Vap);
+printf('\nsmall signal open circuit voltage gain=%.2f\n',Av)
+Rl=100;
+Av1=-(1/Vt)/(1/Van+1/Vap+1/Rl);
+printf('\nsmall signal open circuit voltage gain=%.2f\n',Av1)
+Rl=10;
+Av2=-(1/Vt)/(1/Van+1/Vap+1/Rl);
+printf('\nsmall signal open circuit voltage gain=%.2f\n',Av2)