Changeset 1116:7eaafcf70da9
- Timestamp:
- 10/23/23 16:36:54 (13 months ago)
- Branch:
- python3
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r1087 r1116 822 822 self.maxTakeOffPitch = 15.5 823 823 self.maxTouchDownPitch = 15.5 824 self.simBriefData = SimBriefData(["250/280/70"], 825 ["LRC", "M72", "M73", "M74"], 826 ["74/320/250"]) 824 827 825 828 #--------------------------------------------------------------------------------------- … … 836 839 self.maxTakeOffPitch = 13.4 837 840 self.maxTouchDownPitch = 12.0 841 self.simBriefData = SimBriefData(["250/280/74"], 842 ["CI", "M74", "M76", "M78", "LRC"], 843 ["74/280/250"], 844 cruiseParameters = {0: (False, "civalue")}) 838 845 839 846 #--------------------------------------------------------------------------------------- … … 849 856 self.maxTakeOffPitch = 11.4 850 857 self.maxTouchDownPitch = 10 858 self.simBriefData = SimBriefData(["250/280/74"], 859 ["CI", "M74", "M76", "M78", "LRC"], 860 ["74/280/250"], 861 cruiseParameters = {0: (False, "civalue")}) 851 862 852 863 #--------------------------------------------------------------------------------------- … … 863 874 self.maxTakeOffPitch = 14.7 864 875 self.maxTouchDownPitch = 13.2 876 self.simBriefData = SimBriefData(["250/280/74"], 877 ["CI", "M74", "M76", "M78", "LRC"], 878 ["74/280/250"], 879 cruiseParameters = {0: (False, "civalue")}) 865 880 866 881 #--------------------------------------------------------------------------------------- … … 932 947 self.maxTakeOffPitch = 13.1 933 948 self.maxTouchDownPitch = 11.6 949 self.simBriefData = SimBriefData(["250/290/78"], 950 ["CI", "M76", "M78", "M80", "M82", 951 "M84", "M85", "LRC"], 952 ["78/290/250"], 953 cruiseParameters = {0: (False, "civalue")}) 934 954 935 955 #--------------------------------------------------------------------------------------- … … 948 968 self.simBriefData = SimBriefData(["250/290/78"], 949 969 ["CI", "M76", "M78", "M80", "M82", "M84", "LRC"], 950 ["78/290/250"]) 970 ["78/290/250"], 971 cruiseParameters = {0: (False, "civalue")}) 951 972 952 973 def setBookedFlight(self, bookedFlight): … … 982 1003 self.simBriefData = SimBriefData(["250/70", "290/74"], 983 1004 ["CI", "LRC", "M70", "M72", "M74", "M77", "M80"], 984 ["74/290/250", "77/320/250"]) 1005 ["74/290/250", "77/320/250"], 1006 cruiseParameters = {0: (False, "civalue")}) 985 1007 986 1008 #--------------------------------------------------------------------------------------- … … 1010 1032 self.maxTakeOffPitch = 16.0 1011 1033 self.maxTouchDownPitch = 16.0 1034 self.simBriefData = SimBriefData(["250/280/70"], 1035 ["M70", "LRC"], 1036 ["70/280/250"]) 1012 1037 1013 1038 @property … … 1131 1156 self.maxTouchDownPitch = 16.0 1132 1157 self.simBriefData = SimBriefData(["AUTO"], 1133 [" 300/M80"],1158 ["AUTO"], 1134 1159 ["AUTO"]) 1135 1160 … … 1250 1275 30 : 170, 1251 1276 33 : 150 } 1252 1277 self.simBriefData = SimBriefData(["HighSpeed", "LongRange"], 1278 ["M70", "MCR", "LRC"], 1279 ["HighSpeed", "LongRange"]) 1253 1280 @property 1254 1281 def derateType(self):
Note:
See TracChangeset
for help on using the changeset viewer.