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

📄 vprop.m

📁 用matlab编写的电磁学方面的函数和图像
💻 M
字号:
% vprop.m - voltage and current propagation
%
%         --------|-------------|----------
% generator     V1,I1    l    V2,I2        load
%         --------|-------------|----------       
%
% Usage: [V1,I1] = vprop(V2,I2,Z0,bl)         
%
% V2,I2 = voltage and current at point z2
% Z0    = line impedance
% bl    = phase length in radians = beta*l = 2*pi*l/lambda
%
% V1,I1 = voltage and current at point z1
%
% notes: for a lossy line bl can also be complex, i.e., bl-j*al

% S. J. Orfanidis - 1999 - www.ece.rutgers.edu/~orfanidi/ewa

function [V1,I1] = vprop(V2,I2,Z0,bl)

if nargin==0, help vprop; return; end

VI = [cos(bl), j*Z0*sin(bl); j*sin(bl)/Z0, cos(bl)] * [V2; I2];

V1 = VI(1);
I1 = VI(2);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -