SlideShare a Scribd company logo
1 of 26
Download to read offline
EENG223 Mesh Analysıs
1
Mesh Analysis
Dr. M. K. Uyguroglu
EENG223 Mesh Analysıs
2
Mesh Analysis
z Nodal analysis was developed by applying
KCL at each non-reference node.
z Mesh analysis is developed by applying KVL
around meshes/loops in the circuit.
z Mesh analysis results in a system of linear
equations which must be solved for unknown
currents.
EENG223 Mesh Analysıs
3
Mesh Analysis
z quantity of interest is current
z a mesh is a loop that does not contain
another loop within it
z work for planar circuit only
planar circuit -> no branch passes over or
under other branch
z M-meshes -> assign clockwise current for
each mesh
z apply KVL around each mesh
EENG223 Mesh Analysıs
4
Planar Circuit
Nonplanar Circuit
EENG223 Mesh Analysıs
5
Steps of Mesh Analysis
1. Identify meshes.
2. Assign a current to each mesh.
3. Apply KVL around each loop to get an
equation in terms of the loop currents.
4. Solve the resulting system of linear
equations.
EENG223 Mesh Analysıs
6
Identifying the Meshes
Mesh 2
1kΩ
1kΩ
1kΩ
V1 V2
Mesh 1
+
–
+
–
EENG223 Mesh Analysıs
7
Steps of Mesh Analysis
1. Identify mesh (loops).
2. Assign a current to each mesh.
3. Apply KVL around each loop to get an
equation in terms of the loop currents.
4. Solve the resulting system of linear
equations.
EENG223 Mesh Analysıs
8
Assigning Mesh Currents
1kΩ
1kΩ
1kΩ
V1 V2
I1 I2
+
–
+
–
EENG223 Mesh Analysıs
9
Steps of Mesh Analysis
1. Identify mesh (loops).
2. Assign a current to each mesh.
3. Apply KVL around each loop to get an
equation in terms of the loop currents.
4. Solve the resulting system of linear
equations.
EENG223 Mesh Analysıs
10
Voltages from Mesh Currents
R
I1
+ –
VR
VR = I1 R
R
I1
+ –
VR
I2
VR = (I1 - I2 ) R
EENG223 Mesh Analysıs
11
KVL Around Mesh 1
1kΩ
1kΩ
1kΩ
V1 V2
I1 I2
+
–
+
–
+ -
+
-
-V1 + I1 1kΩ + (I1 - I2) 1kΩ = 0
I1 1kΩ + (I1 - I2) 1kΩ = V1
EENG223 Mesh Analysıs
12
KVL Around Mesh 2
1kΩ
1kΩ
1kΩ
V1 V2
I1 I2
+
–
+
–
-
-
+
+
(I2 - I1) 1kΩ + I2 1kΩ + V2 = 0
(I2 - I1) 1kΩ + I2 1kΩ = -V2
EENG223 Mesh Analysıs
13
Steps of Mesh Analysis
1. Identify mesh (loops).
2. Assign a current to each mesh.
3. Apply KVL around each loop to get an
equation in terms of the loop currents.
4. Solve the resulting system of linear
equations.
EENG223 Mesh Analysıs
14
Matrix Notation
z The two equations can be combined into a
single matrix/vector equation.






−
=












