*
* @exception IllegalActionException If there is no director.
*/
public void fire() throws IllegalActionException {
super.fire();
Complex inputValue = ((ComplexToken) (input.get(0))).complexValue();
double magnitudeValue = Math.sqrt((inputValue.real * inputValue.real)
+ (inputValue.imag * inputValue.imag));
double angleValue = Math.atan2(inputValue.imag, inputValue.real);