diff options
Diffstat (limited to '1430/CH3/EX3.1/exa3_1.sce')
-rw-r--r-- | 1430/CH3/EX3.1/exa3_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1430/CH3/EX3.1/exa3_1.sce b/1430/CH3/EX3.1/exa3_1.sce new file mode 100644 index 000000000..302bfc505 --- /dev/null +++ b/1430/CH3/EX3.1/exa3_1.sce @@ -0,0 +1,11 @@ +// Example 3.1
+// Model of a Battery
+v_s=6; // Terminal voltage of Battery when i=0
+R_s= -(6.0-5.8)/(0-0.05);// Slope Resistance from v-i curve
+// Setting v>= 0.9v_s=5.4 V
+// Using Ohm's Law and above mentioned conditions we get
+// 5.4=(6*R_L)/(4+R_L)
+R_L=(5.4*4)/0.6;// Minimum value of Load resistance for treating Battery as a
+// ideal voltage source
+// R_L >=36 Ohms
+disp(R_L,"Minimum value of Load Resistance(in Ohms)=")
|