Pankaj(ADS)

Featured post

Python Codes for Electric Potential

Python Codes for Electric Potential Code:- import numpy as np import math import matplotlib.pyplot as plot ''' Calculating Elect...

Tuesday 23 June 2020

Mesh Analysis

0 comments

Mesh Analysis

In Mesh analysis, we will consider the currents flowing through each mesh. Hence, Mesh analysis is also called as Mesh-current method.

A branch is a path that joins two nodes and it contains a circuit element. If a branch belongs to only one mesh, then the branch current will be equal to mesh current.

If a branch is common to two meshes, then the branch current will be equal to the sum (or difference) of two mesh currents, when they are in same (or opposite) direction.

Procedure of Mesh Analysis

Follow these steps while solving any electrical network or circuit using Mesh analysis.

Step 1 − Identify the meshes and label the mesh currents in either clockwise or anti-clockwise direction.

Step 2 − Observe the amount of current that flows through each element in terms of mesh currents.

Step 3 − Write mesh equations to all meshes. Mesh equation is obtained by applying KVL first and then Ohm’s law.

Step 4 − Solve the mesh equations obtained in Step 3 in order to get the mesh currents. Now, we can find the current flowing through any element and the voltage across any element that is present in the given network by using mesh currents.

Example:-

Mesh1:-

10 = 10I1 + 40(I1-I2)                     ----------------- (i)

Mesh2:-

-20 = -20I2 + 40(I2-I1)                   ---------------- (ii)

Or reducing equation, the above equation becomes

-20 = 20I2 - 40I1

10 = -40I2 + 50I1

Hence by calculating I1 = 1A and I2 = 1A


No comments:

Post a Comment