Concept explainers
Find the mesh currents in the circuit of Figure 3.98 using MATLAB.

Answer to Problem 53P
The value of currents
Explanation of Solution
Given data:
Refer to Figure 3.98 in the textbook for mesh analysis.
Calculation:
From Figure 3.98, write the expression for current
Apply Kirchhoff’s voltage law to loop 1 with current
Apply Kirchhoff’s voltage law to loop 2 with current
Substitute equation (1) in (3).
Apply Kirchhoff’s voltage law to loop 3 with current
Substitute equation (1) to (5).
Apply Kirchhoff’s voltage law to loop 5 with current
Substitute equation (1) to (7).
MATLAB code:
Write the MATLAB code to solve the equations (2), (4), (6), and (8) as follows in MATLAB code editor, and save it as “node353”, and then run the code. The result will shows in main command window.
syms i1 i2 i3 i5
eq1 = 4*i1 -3*i2 -1*i3 +0*i5 == 0.012;
eq2 = -3*i1 +7*i2 +0*i3 +0*i5 == -0.012;
eq3 = -1*i1 +0*i2 +15*i3 -6*i5 == -0.024;
eq4 = 0*i1 +0*i2 -3*i3 +8*i5 == -0.012;
sol = solve([eq1, eq2, eq3, eq4], [i1, i2, i3, i5]);
val1 = sol.i1;
val2 = sol.i2;
val3 = sol.i3;
val4 = -0.003;
val5 = sol.i5;
i1= sprintf('%.7f A',val1)
i2= sprintf('%.7f A',val2)
i3= sprintf('%.7f A',val3)
i4= sprintf('%.3f A',val4)
i5= sprintf('%.7f A',val5)
The output in command window:
i1 = '0.0016196 A'
i2 = '-0.0010202 A'
i3 = '-0.0024612 A'
i4 = '-0.003 A'
i5 = '-0.0024230 A'
Convert obtained value of currents in milli amperes (mA).
Conclusion:
Therefore, the value of currents
Want to see more full solutions like this?
Chapter 3 Solutions
EE 98: Fundamentals of Electrical Circuits - With Connect Access
- Correlation of experimental data for the average heat transfer coefficient for turbulent flow through tubes is given by NUD =hD/k=0.023 (Rep) 0.8 (Pr) 1/3 The Reynolds number, Re₁ = πD/v, is based on the tube diameter D, the average flow velocity ū and the kinematic viscosity v. Consider the flow of air and of water through tubes of identical size. Assume that the average velocity is the same for both fluids. If the average temperature for both fluids is 80°C, determine the ratio of the heat transfer coefficient of water to that of air.arrow_forwardDon't use ai to answer I will report you answerarrow_forwardDon't use ai to answer I will report you answerarrow_forward
- help on questions about singals and systems?arrow_forwardDon't use ai to answer I will report you answerarrow_forwardI have this code in matlab: clc; n=0:8; %20 harmonic indices jn=besselj(n,5);% 5 is the modulation index jnn=abs(jn); jn1 = 20.*log10(jnn*0.5); fc=1e+6; %carrier frequency fm=10e+3; %message frequency frq1 = (fc+n.*fm)*1e-06; frq2 = (fc-n.*fm)*1e-06; frequencies = [frq2,frq1]; %Lower and upper side magnitudes = [jn1,jn1]; %Magnitude of Jn corresponding to the frequencies % Plot figure; stem(frequencies, magnitudes, 'filled'); % Stem plot for spectrum visualization title('Magnitude Spectrum of FM Signal'); xlabel('Frequency (MHz)'); ylabel('Magnitude'); grid on; I am getting the lines opposite (the line should be traced from bottom to top not from top to bottom) as shown in the picture. How can I fix this?arrow_forward
- Don't use ai to answer I will report you answerarrow_forward.I need in the way of spaces and not in shortened ways A 3-phase, 50 Hz, 132 kV overhead line transpose system of bundle conductors .a radius of conductor is 0.5 cm Calculate the total inductance of the line.) bi 4m C1 al 4m m birarrow_forward1B) Suppose the flip-flops are 74F74 devices and the AND gates are 74F08 devices. Let maxtpd,D=9ns, maxtsu,D=3ns, and maxtpd,AND=6ns. What is the maximum clock frequency at which the circuit can operate reliably? 2) Compare serial transmission and parallel transmission and discuss their advantages and disadvantages. 3) Explain briefly how the slave can protect itself from being overwhelmed by the master in I2 4) A hypothetical logic family has the following specifications. VOH=4.6V VIH=4.0V VOL=0.5V VIL=1.0V IOH=-1mA IIH=50μA IOL=8mA IIL=-0.6mA (4a) What are the noise margins? (4b) What is the fan-out capability? That is, suppose all gates are chosen from the same logic family, how many gates can an output gate reliably drive? 5) Explain briefly why USB device address and…arrow_forward
- can you drow set Vi=0, set Vo=0 B. For the FET amplifier circuit of Fig.(2), determine the topolgy, and the gain without and with feedback with the following circuit values: rao, and g 4mS Is Voo 60 K www 100 K 0.25 K IK Fig.(2) 20 K ww Voarrow_forwardcan you draw acircuit For the feedback circuit shown below VDD Set Vico set Vo=0 Is 100 K 26 K 2 K Q1 76 K IF 60 K 40 K Voarrow_forwardThe previous solutions are incorrect and unclear. If possible, please solve the question on the images .clearly. Thank you A 3-phase, 50 Hz, 132 kV overhead line transpose system of bundle conductors .a radius of conductor is 0.5 cm. Calculate the total inductance of the line. bi 4m m im birarrow_forward
- Introductory Circuit Analysis (13th Edition)Electrical EngineeringISBN:9780133923605Author:Robert L. BoylestadPublisher:PEARSONDelmar's Standard Textbook Of ElectricityElectrical EngineeringISBN:9781337900348Author:Stephen L. HermanPublisher:Cengage LearningProgrammable Logic ControllersElectrical EngineeringISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
- Fundamentals of Electric CircuitsElectrical EngineeringISBN:9780078028229Author:Charles K Alexander, Matthew SadikuPublisher:McGraw-Hill EducationElectric Circuits. (11th Edition)Electrical EngineeringISBN:9780134746968Author:James W. Nilsson, Susan RiedelPublisher:PEARSONEngineering ElectromagneticsElectrical EngineeringISBN:9780078028151Author:Hayt, William H. (william Hart), Jr, BUCK, John A.Publisher:Mcgraw-hill Education,





