How to create a 3 - by - 3 vector for a PI Section Line

조회 수: 11 (최근 30일)
Eddie
Eddie 2024년 10월 17일
댓글: Eddie 2024년 10월 23일
PI Section Line
3 - by - 3 Vector
  댓글 수: 2
Rahul
Rahul 2024년 10월 17일
Hi @Eddie, can you specify about which kind of pi section line are you trying to implement, and what '3 - by - 3 Vector' signify here?
Eddie
Eddie 2024년 10월 17일
Thank you for your reply.
The Simulink block is taggged as a PI Section Line (mask) (link) in Simulink Power Grid Elements.
PI section transmission line. RLC elements are computed using hyperbolic corrections at specified frequency.
Completed the PI Section Line Block Paramets for a 2 x 2 vector as shown below.
However I still recieve the following alarm:
Parameter 'Resistance' in block must be a 2-by-2 vector.

댓글을 달려면 로그인하십시오.

채택된 답변

Rahul
Rahul 2024년 10월 21일
Hi Eddie,
Assuming that you are trying to use a pi-section line block in your Simulink Model, while passing a (1, 2) vectors of inductance and resistance per unit length. The specified error is being generated due to the use of a (2, 1) matrices, equal to the number of phases N (=2, in this case) rather than a (2, 2) or (N, N) impedance matrix, which has been mentioned in the documentation:
In a 2-phase transmission line, the electrical behavior is influenced by both the self-impedance of each individual phase and the mutual impedance between the phases. The 2×2 impedance matrix Z is used to account for these two aspects:
  1. Self-Impedances: The self-impedance for each phase describes the impedance that a particular phase (such as phase 1) experiences due to its own resistance and inductance. This corresponds to the inductors and resistors associated with each line (seen between points labeled as A and α for phases 1, 2, and 3 in the given figure).
In the matrix representation, the diagonal terms Z11​, Z22​, and would represent the self-impedances for phases 1, 2 respectively.
Z=[Z11 Z12;
Z21 Z22];
  1. Mutual Impedances: accounts for the coupling between phases. This means that the impedance of phase 1 will also influence phase 2, and vice versa, due to electromagnetic coupling between the conductors of different phases.
In the matrix representation, the off-diagonal terms Z12​, Z21​, etc., represent the mutual impedance between the phases. For example:
Z12​ describes the impact of phase 1 on phase 2.
Z21​ describes the reverse (phase 2 affecting phase 1).
The image depicts a 3-phase Pi-section transmission line model. In this configuration, each phase (1, 2, 3) is represented by a series inductance and resistance (R and L) as well as shunt capacitances (Cg​ and Cp​).
For more information regarding the usage of Pi-Section Line in Simulink, refer to the following documentation link:
  댓글 수: 1
Eddie
Eddie 2024년 10월 23일
Hi Rahul.
EXCELLENT answer, thank you SO much for your time, I have learnt from you answer and solved the issue.
THANK YOU !

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Choose and Parameterize Blocks에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by