Class TrapezoidalPulse

    • Constructor Detail

      • TrapezoidalPulse

        public TrapezoidalPulse()
        Constructs a trapezoidal pulse using a default segmentation principle. The reader is referred to the .xml file containing the default values of TRAPEZOIDAL_RISE_PERCENTAGE and TRAPEZOIDAL_FALL_PERCENTAGE. The maximum laser power is adjusted to ensure the area of the shape is equal to unity.
    • Method Detail

      • evaluateAt

        public double evaluateAt​(double time)
        Calculates power using a piecewise function, which corresponds to either a linearly changing, a constant laser power or zero.
        Specified by:
        evaluateAt in class PulseTemporalShape
        Parameters:
        time - the time measured from the start of the laser pulse.
        Returns:
        a double value, representing the pulse function at time
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Description copied from class: PropertyHolder

        By default, this will search the children of this PropertyHolder to collect the types of their listed numeric parameters recursively.

        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • setTrapezoidalRise

        public void setTrapezoidalRise​(NumericProperty p)
      • setTrapezoidalFall

        public void setTrapezoidalFall​(NumericProperty p)
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.