From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3630/CH12/EX12.14/Ex12_14.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 3630/CH12/EX12.14/Ex12_14.sce (limited to '3630/CH12/EX12.14/Ex12_14.sce') 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 + -- cgit