Files
sunny360vfe_proj/controllers/ENUM_AFCS_VERT.m
T
2025-06-04 14:13:22 +08:00

29 lines
656 B
Matlab

classdef ENUM_AFCS_VERT < Simulink.IntEnumType
enumeration
OFF (0)
VNAV2THT (1)
HDOT2THT (2)
GAMMA2THT (3)
H2THT (4)
AGL2THT (5)
VNAV2HDOT (6)
H2HDOT (7)
AGL2HDOT (8)
AS2THT (9)
VNAV2THT2 (10)
PN (11) %比例导引
end
methods (Static = true)
function retVal = getDescription()
retVal = 'AFCS vertical type';
end
function retVal = getDefaultValue()
retVal = ENUM_AFCS_VERT.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end