blob: fe0ccee1b9b44530ad6fc9c420ea0e57db8eaf7c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Example 2.16
// Thevenin Network via Source Conversions
// After Applying all Source conversion,Series & Parallel Reductions
v_oc=-6;// Open Circuit Voltage , from figure 2.35(b)
R_t=10;// Thevenin Resistance
R_l=2; // Load Resistance
i=6/(10+2); // Ohm's Law
disp(v_oc,"Open Circuit Voltage of Thevenin Network(in Volts)=")
disp(R_t,"Thevenin Resistance(in Ohms)=")
disp(i,"Load Current(in Amps)=")
|