9 lines
560 B
C#
9 lines
560 B
C#
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Enums;
|
|
|
|
public enum PreChargeDcLinkConfig : UInt16
|
|
{
|
|
External = 0, // device waits for external precharge of DC link
|
|
Internal = 1, // device precharges external DC link to necessary start-up voltage
|
|
InternalWithDc = 2, // behaviour similar to 1 with additional support of DC submodules (necessary for island operation)
|
|
InternalWithWait = 3 // device precharges external DC link to necessary start-up voltage and waits until PrechargeDcLinkConfig gets set back to 1 or 2
|
|
} |