wz2eqz.m
来自「solve power flows by gauss seidel method」· M 代码 · 共 16 行
M
16 行
% This function finds the equivalent impedance of a transformer
% referred to primary and secondary form individual winding impedances.
% Copyright (C) 1998 by H. Saadat.
function [Ze1, Ze2] = trsct(E1, E2, Z1, Z2)
if exist('E1') ~= 1
E1 = input(' Enter rated voltage in volt, LV side = '); else, end
if exist('E2') ~= 1
E2 = input(' Enter rated voltage in volt, LV side = '); else, end
if exist('Z1') ~= 1
Z1 = input(' Enter the LV series impedance R1 + j*X1 in ohms = '); else, end
if exist('Z2') ~= 1
Z2 = input(' Enter the HV series impedance R2 + j*X2 in ohms = '); else, end
Ze1 = Z1 + (E1/E2)^2*Z2;
Ze2 = Z2 + (E2/E1)^2*Z1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?