⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wz2eqz.m

📁 市面上电力系统的范例 直得收藏学习的ㄧ本书
💻 M
字号:
% 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -