diff options
Diffstat (limited to '3630/CH14/EX14.10/Ex14_10.sce')
-rw-r--r-- | 3630/CH14/EX14.10/Ex14_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3630/CH14/EX14.10/Ex14_10.sce b/3630/CH14/EX14.10/Ex14_10.sce new file mode 100644 index 000000000..8c7b83e05 --- /dev/null +++ b/3630/CH14/EX14.10/Ex14_10.sce @@ -0,0 +1,12 @@ +clc;
+R1=18000;
+R2=4700;
+Hie=600;
+Req=(R1*R2)/(R1+R2);
+Rth=(Req*Hie)/(Req+Hie);
+hfc=201;
+re=22;
+Rout=re+(Rth/hfc);
+Ce=0.00001;
+f1E=1/(2*3.14*Rout*Ce);
+disp('Hz',f1E,"f1E=")//The answers vary due to round off error
|