transformer {renpow} | R Documentation |
Calculates tranformer circuits
xformer.ckt(x, dig = 2)
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 |
xformer.ckt transformer circuit calculations using source, impedances, and load,
ys |
Source results |
yx |
Transformer results |
yl |
Load results |
prnt |
Results of transformer function for printout form |
Functions used in Chapter 10 of Acevedo (2018)
Miguel F. Acevedo acevedo@unt.edu
Acevedo, M.F. 2018. Introduction to Renewable Electric Power Systems and the Environment with R. Boca Raton, FL: CRC Press. (ISBN 9781138197343)
AC functions ac.plot
, phasor.plot
, waves
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)