aes70
Version:
A controller library for the AES70 protocol.
23 lines (21 loc) • 405 B
JavaScript
/*
* This file has been generated.
*/
export class OcaImpedance {
/**
* Complex impedance. Expressed as a magnitude and phase.
* @class OcaImpedance
*/
constructor(Magnitude, Phase) {
/**
* Impedance magnitude in ohms.
* @type number
*/
this.Magnitude = Magnitude;
/**
* Impedance phase in radians.
* @type number
*/
this.Phase = Phase;
}
}