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/CH14/EX14.18/Ex14_18.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3630/CH14/EX14.18/Ex14_18.sce (limited to '3630/CH14/EX14.18/Ex14_18.sce') diff --git a/3630/CH14/EX14.18/Ex14_18.sce b/3630/CH14/EX14.18/Ex14_18.sce new file mode 100644 index 000000000..1a5c00a43 --- /dev/null +++ b/3630/CH14/EX14.18/Ex14_18.sce @@ -0,0 +1,14 @@ +clc; +//high input impedance of JFET +R1=1500000; +R2=650000; +Rin=(R1*R2)/(R1+R2); +Rs=1000; +Cc1=0.00000001; +f1G=1/(2*3.14*(Rs+Rin)*Cc1); +Rd=5000; +RL=10000; +Cc2=0.0000001; +f1D=1/(2*3.14*(Rd+RL)*Cc2); +disp('Hz',f1G,"f1G=")//The answers vary due to round off error +disp('Hz',f1D,"f1D=")//The answers vary due to round off error -- cgit