diff options
Diffstat (limited to '3630/CH9/EX9.13/Ex9_13.sce')
-rw-r--r-- | 3630/CH9/EX9.13/Ex9_13.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3630/CH9/EX9.13/Ex9_13.sce b/3630/CH9/EX9.13/Ex9_13.sce new file mode 100644 index 000000000..7be1ceb71 --- /dev/null +++ b/3630/CH9/EX9.13/Ex9_13.sce @@ -0,0 +1,13 @@ +clc;
+Ve=1.37; //Volt
+Re=910; //Ohm
+re=300; //Ohm
+Ie=Ve/(Re+re);//Ampere
+re1=0.025/Ie; //Ohm
+Rc=1500; //Ohm
+RL=10000; //Ohm
+rc=(Rc*RL)/(Rc+RL);//Ohm
+Av=rc/(re1+re);
+disp(' ',Av,"Av=");//The answers vary due to round off error
+
+
|