FXJHGenenrate.cs 31 KB

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