Class StartupProfile.ProfilePoint
java.lang.Object
neqsim.process.equipment.compressor.StartupProfile.ProfilePoint
- All Implemented Interfaces:
Serializable
- Enclosing class:
StartupProfile
Inner class representing a point in the startup profile.
- Version:
- 1.0
- Author:
- esol
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Stringprivate final doubleprivate static final longprivate final doubleprivate final double -
Constructor Summary
ConstructorsConstructorDescriptionProfilePoint(double time, double targetSpeed, double holdDuration, String checkDescription) Constructor for ProfilePoint. -
Method Summary
Modifier and TypeMethodDescriptionGet the check description.doubleGet the hold duration.doubleGet the target speed.doublegetTime()Get the elapsed time.
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
time
private final double time -
targetSpeed
private final double targetSpeed -
holdDuration
private final double holdDuration -
checkDescription
-
-
Constructor Details
-
ProfilePoint
Constructor for ProfilePoint.- Parameters:
time- elapsed time from start in secondstargetSpeed- target speed at this point in RPMholdDuration- time to hold at this speed in secondscheckDescription- description of checks to perform
-
-
Method Details
-
getTime
public double getTime()Get the elapsed time.- Returns:
- time in seconds
-
getTargetSpeed
public double getTargetSpeed()Get the target speed.- Returns:
- speed in RPM
-
getHoldDuration
public double getHoldDuration()Get the hold duration.- Returns:
- duration in seconds
-
getCheckDescription
-