CARMA C++
IVCurve.idl
Go to the documentation of this file.
1 
8 #ifndef CARMA_ANTENNA_COMMON_IVCURVE_IDL
9 #define CARMA_ANTENNA_COMMON_IVCURVE_IDL
10 
11 module carma {
12  module antenna {
13  module common {
14 
15  struct IVPoint {
16  double fjd;
17  float Ij;
18  float Vj;
19  };
20 
30  struct IVCurve {
31  sequence< IVPoint > ivSequence;
32  sequence<float> totPower;
33  }; // End IVCurve
34 
35 
36  }; // End module common
37  }; // End module antenna
38 }; // End module carma
39 #endif
sequence< float > totPower
Total power output, milliWatts.
Definition: IVCurve.idl:32
Data returned by an IV curve method Be careful not to assume that the totPower contains the same numb...
Definition: IVCurve.idl:30
sequence< IVPoint > ivSequence
IV points.
Definition: IVCurve.idl:31