Amplitude of field with phasor components

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
misho
Messages
19
Reaction score
0
Let's say I have a field (electric or magnetic or something) and it's time-varying so I choose to represent its components as phasors.

Say the field is:
[tex]\vec{F} = X\hat{x} + Y\hat{y} + Z\hat{z}[/tex]

where, X, Y and Z are complex numbers.

Now, I want to find the amplitude of the field. If X, Y and Z were real (time constant field), I'd just go:

[tex]F = \sqrt{X^2 +Y^2 +Z^2}[/tex]

but I have no idea what to do here. Also, I'm not sure if there's an easy way to do this or not. Any ideas?
 
Physics news on Phys.org
It works just like phasor arithmetic for electronic circuits. The instantaneous amplitude will be

[tex]f = \sqrt{\Re (X)^2 + \Re (Y)^2 + \Re (Z)^2}[/tex]

The time-averaged amplitude is

[tex]F_{avg} = \sqrt{X_{rms}^2 + Y_{rms}^2 + Z_{rms}^2} = \sqrt{\frac{X^*X + Y^*Y + Z^*Z}{2}}[/tex]

where [itex]X^*[/itex] is the complex conjugate of X.

Lastly, the total amplitude of F is

[tex]|\vec F| = \sqrt{\vec F^* \cdot \vec F} = \sqrt{X^*X + Y^*Y + Z^*Z}[/tex]

This is the magnitude of a vector in six-dimensional space, which rotates around on a 5-sphere such that its projections along the six axes are equal to the real and imaginary components of each of X, Y, and Z.

(Alternatively, you can think of F as living in three-dimensional complex space, such that its projection on each of the three complex axes gives the three complex numbers X, Y, and Z).
 
Thanks a lot! Answers my question perfectly.