diff options
Diffstat (limited to '1430/CH2/EX2.13')
-rw-r--r-- | 1430/CH2/EX2.13/exa2_13.sce | 17 | ||||
-rw-r--r-- | 1430/CH2/EX2.13/exa2_13.txt | 12 |
2 files changed, 29 insertions, 0 deletions
diff --git a/1430/CH2/EX2.13/exa2_13.sce b/1430/CH2/EX2.13/exa2_13.sce new file mode 100644 index 000000000..3b9dc8676 --- /dev/null +++ b/1430/CH2/EX2.13/exa2_13.sce @@ -0,0 +1,17 @@ +// Example 2.13
+// Equivalent Source Networks
+//From Figure 2.28(b)
+v_oc= (20*50)/(5+20);// Open Circuit Voltage =======> equation 1
+//From Figure 2.28(c)
+i_sc=50/5; // Short Circuit Current ========> equation 2
+// From equation 1 & 2
+R_t=v_oc/i_sc;// Thevenin Resistance
+v=24;// Voltage across R_l_1
+// From figure 2.28(d)
+// Using Voltage Divider, (R_l_1*40)/(4+R_l_1)=24.
+R_l_1=6;
+//From figure 2.28(e)
+// Using Current Divider , (4*10)/(4+R_l_2)=8.
+R_l_2=1;
+disp(R_l_1,"Design Value of R_1 when v=24 (in Ohms)=")
+disp(R_l_2,"Design Value of R_1 when i=8(in Ohms)=")
diff --git a/1430/CH2/EX2.13/exa2_13.txt b/1430/CH2/EX2.13/exa2_13.txt new file mode 100644 index 000000000..3cbba4e26 --- /dev/null +++ b/1430/CH2/EX2.13/exa2_13.txt @@ -0,0 +1,12 @@ +
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 2\exa2.13.sce', -1)
+
+ Design Value of R_1 when v=24 (in Ohms)=
+
+ 6.
+
+ Design Value of R_1 when i=8(in Ohms)=
+
+ 1.
+
|