diff options
Diffstat (limited to '3630/CH10/EX10.3/Ex10_3.sce')
-rw-r--r-- | 3630/CH10/EX10.3/Ex10_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH10/EX10.3/Ex10_3.sce b/3630/CH10/EX10.3/Ex10_3.sce new file mode 100644 index 000000000..9378b2c92 --- /dev/null +++ b/3630/CH10/EX10.3/Ex10_3.sce @@ -0,0 +1,10 @@ +clc;
+Re=2000; //Ohm
+RL=5000; //Ohm
+rE=(Re*RL)/(Re+RL); //Ohm
+Ie=0.031; //Ampere
+re=0.025/Ie; //Ohm
+Av=rE/(rE+re);
+disp(' ',Av,"Av=");//The answers vary due to round off error
+
+
|