diff options
Diffstat (limited to '3630/CH14/EX14.8/Ex14_8.sce')
-rw-r--r-- | 3630/CH14/EX14.8/Ex14_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH14/EX14.8/Ex14_8.sce b/3630/CH14/EX14.8/Ex14_8.sce new file mode 100644 index 000000000..43cc44487 --- /dev/null +++ b/3630/CH14/EX14.8/Ex14_8.sce @@ -0,0 +1,10 @@ +clc;
+R1=18000;
+R2=4700;
+Hie=4400;
+Req=(R1*R2)/(R1+R2);
+Rin=(Req*Hie)/(Req+Hie);
+Rs=600;
+C=0.000001;
+fB1=1/(2*3.14*(Rs+Rin)*C);
+disp('Hz',fB1,"fB1=")//The answers vary due to round off error
|