Ω
+
Ω
Ω
−
Ω
−
Ω
+
Ω
2
1
2
1
k
1
k
1
k
1
k
1
k
1
k
1
V
V
I
I
EENG223 Mesh Analysıs
15
Solving the Equations
Let: V1 = 7V and V2 = 4V
Results:
I1 = 3.33 mA
I2 = -0.33 mA
Finally
Vout = (I1 - I2) 1kΩ = 3.66V
EENG223 Mesh Analysıs
16
Another Example
1kΩ
2kΩ
2kΩ
12V 4mA
2mA
I0
+
–
EENG223 Mesh Analysıs
17
1. Identify Meshes
Mesh 2
Mesh 3
Mesh 1
1kΩ
2kΩ
2kΩ
12V 4mA
2mA
I0
+
–
EENG223 Mesh Analysıs
18
2. Assign Mesh Currents
I1 I2
I3
1kΩ
2kΩ
2kΩ
12V 4mA
2mA
I0
+
–
EENG223 Mesh Analysıs
19
Current Sources
z The current sources in this circuit will have
whatever voltage is necessary to make the
current correct.
z We can’t use KVL around the loop because
we don’t know the voltage.
z What to do?
EEE 223 Mesh Analysıs
20
Current Sources
z The 4mA current source sets I2:
I2 = -4 mA
z The 2mA current source sets a constraint on
I1 and I3:
I1 - I3 = 2 mA
z We have two equations and three unknowns.
Where is the third equation?
EENG223 Mesh Analysıs
21
1kΩ
2kΩ
2kΩ
12V 4mA
2mA
I0
I1 I2
I3
The
Supermesh
surrounds
this source!
The
Supermesh
does not
include this
source!
+
–
EENG223 Mesh Analysıs
22
KVL Around the Supermesh
-12V + I3 2kΩ + (I3 - I2)1kΩ + (I1 - I2)2kΩ = 0
I3 2kΩ + (I3 - I2)1kΩ + (I1 - I2)2kΩ = 12V
EENG223 Mesh Analysı s
23
Matrix Notation
z The three equations can be combined into a
single matrix/vector equation.









−
=




















Ω
+
Ω
Ω
−
Ω
−
Ω
−
V
12
mA
2
mA
4
1k
2k
2k
1k
2k
1
0
1
0
1
0
3
2
1
I
I
I
EENG223 Mesh Analysıs
24
Solve Using MATLAB
>> A = [0 1 0; 1 0 -1;
2e3 -1e3-2e3 2e3+1e3];
>> v = [-4e-3; 2e-3; 12];
>> i = inv(A)*v
i = 0.0012
-0.0040
-0.0008
EENG223 Mesh Analysıs
25
Solution
I1 = 1.2 mA
I2 = -4 mA
I3 = -0.8 mA
I0 = I1 - I2 = 5.2 mA
EENG223 Mesh Analysıs
26
Class Example

More Related Content

Similar to Mesh Analysis.pdf

BEE301 - circuit theory - NT.pptx
BEE301 - circuit theory - NT.pptxBEE301 - circuit theory - NT.pptx
BEE301 - circuit theory - NT.pptxShalabhMishra10
 
Basic electric technology
Basic electric technologyBasic electric technology
Basic electric technologySatish Kansal
 
Nodal Analysis.pptx
 Nodal Analysis.pptx Nodal Analysis.pptx
Nodal Analysis.pptxKisorS1
 
Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01Abrar Mirza
 
Mesh analysis and Nodal Analysis
Mesh analysis and Nodal AnalysisMesh analysis and Nodal Analysis
Mesh analysis and Nodal AnalysisKomal Kotak
 
Circuit laws & network theorems
Circuit laws  & network theoremsCircuit laws  & network theorems
Circuit laws & network theoremsHimanshu Batra
 
Network theorems for electrical engineering
Network theorems for electrical engineeringNetwork theorems for electrical engineering
Network theorems for electrical engineeringKamil Hussain
 
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABsanjay kumar pediredla
 
my in worker aaaa
my in worker aaaamy in worker aaaa
my in worker aaaaOmkar Singh
 
L 04(gdr)(et) ((ee)nptel)
L 04(gdr)(et) ((ee)nptel)L 04(gdr)(et) ((ee)nptel)
L 04(gdr)(et) ((ee)nptel)Pradeep Godara
 
Electric Circuit - Lecture 04
Electric Circuit - Lecture 04Electric Circuit - Lecture 04
Electric Circuit - Lecture 04Hassaan Rahman
 
Kirchoff's Law
Kirchoff's LawKirchoff's Law
Kirchoff's LawWee Ping
 
Nodal & Mesh Analysis
Nodal & Mesh AnalysisNodal & Mesh Analysis
Nodal & Mesh AnalysisQuaziRossi
 
node analysis.pptx
node analysis.pptxnode analysis.pptx
node analysis.pptxARCHISTUDIO1
 

Similar to Mesh Analysis.pdf (20)

