SlideShare ist ein Scribd-Unternehmen logo
1 von 26
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Ähnlich wie 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
 

Ähnlich wie 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
 

Kürzlich hochgeladen

priority interrupt computer organization
priority interrupt computer organizationpriority interrupt computer organization
priority interrupt computer organizationchnrketan
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Romil Mishra
 
AntColonyOptimizationManetNetworkAODV.pptx
AntColonyOptimizationManetNetworkAODV.pptxAntColonyOptimizationManetNetworkAODV.pptx
AntColonyOptimizationManetNetworkAODV.pptxLina Kadam
 
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfComprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfalene1
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosVictor Morales
 
Secure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech LabsSecure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech Labsamber724300
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESkarthi keyan
 
Python Programming for basic beginners.pptx
Python Programming for basic beginners.pptxPython Programming for basic beginners.pptx
Python Programming for basic beginners.pptxmohitesoham12
 
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMS
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMSHigh Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMS
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMSsandhya757531
 
A brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProA brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProRay Yuan Liu
 
Prach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism CommunityPrach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism Communityprachaibot
 
Forming section troubleshooting checklist for improving wire life (1).ppt
Forming section troubleshooting checklist for improving wire life (1).pptForming section troubleshooting checklist for improving wire life (1).ppt
Forming section troubleshooting checklist for improving wire life (1).pptNoman khan
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork
 
Detection&Tracking - Thermal imaging object detection and tracking
Detection&Tracking - Thermal imaging object detection and trackingDetection&Tracking - Thermal imaging object detection and tracking
Detection&Tracking - Thermal imaging object detection and trackinghadarpinhas1
 
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxTriangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxRomil Mishra
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.elesangwon
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTSneha Padhiar
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfBalamuruganV28
 

Kürzlich hochgeladen (20)

priority interrupt computer organization
priority interrupt computer organizationpriority interrupt computer organization
priority interrupt computer organization
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________
 
AntColonyOptimizationManetNetworkAODV.pptx
AntColonyOptimizationManetNetworkAODV.pptxAntColonyOptimizationManetNetworkAODV.pptx
AntColonyOptimizationManetNetworkAODV.pptx
 
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfComprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitos
 
Secure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech LabsSecure Key Crypto - Tech Paper JET Tech Labs
Secure Key Crypto - Tech Paper JET Tech Labs
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
 
Python Programming for basic beginners.pptx
Python Programming for basic beginners.pptxPython Programming for basic beginners.pptx
Python Programming for basic beginners.pptx
 
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMS
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMSHigh Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMS
High Voltage Engineering- OVER VOLTAGES IN ELECTRICAL POWER SYSTEMS
 
A brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision ProA brief look at visionOS - How to develop app on Apple's Vision Pro
A brief look at visionOS - How to develop app on Apple's Vision Pro
 
Prach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism CommunityPrach: A Feature-Rich Platform Empowering the Autism Community
Prach: A Feature-Rich Platform Empowering the Autism Community
 
Forming section troubleshooting checklist for improving wire life (1).ppt
Forming section troubleshooting checklist for improving wire life (1).pptForming section troubleshooting checklist for improving wire life (1).ppt
Forming section troubleshooting checklist for improving wire life (1).ppt
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
Stork Webinar | APM Transformational planning, Tool Selection & Performance T...
 
Detection&Tracking - Thermal imaging object detection and tracking
Detection&Tracking - Thermal imaging object detection and trackingDetection&Tracking - Thermal imaging object detection and tracking
Detection&Tracking - Thermal imaging object detection and tracking
 
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxTriangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
 
Versatile Engineering Construction Firms
Versatile Engineering Construction FirmsVersatile Engineering Construction Firms
Versatile Engineering Construction Firms
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdf
 

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