Puneet Varma (Editor)

Mason's gain formula

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Mason's gain formula

Mason's gain formula (MGF) is a method for finding the transfer function of a linear signal-flow graph (SFG). The formula was derived by Samuel Jefferson Mason, whom it is also named after. MGF is an alternate method to finding the transfer function algebraically by labeling each signal, writing down the equation for how that signal depends on other signals, and then solving the multiple equations for the output signal in terms of the input signal. MGF provides a step by step method to obtain the transfer function from a SFG. Often, MGF can be determined by inspection of the SFG. The method can easily handle SFGs with many variables and loops including loops with inner loops. MGF comes up often in the context of control systems and digital filters because control systems and digital filters are often represented by SFGs.

Contents

Formula

The gain formula is as follows:

G = y out y in = k = 1 N G k Δ k Δ   Δ = 1 L i + L i L j L i L j L k + + ( 1 ) m +

where:

  • Δ = the determinant of the graph.
  • yin = input-node variable
  • yout = output-node variable
  • G = complete gain between yin and yout
  • N = total number of forward paths between yin and yout
  • Gk = path gain of the kth forward path between yin and yout
  • Li = loop gain of each closed loop in the system
  • LiLj = product of the loop gains of any two non-touching loops (no common nodes)
  • LiLjLk = product of the loop gains of any three pairwise nontouching loops
  • Δk = the cofactor value of Δ for the kth forward path, with the loops touching the kth forward path removed. *
  • Definitions

  • Path: a continuous set of branches traversed in the direction that they indicate.
  • Forward path: A path from an input node to an output node in which no node is touched more than once.
  • Loop: A path that originates and ends on the same node in which no node is touched more than once.
  • Path gain: the product of the gains of all the branches in the path.
  • Loop gain: the product of the gains of all the branches in the loop.
  • Procedure

    To use this technique,

    1. Make a list of all forward paths, and their gains, and label these Gk.
    2. Make a list of all the loops and their gains, and label these Li (for i loops). Make a list of all pairs of non-touching loops, and the products of their gains (LiLj). Make a list of all pairwise non-touching loops taken three at a time (LiLjLk), then four at a time, and so forth, until there are no more.
    3. Compute the determinant Δ and cofactors Δk.
    4. Apply the formula.

    Circuit containing two-port

    The transfer function from Vin to V2 is desired.

    There is only one forward path:

  • Vin to V1 to I2 to V2 with gain G 1 = y 21 R L
  • There are three loops:

  • V1 to I1 to V1 with gain L 1 = R i n y 11
  • V2 to I2 to V2 with gain L 2 = R L y 22
  • V1 to I2 to V2 to I1 to V1 with gain L 3 = y 21 R L y 12 R i n
  • Δ = 1 ( L 1 + L 2 + L 3 ) + ( L 1 L 2 ) note: L1 and L2 do not touch each other whereas L3 touches both of the other loops. Δ 1 = 1 note: the forward path touches all the loops so all that is left is 1. G = G 1 Δ 1 Δ = y 21 R L 1 + R i n y 11 + R L y 22 y 21 R L y 12 R i n + R i n y 11 R L y 22

    Digital IIR biquad filter

    Digital filters are often diagramed as signal flow graphs.

    There are two loops
  • L 1 = a 1 Z 1
  • L 2 = a 2 Z 2
  • Δ = 1 ( L 1 + L 2 ) Note, the two loops touch so there is no term for their product. There are three forward paths
  • G 0 = b 0
  • G 1 = b 1 Z 1
  • G 2 = b 2 Z 2
  • All the forward paths touch all the loops so Δ 0 = Δ 1 = Δ 2 = 1 G = G 0 Δ 0 + G 1 Δ 1 + G 2 Δ 2 Δ G = b 0 + b 1 Z 1 + b 2 Z 2 1 + a 1 Z 1 + a 2 Z 2

    Servo

    The signal flow graph has six loops. They are:

  • L 0 = β s M
  • L 1 = ( R M + R S ) s L M
  • L 2 = G M K M s 2 L M M
  • L 3 = K C R S s L M
  • L 4 = K V K C K M G T s 2 L M M
  • L 5 = K P K V K C K M s 3 L M M
  • Δ = 1 ( L 0 + L 1 + L 2 + L 3 + L 4 + L 5 ) + ( L 0 L 1 + L 0 L 3 )

    There is one forward path:

  • g 0 = K P K V K C K M s 3 L M M
  • The forward path touches all the loops therefore the co-factor Δ 0 = 1

    And the gain from input to output is θ L θ C = g 0 Δ 0 Δ

    Equivalent matrix form

    Mason's rule can be stated in a simple matrix form. Assume T is the transient matrix of the graph where t n m = [ T ] n m is the sum transmittance of branches from node m toward node n. Then, the gain from node m to node n of the graph is equal to u n m = [ U ] n m , where

    U = ( I T ) 1 ,

    and I is the identity matrix.

    Mason's Rule is also particularly useful for deriving the z-domain transfer function of discrete networks that have inner feedback loops embedded within outer feedback loops (nested loops). If the discrete network can be drawn as a signal flow graph, then the application of Mason's Rule will give that network's z-domain H(z) transfer function.

    Complexity and Computational Applications

    Mason's Rule can grow factorially, because the enumeration of paths in a directed graph grows thusly. To see this consider the complete directed graph on n vertices, having an edge between every pair of vertices. There is a path form y i n to y o u t for each of the ( n 2 ) ! permutations of the intermediate vertices. Thus Gaussian elimination is more efficient in the general case.

    Yet Mason's rule characterizes the transfer functions of interconnected systems in a way which is simultaneously algebraic and combinatorial, allowing for general statements and other computations in algebraic systems theory. While numerous inverses occur during Gaussian eliminiation, Mason's rule naturally collects these into a single quasi-inverse. General form is

    Where as described above, q is a sum of cycle products, each of which typically falls into an ideal (for example, the strictly causal operators). Fractions of this form form a subring R ( 1 + L i ) 1 of the rational function field. This observation carries over to the noncommutative case, even though Mason's rule itself must then be replaced by Riegle's rule.

    References

    Mason's gain formula Wikipedia