Learn R Programming

renpow (version 0.1-1)

three-phase: Three-phase generator

Description

Calculates three-phase generator

Usage

generator(x)

Arguments

x

parameters for generator: list(S3p, Vl.rms, pf, lead.lag, Zs.r) where: S3p rated three-phase apparent power, V1.rms line voltage as rms, pf load power factor, lead.lag is -1 or +1, and Zs.r armature impedance in rectangular form

Value

E.p

electromotive force in polar form

Vp.p

Phase voltage generated in polar form

Il.p

Line current generated in polar form

ys

Source results

Details

Function generator produces E, Vp, and Il in polar form and a phasor diagram.

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

Run this code
# NOT RUN {
x <- list(S3p = 15*10^6, Vl.rms = 13.8*10^3, pf=0.85, lead.lag=-1, Zs.r = c(0.1,2))
generator(x)

x <- list(S3p = 15*10^6, Vl.rms = 13.8*10^3, pf=0.85, lead.lag=1, Zs.r = c(0.1,2))
generator(x)

# }

Run the code above in your browser using DataLab