BEE301 - circuit theory - NT.pptx
BEE301 - circuit theory - NT.pptxBEE301 - circuit theory - NT.pptx
BEE301 - circuit theory - NT.pptx
 
mesh analysis
mesh analysismesh analysis
mesh analysis
 
Basic electric technology
Basic electric technologyBasic electric technology
Basic electric technology
 
Nodal Analysis.pptx
 Nodal Analysis.pptx Nodal Analysis.pptx
Nodal Analysis.pptx
 
Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01
 
Mesh analysis and Nodal Analysis
Mesh analysis and Nodal AnalysisMesh analysis and Nodal Analysis
Mesh analysis and Nodal Analysis
 
Circuit laws & network theorems
Circuit laws  & network theoremsCircuit laws  & network theorems
Circuit laws & network theorems
 
Network theorems for electrical engineering
Network theorems for electrical engineeringNetwork theorems for electrical engineering
Network theorems for electrical engineering
 
Circuit_Analysis.pdf
Circuit_Analysis.pdfCircuit_Analysis.pdf
Circuit_Analysis.pdf
 
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
 
my in worker aaaa
my in worker aaaamy in worker aaaa
my in worker aaaa
 
L 04(gdr)(et) ((ee)nptel)
L 04(gdr)(et) ((ee)nptel)L 04(gdr)(et) ((ee)nptel)
L 04(gdr)(et) ((ee)nptel)
 
Electric Circuit - Lecture 04
Electric Circuit - Lecture 04Electric Circuit - Lecture 04
Electric Circuit - Lecture 04
 
pp.pptx
pp.pptxpp.pptx
pp.pptx
 
Lec 07.pdf
Lec 07.pdfLec 07.pdf
Lec 07.pdf
 
Kirchoff's Law
Kirchoff's LawKirchoff's Law
Kirchoff's Law
 
Kirchoff's Law
Kirchoff's LawKirchoff's Law
Kirchoff's Law
 
chap3.ppt
chap3.pptchap3.ppt
chap3.ppt
 
Nodal & Mesh Analysis
Nodal & Mesh AnalysisNodal & Mesh Analysis
Nodal & Mesh Analysis
 
node analysis.pptx
node analysis.pptxnode analysis.pptx
node analysis.pptx
 

Recently uploaded

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 

Recently uploaded (20)

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 

