summaryrefslogtreecommitdiff
path: root/3630/CH12/EX12.14/Ex12_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH12/EX12.14/Ex12_14.sce')
-rw-r--r--3630/CH12/EX12.14/Ex12_14.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3630/CH12/EX12.14/Ex12_14.sce b/3630/CH12/EX12.14/Ex12_14.sce
new file mode 100644
index 000000000..8b6b2a10c
--- /dev/null
+++ b/3630/CH12/EX12.14/Ex12_14.sce
@@ -0,0 +1,12 @@
+clc;
+Hfe=200;
+re=22.7;
+R1=10000;
+R2=2200;
+Req=(R1*R2)/(R1+R2);
+X1=Hfe*re;
+ZinBJT=(Req*X1)/(Req+X1);
+ZinJFET=(R1*R2)/(R1+R2);
+disp('kOhm',ZinBJT/1000,"ZinBJT=")//The answers vary due to round off error
+disp('kOhm',ZinJFET/1000,"ZinJFET=")//The answers vary due to round off error
+