transformer {renpow} | R Documentation |
Transformer Circuits
Description
Calculates tranformer circuits
Usage
xformer.ckt(x, dig = 2)
Arguments
x |
list(N,Vs.p,Zs.r,Zo.r,Zl.r): these are N turns ratio, Vs.p Voltage source in polar form, Zs.r Source impedance in rectangular form, Zo.r Output impedance in rectangular form, Zl.r Load impedance in rectangular form. |
dig |
number of digits for results |
Details
xformer.ckt transformer circuit calculations using source, impedances, and load,
Value
ys |
Source results |
yx |
Transformer results |
yl |
Load results |
prnt |
Results of transformer function for printout form |
Note
Functions used in Chapter 10 of Acevedo (2018)
Author(s)
Miguel F. Acevedo acevedo@unt.edu
References
Acevedo, M.F. 2018. Introduction to Renewable Electric Power Systems and the Environment with R. Boca Raton, FL: CRC Press. (ISBN 9781138197343)
See Also
AC functions ac.plot
, phasor.plot
, waves
Examples
x <- list(N=c(2,1),Vs.p=c(12,30),Zs.r=c(1,0),Zo.r=c(0,0),Zl.r=c(1,0))
xf <- xformer.ckt(x)
[Package renpow version 0.1-1 Index]