Mesh Analysis.pdf

  • 1. EENG223 Mesh Analysıs 1 Mesh Analysis Dr. M. K. Uyguroglu
  • 2. EENG223 Mesh Analysıs 2 Mesh Analysis z Nodal analysis was developed by applying KCL at each non-reference node. z Mesh analysis is developed by applying KVL around meshes/loops in the circuit. z Mesh analysis results in a system of linear equations which must be solved for unknown currents.
  • 3. EENG223 Mesh Analysıs 3 Mesh Analysis z quantity of interest is current z a mesh is a loop that does not contain another loop within it z work for planar circuit only planar circuit -> no branch passes over or under other branch z M-meshes -> assign clockwise current for each mesh z apply KVL around each mesh
  • 4. EENG223 Mesh Analysıs 4 Planar Circuit Nonplanar Circuit
  • 5. EENG223 Mesh Analysıs 5 Steps of Mesh Analysis 1. Identify meshes. 2. Assign a current to each mesh. 3. Apply KVL around each loop to get an equation in terms of the loop currents. 4. Solve the resulting system of linear equations.
  • 6. EENG223 Mesh Analysıs 6 Identifying the Meshes Mesh 2 1kΩ 1kΩ 1kΩ V1 V2 Mesh 1 + – + –
  • 7. EENG223 Mesh Analysıs 7 Steps of Mesh Analysis 1. Identify mesh (loops). 2. Assign a current to each mesh. 3. Apply KVL around each loop to get an equation in terms of the loop currents. 4. Solve the resulting system of linear equations.
  • 8. EENG223 Mesh Analysıs 8 Assigning Mesh Currents 1kΩ 1kΩ 1kΩ V1 V2 I1 I2 + – + –
  • 9. EENG223 Mesh Analysıs 9 Steps of Mesh Analysis 1. Identify mesh (loops). 2. Assign a current to each mesh. 3. Apply KVL around each loop to get an equation in terms of the loop currents. 4. Solve the resulting system of linear equations.
  • 10. EENG223 Mesh Analysıs 10 Voltages from Mesh Currents R I1 + – VR VR = I1 R R I1 + – VR I2 VR = (I1 - I2 ) R
  • 11. EENG223 Mesh Analysıs 11 KVL Around Mesh 1 1kΩ 1kΩ 1kΩ V1 V2 I1 I2 + – + – + - + - -V1 + I1 1kΩ + (I1 - I2) 1kΩ = 0 I1 1kΩ + (I1 - I2) 1kΩ = V1
  • 12. EENG223 Mesh Analysıs 12 KVL Around Mesh 2 1kΩ 1kΩ 1kΩ V1 V2 I1 I2 + – + – - - + + (I2 - I1) 1kΩ + I2 1kΩ + V2 = 0 (I2 - I1) 1kΩ + I2 1kΩ = -V2
  • 13. EENG223 Mesh Analysıs 13 Steps of Mesh Analysis 1. Identify mesh (loops). 2. Assign a current to each mesh. 3. Apply KVL around each loop to get an equation in terms of the loop currents. 4. Solve the resulting system of linear equations.
  • 14. EENG223 Mesh Analysıs 14 Matrix Notation z The two equations can be combined into a single matrix/vector equation.       − =             Ω + Ω Ω − Ω − Ω + Ω 2 1 2 1 k 1 k 1 k 1 k 1 k 1 k 1 V V I I
  • 15. EENG223 Mesh Analysıs 15 Solving the Equations Let: V1 = 7V and V2 = 4V Results: I1 = 3.33 mA I2 = -0.33 mA Finally Vout = (I1 - I2) 1kΩ = 3.66V
  • 16. EENG223 Mesh Analysıs 16 Another Example 1kΩ 2kΩ 2kΩ 12V 4mA 2mA I0 + –
  • 17. EENG223 Mesh Analysıs 17 1. Identify Meshes Mesh 2 Mesh 3 Mesh 1 1kΩ 2kΩ 2kΩ 12V 4mA 2mA I0 + –
  • 18. EENG223 Mesh Analysıs 18 2. Assign Mesh Currents I1 I2 I3 1kΩ 2kΩ 2kΩ 12V 4mA 2mA I0 + –
  • 19. EENG223 Mesh Analysıs 19 Current Sources z The current sources in this circuit will have whatever voltage is necessary to make the current correct. z We can’t use KVL around the loop because we don’t know the voltage. z What to do?
  • 20. EEE 223 Mesh Analysıs 20 Current Sources z The 4mA current source sets I2: I2 = -4 mA z The 2mA current source sets a constraint on I1 and I3: I1 - I3 = 2 mA z We have two equations and three unknowns. Where is the third equation?
  • 21. EENG223 Mesh Analysıs 21 1kΩ 2kΩ 2kΩ 12V 4mA 2mA I0 I1 I2 I3 The Supermesh surrounds this source! The Supermesh does not include this source! + –
  • 22. EENG223 Mesh Analysıs 22 KVL Around the Supermesh -12V + I3 2kΩ + (I3 - I2)1kΩ + (I1 - I2)2kΩ = 0 I3 2kΩ + (I3 - I2)1kΩ + (I1 - I2)2kΩ = 12V
  • 23. EENG223 Mesh Analysı s 23 Matrix Notation z The three equations can be combined into a single matrix/vector equation.          − =                     Ω + Ω Ω − Ω − Ω − V 12 mA 2 mA 4 1k 2k 2k 1k 2k 1 0 1 0 1 0 3 2 1 I I I
  • 24. EENG223 Mesh Analysıs 24 Solve Using MATLAB >> A = [0 1 0; 1 0 -1; 2e3 -1e3-2e3 2e3+1e3]; >> v = [-4e-3; 2e-3; 12]; >> i = inv(A)*v i = 0.0012 -0.0040 -0.0008
  • 25. EENG223 Mesh Analysıs 25 Solution I1 = 1.2 mA I2 = -4 mA I3 = -0.8 mA I0 = I1 - I2 = 5.2 mA