FXJHGenenrate.cs 30 KB

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