FXJHGenenrate.cs 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. using SimulationCommon;
  2. namespace Model
  3. {
  4. public class FXJHGenerate
  5. {
  6. public static void FromStartToMission(FlightPlanEditor editor,ref List<TurningPoint> turningPoints) //生成从基地到任务段起点的航路点
  7. {
  8. turningPoints.Add(new TurningPoint
  9. {
  10. TurningPointName = "爬升",
  11. TurningPointLongitude = editor.originbase.BaseLongitude, //基地位置
  12. TurningPointLatitude = editor.originbase.BaseLatitude,
  13. TurningPointHeight = editor.originbase.BaseHeight,
  14. TurningPointType = "普通",
  15. //TurningPointVelocity = editor.climbsegment.ClimbVelocity;
  16. SegmentFlightFuelConsumption = 1,
  17. SegmentFlightTime = 0,
  18. RemainingFuel = 0,
  19. });
  20. // double k;
  21. double lat1, lon1; //直升机起飞后爬升到的航路点的经纬度,记为经纬度1
  22. lat1 = (editor.originbase.BaseLatitude + editor.missionpoint.MissionPointLatitude) / 2;
  23. lon1 = (editor.originbase.BaseLongitude + editor.missionpoint.MissionPointLongitude) / 2;
  24. // k = (editor.missionpoint.MissionPointLatitude - editor.originbase.BaseLatitude) /
  25. // (editor.missionpoint.MissionPointLongitude - editor.originbase.BaseLongitude);
  26. // if (editor.missionpoint.MissionPointLongitude > editor.originbase.BaseLongitude)
  27. // {
  28. // lat1 = 0.08544 * k / (Math.Sqrt(k * k + 1)) + editor.originbase.BaseLatitude; //经验公式
  29. // lon1 = 0.08544 / (Math.Sqrt(k * k + 1)) + editor.originbase.BaseLongitude;
  30. // }
  31. // else
  32. // {
  33. // lat1 = editor.originbase.BaseLatitude - 0.08544 * k / (Math.Sqrt(k * k + 1));
  34. // lon1 = editor.originbase.BaseLongitude - 0.08544 / (Math.Sqrt(k * k + 1));
  35. // }
  36. turningPoints.Add(new TurningPoint
  37. {
  38. TurningPointName = "平飞",
  39. TurningPointLongitude = lon1,
  40. TurningPointLatitude = lat1,
  41. TurningPointHeight = 2000,
  42. TurningPointType = "普通",
  43. SegmentFlightFuelConsumption = 2,
  44. SegmentFlightTime = 0,
  45. RemainingFuel = 0,
  46. });
  47. }
  48. //获取油耗率
  49. public static double GetClimbFuelConsumptionRate(FlightPlanEditor editor, double height)
  50. {
  51. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  52. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  53. "爬升", temp.ToString(), height.ToString(),
  54. editor.aircraftparameter.MaxTakeoffWeight.ToString());
  55. if (fuel == null)
  56. {
  57. return 1100;
  58. }
  59. return fuel.oilconsume;
  60. }
  61. public static double GetCruisingFuelConsumptionRate(FlightPlanEditor editor, double height)
  62. {
  63. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  64. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  65. "平飞远航", temp.ToString(), height.ToString(),
  66. editor.aircraftparameter.MaxTakeoffWeight.ToString());
  67. if (fuel == null)
  68. {
  69. return 600;
  70. }
  71. return fuel.oilconsume;
  72. }
  73. public static double GetEnduranceFuelConsumptionRate(FlightPlanEditor editor, double height)
  74. {
  75. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  76. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  77. "平飞久航", temp.ToString(), height.ToString(),
  78. editor.aircraftparameter.MaxTakeoffWeight.ToString());
  79. if (fuel == null)
  80. {
  81. return 600;
  82. }
  83. return fuel.oilconsume;
  84. }
  85. public static double GetDescentFuelConsumptionRate(FlightPlanEditor editor, double height)
  86. {
  87. return 2 * GetCruisingFuelConsumptionRate(editor, height) - GetClimbFuelConsumptionRate(editor, height);
  88. }
  89. public static double GetHoverFuelConsumptionRate(FlightPlanEditor editor, double height)
  90. {
  91. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  92. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  93. "悬停", temp.ToString(), height.ToString(),
  94. editor.aircraftparameter.MaxTakeoffWeight.ToString());
  95. if (fuel == null)
  96. {
  97. return 200;
  98. }
  99. return fuel.oilconsume;
  100. }
  101. //获取速度值
  102. public static double GetClimbVelocity(FlightPlanEditor editor, double height)
  103. {
  104. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  105. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  106. "爬升", temp.ToString(), height.ToString(), editor.aircraftparameter.MaxTakeoffWeight.ToString());
  107. if (fuel == null)
  108. {
  109. return 60;
  110. }
  111. return fuel.speed;
  112. }
  113. public static double GetCruisingVelocity(FlightPlanEditor editor, double height)
  114. {
  115. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  116. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  117. "平飞远航", temp.ToString(), height.ToString(), editor.aircraftparameter.MaxTakeoffWeight.ToString());
  118. if (fuel == null)
  119. {
  120. return 200;
  121. }
  122. return fuel.speed;
  123. }
  124. public static double GetEnduranceVelocity(FlightPlanEditor editor, double height)
  125. {
  126. double temp = Util.GetTemperature(editor.originbase.BaseLongitude, editor.originbase.BaseLatitude);
  127. Fuel fuel = Util.GetFuel(editor.aircraftparameter.AircraftID, editor.aircraftparameter.AircraftSubType,
  128. "平飞久航", temp.ToString(), height.ToString(), editor.aircraftparameter.MaxTakeoffWeight.ToString());
  129. if (fuel == null)
  130. {
  131. return 200;
  132. }
  133. return fuel.speed;
  134. }
  135. public static double GetDescentVelocity(FlightPlanEditor editor, double height)
  136. {
  137. return GetCruisingVelocity(editor, height) / 2;
  138. }
  139. public static void ZhenCha(List<double[]> SC01, FlightPlanEditor editor, ref List<TurningPoint> turningPoints) //侦查模型航路点生成
  140. {
  141. int i;
  142. for (i = 0; i < SC01.Count - 1; i++)
  143. {
  144. turningPoints.Add(new TurningPoint
  145. {
  146. TurningPointName = "平飞",
  147. TurningPointLongitude = SC01[i][0],
  148. TurningPointLatitude = SC01[i][1],
  149. TurningPointHeight = SC01[i][2],
  150. TurningPointType = "侦查",
  151. SegmentFlightFuelConsumption = 3,
  152. SegmentFlightTime = 0,
  153. RemainingFuel = 0,
  154. });
  155. }
  156. }
  157. public static void SuoHuaJiang(double resulttime, FlightPlanEditor editor,
  158. ref List<TurningPoint> turningPoints) //索滑降模型航路点生成
  159. {
  160. turningPoints.Add(new TurningPoint
  161. {
  162. TurningPointName = "索滑降",
  163. TurningPointLongitude = editor.missionpoint.MissionPointLongitude,
  164. TurningPointLatitude = editor.missionpoint.MissionPointLatitude,
  165. TurningPointHeight = editor.missionpoint.MissionPointHeight,
  166. TurningPointType = "索滑降",
  167. SegmentFlightFuelConsumption = 5,
  168. SegmentFlightTime = resulttime,
  169. RemainingFuel = 0,
  170. });
  171. }
  172. public static void XunHu(FlightPlanEditor editor,ref List<TurningPoint> turningPoints)
  173. {
  174. int i;
  175. for (i = 0; i < editor.airroute.Length; i++)
  176. {
  177. turningPoints.Add(new TurningPoint
  178. {
  179. TurningPointName = "平飞",
  180. TurningPointLongitude = editor.airroute[i].AirRouteLongitude,
  181. TurningPointLatitude = editor.airroute[i].AirRouteLatitude,
  182. TurningPointHeight = editor.airroute[i].AirRouteHeight,
  183. TurningPointType = "普通",
  184. SegmentFlightFuelConsumption = 3,
  185. SegmentFlightTime = 0,
  186. RemainingFuel = 0,
  187. });
  188. }
  189. }
  190. public static void MieHuo1(FlightPlanEditor editor,ref List<TurningPoint> turningPoints) //灭火任务从取水点到火场部分的航路点生成
  191. {
  192. turningPoints.Add(new TurningPoint
  193. {
  194. TurningPointName = "取水",
  195. TurningPointLongitude = editor.missionpoint.MissionPointLongitude,
  196. TurningPointLatitude = editor.missionpoint.MissionPointLatitude,
  197. TurningPointHeight = editor.missionpoint.MissionPointHeight,
  198. TurningPointType = "取水",
  199. SegmentFlightFuelConsumption = 3,
  200. SegmentFlightTime = 120,
  201. RemainingFuel = 0,
  202. });
  203. turningPoints.Add(new TurningPoint
  204. {
  205. TurningPointName = "洒水",
  206. TurningPointLongitude = editor.firepoint[0].FirePointLongitude,
  207. TurningPointLatitude = editor.firepoint[0].FirePointLatitude,
  208. TurningPointHeight = editor.firepoint[0].FirePointHeight,
  209. TurningPointType = "巡航",
  210. SegmentFlightFuelConsumption = 3,
  211. SegmentFlightTime = 0,
  212. RemainingFuel = 0,
  213. });
  214. }
  215. public static MissionEndPoint ZhenChaMissionEndPoint(List<double[]> SC01) //侦查模型任务终点生成
  216. {
  217. MissionEndPoint missionEndPoint = new();
  218. int length = SC01.Count - 1;
  219. missionEndPoint.MissionEndPointLongitude = SC01[length][0];
  220. missionEndPoint.MissionEndPointLatitude = SC01[length][1];
  221. missionEndPoint.MissionEndPointHeight = SC01[length][2];
  222. return missionEndPoint;
  223. }
  224. public static MissionEndPoint SuoHuaJiangMissionEndPoint(FlightPlanEditor editor) //索滑降模型任务终点生成
  225. {
  226. MissionEndPoint missionEndPoint = new();
  227. missionEndPoint.MissionEndPointLongitude = editor.missionpoint.MissionPointLongitude;
  228. missionEndPoint.MissionEndPointLatitude = editor.missionpoint.MissionPointLatitude;
  229. missionEndPoint.MissionEndPointHeight = editor.missionpoint.MissionPointHeight;
  230. return missionEndPoint;
  231. }
  232. public static void JijiangMiehuo1(FlightPlanEditor editor,ref List<TurningPoint> turningPoint)
  233. {
  234. turningPoint.Add(new TurningPoint
  235. {
  236. TurningPointName = "转运",
  237. TurningPointLongitude = editor.missionpoint.MissionPointLongitude,
  238. TurningPointLatitude = editor.missionpoint.MissionPointLatitude,
  239. TurningPointHeight = editor.missionpoint.MissionPointHeight,
  240. TurningPointType = "转运",
  241. SegmentFlightFuelConsumption = 2,
  242. SegmentFlightTime = 0,
  243. RemainingFuel = 0,
  244. });
  245. }
  246. public static void JijiangMiehuo(FlightPlanEditor editor,ref List<TurningPoint> turningPoint)
  247. {
  248. turningPoint.Add(new TurningPoint
  249. {
  250. TurningPointName = "转运",
  251. TurningPointLongitude = editor.originbase.BaseLongitude,
  252. TurningPointLatitude = editor.originbase.BaseLatitude,
  253. TurningPointHeight = editor.originbase.BaseHeight,
  254. TurningPointType = "转运",
  255. SegmentFlightFuelConsumption = 2,
  256. SegmentFlightTime = 0,
  257. RemainingFuel = 0,
  258. });
  259. turningPoint.Add(new TurningPoint
  260. {
  261. TurningPointName = "转运",
  262. TurningPointLongitude = editor.missionpoint.MissionPointLongitude,
  263. TurningPointLatitude = editor.missionpoint.MissionPointLatitude,
  264. TurningPointHeight = editor.missionpoint.MissionPointHeight,
  265. TurningPointType = "转运",
  266. SegmentFlightFuelConsumption = 2,
  267. SegmentFlightTime = 0,
  268. RemainingFuel = 0,
  269. });
  270. }
  271. public static void SeaSouJiu(FlightPlanEditor editor, ref List<TurningPoint> turningPoints)
  272. {
  273. int i;
  274. for (i = 0; i < editor.airroute.Length; i++)
  275. {
  276. turningPoints.Add(new TurningPoint
  277. {
  278. TurningPointName = "巡航",
  279. TurningPointLongitude = editor.airroute[i].AirRouteLongitude,
  280. TurningPointLatitude = editor.airroute[i].AirRouteLatitude,
  281. TurningPointHeight = 2000,
  282. TurningPointType = "普通",
  283. SegmentFlightFuelConsumption = 3,
  284. SegmentFlightTime = 0,
  285. RemainingFuel = 0,
  286. });
  287. }
  288. }
  289. public static void SeaSouJiu2(FlightPlanEditor editor, MissionPoint missionPoint, ref List<TurningPoint> turningPoints)
  290. {
  291. turningPoints.Add(new TurningPoint
  292. {
  293. TurningPointName = "巡航",
  294. TurningPointLongitude = missionPoint.MissionPointLongitude,
  295. TurningPointLatitude = missionPoint.MissionPointLatitude,
  296. TurningPointHeight = 0,
  297. TurningPointType = "普通",
  298. SegmentFlightFuelConsumption = 3,
  299. SegmentFlightTime = 0,
  300. RemainingFuel = 0,
  301. });
  302. }
  303. public static void LandSouJiu(FlightPlanEditor editor, ref List<TurningPoint> turningPoints)
  304. {
  305. int i;
  306. for (i = 0; i < editor.airroute.Length; i++)
  307. {
  308. turningPoints.Add(new TurningPoint
  309. {
  310. TurningPointName = "巡航",
  311. TurningPointLongitude = editor.airroute[i].AirRouteLongitude,
  312. TurningPointLatitude = editor.airroute[i].AirRouteLatitude,
  313. TurningPointHeight = editor.airroute[i].AirRouteHeight,
  314. TurningPointType = "普通",
  315. SegmentFlightFuelConsumption = 3,
  316. SegmentFlightTime = 0,
  317. RemainingFuel = 0,
  318. });
  319. }
  320. }
  321. public static void FromMissionToEnd(FlightPlanEditor editor, MissionEndPoint missionEndPoint, ref List<TurningPoint> turningPoints) //生成从任务段终点到基地的航路点
  322. {
  323. turningPoints.Add(new TurningPoint
  324. {
  325. TurningPointName = "平飞",
  326. TurningPointLongitude = missionEndPoint.MissionEndPointLongitude,
  327. TurningPointLatitude = missionEndPoint.MissionEndPointLatitude,
  328. TurningPointHeight = missionEndPoint.MissionEndPointHeight,
  329. TurningPointType = "普通",
  330. SegmentFlightFuelConsumption = 3,
  331. SegmentFlightTime = 0,
  332. RemainingFuel = 0,
  333. });
  334. //double k;
  335. double lat2, lon2;
  336. lat2 = (turningPoints[^1].TurningPointLatitude + editor.originbase.BaseLatitude) / 2;
  337. lon2 = (turningPoints[^1].TurningPointLongitude + editor.originbase.BaseLongitude) / 2;
  338. // k = (turningPoints[^1].TurningPointLatitude - editor.originbase.BaseLatitude) /
  339. // (turningPoints[^1].TurningPointLongitude - editor.originbase.BaseLongitude);
  340. // if (turningPoints[^1].TurningPointLongitude > editor.originbase.BaseLongitude)
  341. // {
  342. // lat2 = 0.08544 * k / (Math.Sqrt(k * k + 1)) + editor.originbase.BaseLatitude;
  343. // lon2 = 0.08544 / (Math.Sqrt(k * k + 1)) + editor.originbase.BaseLongitude;
  344. // }
  345. // else
  346. // {
  347. // lat2 = editor.originbase.BaseLatitude - 0.08544 * k / (Math.Sqrt(k * k + 1));
  348. // lon2 = editor.originbase.BaseLongitude - 0.08544 / (Math.Sqrt(k * k + 1));
  349. // }
  350. turningPoints.Add(new TurningPoint
  351. {
  352. TurningPointName = "降高",
  353. TurningPointLongitude = lon2,
  354. TurningPointLatitude = lat2,
  355. TurningPointHeight = 2000,
  356. TurningPointType = "普通",
  357. SegmentFlightFuelConsumption = 4,
  358. SegmentFlightTime = 0,
  359. RemainingFuel = 0,
  360. });
  361. }
  362. public static void InitializeVelocities(FlightPlanEditor editor,List<TurningPoint> turningPoints, ref double[] velocitys)
  363. {
  364. velocitys[0] = GetClimbVelocity(editor, turningPoints[0].TurningPointHeight);
  365. velocitys[1] = GetCruisingVelocity(editor, turningPoints[1].TurningPointHeight);
  366. velocitys[2] = GetEnduranceVelocity(editor, turningPoints[2].TurningPointHeight);
  367. velocitys[3] = GetDescentVelocity(editor, turningPoints[0].TurningPointHeight);
  368. }
  369. public static void InitializeFuelConsumptions(FlightPlanEditor editor, List<TurningPoint> turningPoints, ref double[] fuelConsumptions)
  370. {
  371. fuelConsumptions[0] = GetClimbFuelConsumptionRate(editor, turningPoints[0].TurningPointHeight);
  372. fuelConsumptions[1] = GetCruisingFuelConsumptionRate(editor, turningPoints[1].TurningPointHeight);
  373. fuelConsumptions[2] = GetEnduranceFuelConsumptionRate(editor, turningPoints[2].TurningPointHeight);
  374. fuelConsumptions[3] = GetDescentFuelConsumptionRate(editor, turningPoints[0].TurningPointHeight);
  375. fuelConsumptions[4] = GetHoverFuelConsumptionRate(editor, turningPoints[2].TurningPointHeight);
  376. }
  377. public static void FXJHTPDiedai(FlightPlanEditor editor,ref List<TurningPoint> turningPoints,double[] velocitys, double[] fuelConsumptions) //各航段飞行时间、油耗计算和航路点油耗迭代
  378. {
  379. int i;
  380. double DEG_TO_RAD_LOCAL = 3.1415926535897932 / 180;
  381. double[] x = new double[turningPoints.Count];
  382. double[] y = new double[turningPoints.Count];
  383. double[] z = new double[turningPoints.Count];
  384. for (i = 0; i < turningPoints.Count; i++) //LLA坐标转换为ECEF坐标
  385. {
  386. double lon = turningPoints[i].TurningPointLongitude * DEG_TO_RAD_LOCAL;
  387. double lat = turningPoints[i].TurningPointLatitude * DEG_TO_RAD_LOCAL;
  388. double hei = turningPoints[i].TurningPointHeight;
  389. double a = 6378137.0;
  390. double b = 6356752.31424518;
  391. double N = a / (Math.Sqrt(1 - ((a * a - b * b) / (a * a)) * Math.Sin(lat) * Math.Sin(lat)));
  392. x[i] = (N + hei) * Math.Cos(lat) * Math.Cos(lon);
  393. y[i] = (N + hei) * Math.Cos(lat) * Math.Sin(lon);
  394. z[i] = ((b * b * N) / (a * a) + hei) * Math.Sin(lat);
  395. }
  396. for (i = 0; i < turningPoints.Count; i++)
  397. {
  398. if (turningPoints[i].SegmentFlightTime == 0)
  399. {
  400. double distanceab;
  401. if (i != turningPoints.Count - 1)
  402. {
  403. distanceab = Math.Sqrt(Math.Pow(x[i] - x[i + 1], 2) + Math.Pow(y[i] - y[i + 1], 2) +
  404. Math.Pow(z[i] - z[i + 1], 2));
  405. }
  406. else
  407. {
  408. distanceab = Math.Sqrt(Math.Pow(x[i] - x[0], 2) + Math.Pow(y[i] - y[0], 2) +
  409. Math.Pow(z[i] - z[0], 2));
  410. }
  411. double velocity;
  412. // 根据飞行段类型选择不同的燃油消耗率计算函数
  413. switch (turningPoints[i].SegmentFlightFuelConsumption)
  414. {
  415. case 1:
  416. velocity = velocitys[0];
  417. break;
  418. case 2:
  419. velocity = velocitys[1];
  420. break;
  421. case 3:
  422. velocity = velocitys[2];
  423. break;
  424. case 4:
  425. velocity = velocitys[3];
  426. break;
  427. case 5:
  428. velocity = 0;
  429. break;
  430. default:
  431. velocity = 0;
  432. break;
  433. }
  434. // 使用计算得到的速度计算飞行时间
  435. turningPoints[i].SegmentFlightTime = CalculateSegmentFlightTime(distanceab, velocity);
  436. double CalculateSegmentFlightTime(double distance, double velocity)
  437. {
  438. return distance * 3.6 / velocity; // 根据速度计算飞行时间
  439. }
  440. }
  441. else
  442. {
  443. turningPoints[i].SegmentFlightTime = turningPoints[i].SegmentFlightTime;
  444. }
  445. }
  446. for (i = 0; i < turningPoints.Count; i++)
  447. {
  448. double remainingFuel;
  449. if (i == 0)
  450. {
  451. remainingFuel = editor.aircraftparameter.MaxFuelCapacity * 0.8;
  452. }
  453. else
  454. {
  455. remainingFuel = turningPoints[i - 1].RemainingFuel;
  456. }
  457. double fuelConsumption = 0;
  458. // 根据飞行段类型选择不同的燃油消耗率计算函数,1代表爬升,2代表平飞远航,3代表平飞久航,4代表下降,5代表悬停
  459. switch (turningPoints[i].SegmentFlightFuelConsumption)
  460. {
  461. case 1:
  462. fuelConsumption = fuelConsumptions[0];
  463. break;
  464. case 2:
  465. fuelConsumption = fuelConsumptions[1];
  466. break;
  467. case 3:
  468. fuelConsumption = fuelConsumptions[2];
  469. break;
  470. case 4:
  471. fuelConsumption = fuelConsumptions[3];
  472. break;
  473. case 5:
  474. fuelConsumption = fuelConsumptions[4];
  475. break;
  476. }
  477. remainingFuel -= fuelConsumption * turningPoints[i].SegmentFlightTime / 3600; // 更新剩余燃油
  478. if (remainingFuel < 0)
  479. {
  480. remainingFuel = 0;
  481. break;
  482. }
  483. turningPoints[i].RemainingFuel = remainingFuel;
  484. }
  485. }
  486. /// <summary>
  487. /// 巡护用
  488. /// </summary>
  489. /// <param name="turningPoints"></param>
  490. /// <param name="editor"></param>
  491. /// <param name="nowtime"></param>
  492. /// <returns></returns>
  493. public static (CurrentLocation, bool) GetCurrentLocation(List<TurningPoint> turningPoints, FlightPlanEditor editor,
  494. double nowtime)
  495. {
  496. CurrentLocation currentLocation = new CurrentLocation();
  497. double[] timetable = new double[editor.airroute.Length + 2]; //airroute.Length表示巡护航线中有几个航路点
  498. timetable[0] = 0; //设起飞时刻为0
  499. int segmentnumber = -1;
  500. int i;
  501. for (i = 0; i < editor.airroute.Length + 1; i++)
  502. {
  503. timetable[i + 1] = timetable[i] + turningPoints[i].SegmentFlightTime;
  504. }
  505. for (i = 0; i < editor.airroute.Length + 2; i++)
  506. {
  507. if ((nowtime - timetable[i]) >= 0)
  508. {
  509. segmentnumber += 1;
  510. }
  511. else
  512. {
  513. break;
  514. }
  515. }
  516. bool isEnd = false || segmentnumber >= turningPoints.Count;
  517. currentLocation.CurrentLon = turningPoints[segmentnumber].TurningPointLongitude +
  518. (turningPoints[segmentnumber + 1].TurningPointLongitude -
  519. turningPoints[segmentnumber].TurningPointLongitude) *
  520. (nowtime - timetable[segmentnumber]) /
  521. turningPoints[segmentnumber].SegmentFlightTime;
  522. currentLocation.CurrentLat = turningPoints[segmentnumber].TurningPointLatitude +
  523. (turningPoints[segmentnumber + 1].TurningPointLatitude -
  524. turningPoints[segmentnumber].TurningPointLatitude) *
  525. (nowtime - timetable[segmentnumber]) /
  526. turningPoints[segmentnumber].SegmentFlightTime;
  527. currentLocation.CurrentHei = turningPoints[segmentnumber].TurningPointHeight +
  528. (turningPoints[segmentnumber + 1].TurningPointHeight -
  529. turningPoints[segmentnumber].TurningPointHeight) *
  530. (nowtime - timetable[segmentnumber]) /
  531. turningPoints[segmentnumber].SegmentFlightTime;
  532. currentLocation.CurrentFuel = 0;
  533. currentLocation.Currentvelo = 0;
  534. currentLocation.Currentsegnum = segmentnumber + 1;
  535. currentLocation.CurrentCourse = 75;
  536. return (currentLocation, isEnd);
  537. }
  538. //改
  539. /// <summary>
  540. /// 计算当前位置
  541. /// </summary>
  542. /// <param name="FXJHTP"></param>
  543. /// <param name="FXJHTPLength"></param>
  544. /// <param name="nowtime"></param>
  545. /// <returns></returns>
  546. public static (CurrentLocation, bool) GetAllCurrentLocation(List<TurningPoint> turningPoints, double nowtime) //飞机实时位置打印
  547. {
  548. CurrentLocation currentLocation = new CurrentLocation();
  549. double[] timetable = new double[turningPoints.Count + 1];
  550. timetable[0] = 0;
  551. int segmentnumber = -1;
  552. int i;
  553. for (i = 0; i < turningPoints.Count; i++)
  554. {
  555. timetable[i + 1] = timetable[i] + turningPoints[i].SegmentFlightTime;
  556. }
  557. for (i = 0; i < turningPoints.Count + 1; i++)
  558. {
  559. if ((nowtime - timetable[i]) >= 0)
  560. {
  561. segmentnumber += 1;
  562. }
  563. else
  564. {
  565. break;
  566. }
  567. }
  568. bool isEnd = false || segmentnumber >= turningPoints.Count;
  569. if (segmentnumber < turningPoints.Count - 1)
  570. {
  571. currentLocation.CurrentLon = turningPoints[segmentnumber].TurningPointLongitude +
  572. ((turningPoints[segmentnumber + 1].TurningPointLongitude -
  573. turningPoints[segmentnumber].TurningPointLongitude) /
  574. turningPoints[segmentnumber].SegmentFlightTime) *
  575. (nowtime - timetable[segmentnumber]);
  576. currentLocation.CurrentLat = turningPoints[segmentnumber].TurningPointLatitude +
  577. ((turningPoints[segmentnumber + 1].TurningPointLatitude -
  578. turningPoints[segmentnumber].TurningPointLatitude) /
  579. turningPoints[segmentnumber].SegmentFlightTime) *
  580. (nowtime - timetable[segmentnumber]);
  581. currentLocation.CurrentHei = turningPoints[segmentnumber].TurningPointHeight +
  582. ((turningPoints[segmentnumber + 1].TurningPointHeight -
  583. turningPoints[segmentnumber].TurningPointHeight) /
  584. turningPoints[segmentnumber].SegmentFlightTime) *
  585. (nowtime - timetable[segmentnumber]);
  586. currentLocation.CurrentFuel = turningPoints[segmentnumber].RemainingFuel -
  587. turningPoints[segmentnumber].SegmentFlightFuelConsumption *
  588. (nowtime - timetable[segmentnumber]);
  589. currentLocation.PresentMission = turningPoints[segmentnumber].TurningPointName;
  590. }
  591. else if (segmentnumber == turningPoints.Count - 1)
  592. {
  593. currentLocation.CurrentLon = turningPoints[segmentnumber].TurningPointLongitude +
  594. ((turningPoints[0].TurningPointLongitude -
  595. turningPoints[segmentnumber].TurningPointLongitude) /
  596. turningPoints[segmentnumber].SegmentFlightTime) *
  597. (nowtime - timetable[segmentnumber]);
  598. currentLocation.CurrentLat = turningPoints[segmentnumber].TurningPointLatitude +
  599. ((turningPoints[0].TurningPointLatitude -
  600. turningPoints[segmentnumber].TurningPointLatitude) /
  601. turningPoints[segmentnumber].SegmentFlightTime) *
  602. (nowtime - timetable[segmentnumber]);
  603. currentLocation.CurrentHei = turningPoints[segmentnumber].TurningPointHeight +
  604. ((turningPoints[0].TurningPointHeight -
  605. turningPoints[segmentnumber].TurningPointHeight) /
  606. turningPoints[segmentnumber].SegmentFlightTime) *
  607. (nowtime - timetable[segmentnumber]);
  608. currentLocation.CurrentFuel = turningPoints[segmentnumber].RemainingFuel -
  609. turningPoints[segmentnumber].SegmentFlightFuelConsumption *
  610. (nowtime - timetable[segmentnumber]);
  611. currentLocation.PresentMission = turningPoints[segmentnumber].TurningPointName;
  612. }
  613. else
  614. {
  615. currentLocation.CurrentLon = turningPoints[0].TurningPointLongitude;
  616. currentLocation.CurrentLat = turningPoints[0].TurningPointLatitude;
  617. currentLocation.CurrentHei = turningPoints[0].TurningPointHeight;
  618. currentLocation.Currentvelo = 0;
  619. currentLocation.CurrentFuel = turningPoints[segmentnumber - 1].RemainingFuel -
  620. turningPoints[segmentnumber - 1].SegmentFlightFuelConsumption *
  621. turningPoints[segmentnumber - 1].SegmentFlightTime;
  622. currentLocation.PresentMission = turningPoints[segmentnumber - 1].TurningPointName;
  623. isEnd = true;
  624. }
  625. return (currentLocation,isEnd);
  626. }
  627. }
  628. }