diff options
Diffstat (limited to '3630/CH9/EX9.17/Ex9_17.sce')
-rw-r--r-- | 3630/CH9/EX9.17/Ex9_17.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3630/CH9/EX9.17/Ex9_17.sce b/3630/CH9/EX9.17/Ex9_17.sce new file mode 100644 index 000000000..788bee8be --- /dev/null +++ b/3630/CH9/EX9.17/Ex9_17.sce @@ -0,0 +1,15 @@ +clc;
+Rc=8000; //Ohm
+Zin1=1330; //Ohm
+rc1=(Rc*Zin1)/(Rc+Zin1);//Ohm
+re=25; //Ohm
+Zin2=1730; //Ohm
+rc2=(Rc*Zin2)/(Rc+Zin2);//Ohm
+re=25;//Ohm
+Av1=rc1/re;
+Av2=rc2/re;
+disp(' ',Av1,"Av1=");//The answers vary due to round off error
+disp(' ',Av2,"Av2=");//The answers vary due to round off error
+
+
+
|