series_shunt_impedance: Series/Shunt Impedance

series_shunt_impedanceR Documentation

Series/Shunt Impedance

Description

Calculates the series or shunt impedance based on ABCD-parameters

Usage

abcd_to_series_z(abcd)

abcd_to_shunt_z(abcd)

Arguments

abcd

Network ABCD-parameters,

Value

Complex impedance

Examples

abcd <- matrix(c(1,
                 complex(modulus = 50, argument = 0),
                 complex(modulus = 200, argument = pi / 2),
                 1), nrow = 2, byrow = TRUE)
              
z_series <- abcd_to_series_z(abcd)
z_shunt <- abcd_to_shunt_z(abcd)


aaronmanderson3/rftk documentation built on July 30, 2023, 1:19 p.m.