
Concept explainers
Write a set of mesh equations for the circuit in Fig. 3.110. Use MATLAB to determine the mesh currents.
Figure 3.110
For Prob. 3.66.

Write the mesh current equations, and find the mesh currents in the circuit of Figure 3.110 using mesh analysis and MATLAB.
Answer to Problem 66P
The matrix form of mesh current equations is
Explanation of Solution
Given data:
Refer Figure 3.110 in the textbook for mesh analysis.
Calculation:
Apply Kirchhoff’s voltage law to loop 1 with current
Apply Kirchhoff’s voltage law to loop 2 with current
Apply Kirchhoff’s voltage law to loop 3 with current
Apply Kirchhoff’s voltage law to loop 4 with current
Apply Kirchhoff’s voltage law to loop 5 with current
Represent the equations (1), (2), (3), (4), and (5) in matrix form.
MATLAB code:
Write the MATLAB code to solve the equations (1), (2), (3), (4), and (5) as follows in MATLAB code editor, and save it as “node366”, and then run the code. The result will shows in main command window.
syms i1 i2 i3 i4 i5
eq1 = 30*i1 -4*i2 -6*i3 -2*i4 +0*i5 == -12;
eq2 = -4*i1 +30*i2 +0*i3 -2*i4 -6*i5 == -16;
eq3 = -6*i1 +0*i2 +18*i3 -4*i4 +0*i5 == 30;
eq4 = -2*i1 -2*i2 -4*i3 +12*i4 -4*i5 == 0;
eq5 = 0*i1 -6*i2 +0*i3 -4*i4 +18*i5 == -32;
sol = solve([eq1, eq2, eq3, eq4, eq5], [i1, i2, i3, i4, i5]);
val1 = sol.i1;
val2 = sol.i2;
val3 = sol.i3;
val4 = sol.i4;
val5 = sol.i5;
i1= sprintf('%.4f A',val1)
i2= sprintf('%.4f A',val2)
i3= sprintf('%.4f A',val3)
i4= sprintf('%.4f A',val4)
i5= sprintf('%.4f A',val5)
The output in command window:
i1 = '-0.2779 A'
i2 = '-1.0488 A'
i3 = '1.4682 A'
i4 = '-0.4761 A'
i5 = '-2.2332 A'
Conclusion:
Therefore, the matrix form of mesh current equations is,
And the value of currents
Want to see more full solutions like this?
Chapter 3 Solutions
Fundamentals of Electric Circuits
- Problem 1- find the root locus of the following transfer functions by Matlab Hint copy the root locus figures you find in Matlab and paste all four on a word document, create a PdF from the Word file and upload on canvas): 5 1. H(s) = 2s+1 2. H(s): = 2 100 s²+10s+100 1000 3. H(s) = (s+5)(s²+68+25) 10000 4. H(s) = (s²+48+16) (s²+68+25)arrow_forwardHow can i solve ot with phasor and get i1’ angle and i1 anglearrow_forwardHow to solve itarrow_forward
- Can anyone explain it to mearrow_forwardDiscuss how flip-flops may be used for dividing the frequency of a periodic wave.arrow_forwardQ1. 6/4 GHz TDMA mobile communication system with gain of transmitted antenna Station of 1000, sum of additional losses is 5 dB, Transponder input backoff Is 2 dB, Uplink energy per bit to noise ratio is 3, Transmission bit rate 8kb/sec Margin for intersymbol distortion is 2, the bandwidth of channel is 9.6MHz, Uplink (G/T.) is 8.Calculate Uplink power for this systemarrow_forward
- Delmar's Standard Textbook Of ElectricityElectrical EngineeringISBN:9781337900348Author:Stephen L. HermanPublisher:Cengage LearningPower System Analysis and Design (MindTap Course ...Electrical EngineeringISBN:9781305632134Author:J. Duncan Glover, Thomas Overbye, Mulukutla S. SarmaPublisher:Cengage LearningElectricity for Refrigeration, Heating, and Air C...Mechanical EngineeringISBN:9781337399128Author:Russell E. SmithPublisher:Cengage Learning
- EBK ELECTRICAL WIRING RESIDENTIALElectrical EngineeringISBN:9781337516549Author:SimmonsPublisher:CENGAGE LEARNING - CONSIGNMENT




