SlideShare a Scribd company logo
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.pptx
ShalabhMishra10
 
Basic electric technology
Basic electric technologyBasic electric technology
Basic electric technology
Satish Kansal
 
Nodal Analysis.pptx
 Nodal Analysis.pptx Nodal Analysis.pptx
Nodal Analysis.pptx
KisorS1
 
Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01Circuitlaws i-120122051920-phpapp01
Circuitlaws i-120122051920-phpapp01
Abrar Mirza
 
Mesh analysis and Nodal Analysis
Mesh analysis and Nodal AnalysisMesh analysis and Nodal Analysis
Mesh analysis and Nodal Analysis
Komal Kotak
 
Circuit laws & network theorems
Circuit laws  & network theoremsCircuit laws  & network theorems
Circuit laws & network theorems
Himanshu Batra
 
Network theorems for electrical engineering
Network theorems for electrical engineeringNetwork theorems for electrical engineering
Network theorems for electrical engineeringKamil Hussain
 
Circuit_Analysis.pdf
Circuit_Analysis.pdfCircuit_Analysis.pdf
Circuit_Analysis.pdf
UikkattanTkattan
 
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
sanjay kumar pediredla
 
my in worker aaaa
my in worker aaaamy in worker aaaa
my in worker aaaa
Omkar 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
 
pp.pptx
pp.pptxpp.pptx
pp.pptx
muhamadkamal8
 
Lec 07.pdf
Lec 07.pdfLec 07.pdf
Lec 07.pdf
KareemAhmed177136
 
Kirchoff's Law
Kirchoff's LawKirchoff's Law
Kirchoff's Law
Wee Ping
 
Kirchoff's Law
Kirchoff's LawKirchoff's Law
Kirchoff's Law
wee siewping
 
chap3.ppt
chap3.pptchap3.ppt
chap3.ppt
HusamAljabli
 
Nodal & Mesh Analysis
Nodal & Mesh AnalysisNodal & Mesh Analysis
Nodal & Mesh Analysis
QuaziRossi
 
node analysis.pptx
node analysis.pptxnode analysis.pptx
node analysis.pptx
ARCHISTUDIO1
 

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

J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 

Recently uploaded (20)

J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 

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