Class IVPoint


  • public class IVPoint
    extends java.lang.Object
    Structure to hold a current-voltage data-point.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      double current
      Current value of I-V data-point
      double voltage
      Voltage value of I-V data-point
    • Constructor Summary

      Constructors 
      Constructor Description
      IVPoint​(double V, double I)
      Creates an IVPoint object with voltage V and current I.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • voltage

        public final double voltage
        Voltage value of I-V data-point
      • current

        public final double current
        Current value of I-V data-point
    • Constructor Detail

      • IVPoint

        public IVPoint​(double V,
                       double I)
        Creates an IVPoint object with voltage V and current I.
        Parameters:
        V - Voltage
        I - Current