TYPE ActuatorUsedType
! structure for actuators user selected to use in Erl
CHARACTER(len=MaxNameLength) :: Name = '' ! Erl variable name
CHARACTER(len=MaxNameLength) :: ComponentTypeName = '' ! general actuator name, All uppercase
CHARACTER(len=MaxNameLength) :: UniqueIDName = '' ! unique id for actuator, All uppercase
CHARACTER(len=MaxNameLength) :: ControlTypeName = '' ! control type id for actuator, All uppercase
LOGICAL :: CheckedOkay = .FALSE. ! set to true once matched to available actuator
INTEGER :: ErlVariableNum = 0 ! points to global Erl variable, matches Name
INTEGER :: ActuatorVariableNum = 0 ! points to index match in EMSActuatorAvailable structure
END TYPE ActuatorUsedType