AircraftSJ.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. using KYFramework;
  2. using Model;
  3. using MongoDB.Bson;
  4. using MuShiApp;
  5. using Org.BouncyCastle.Asn1.Pkcs;
  6. using SimulationCommon;
  7. using SimulationSingleServer.Utils;
  8. using Unity.Mathematics;
  9. using Point = SimulationCommon.Point;
  10. using Random = System.Random;
  11. namespace SimulationServer;
  12. public class AircraftSJ : AircraftEntity
  13. {
  14. public bool IsOver;
  15. private MissionEndPoint MissionEndPoint;
  16. private CurrentLocation currentLocation;
  17. private double temptime = 0;
  18. private double probability = 0;
  19. private double finalProbability = 1.0;
  20. public bool isseePerson = false;
  21. private int fireIndex = -1; // 记录发现火点的位置
  22. public EquationHelper helper;
  23. public SeaSouJiuTask taskContent;
  24. public bool Success = false; //本目标搜救是否成功
  25. public GetNCData getNCData;
  26. public double resulttime;
  27. public SearchMissionPayload searchMissionPayload;
  28. //private bool isbool;
  29. //private bool isbool2;
  30. //Text_readNC text_ReadNC;
  31. public SearchMissionMode SearchMode;
  32. int Days;
  33. int Hour;
  34. public int targetCount;
  35. public bool isEndWhile;
  36. public int sbCount;
  37. public double seaArea;
  38. public override void Reset()
  39. {
  40. base.Reset();
  41. IsOver = false;
  42. isseePerson = false;
  43. Success = false;
  44. SearchTime = 0;
  45. TotalTime = 0;
  46. resulttime = 0;
  47. isEndWhile = false;
  48. targetCount = 0;
  49. sbCount = 0;
  50. seaArea = 0;
  51. }
  52. public override void Start()
  53. {
  54. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
  55. {
  56. targetCount = FlightPlanEditor.targetpoint[0].TargetType.Count;
  57. sbCount = targetCount;
  58. }
  59. else
  60. sbCount = 1;
  61. int Year = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[0]);
  62. int Month = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0]);
  63. int Day = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0]);
  64. Hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
  65. Days = GetDaysInYear(Year, Month, Day);
  66. //Console.WriteLine("Day:" + Days);
  67. Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
  68. //TODO 计算 AirRoute[]
  69. double[] initialPosition =
  70. {
  71. FlightPlanEditor.targetpoint[0].TargetPointLatitude, FlightPlanEditor.targetpoint[0].TargetPointLongitude
  72. };
  73. double dt = 1;
  74. double totalTime = 24.0;
  75. //if (!isbool2)
  76. //{
  77. Text_readNC text_ReadNC = new Text_readNC();
  78. text_ReadNC.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  79. text_ReadNC.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  80. //text_ReadNC = new Text_readNC();
  81. text_ReadNC.GetNCData();
  82. text_ReadNC.GetWaveHighData();
  83. //isbool2 = true;
  84. //}
  85. var nCread = text_ReadNC.windNCread;
  86. //漂移轨迹
  87. List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition, dt, totalTime, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, text_ReadNC.times1, text_ReadNC.latitudes1, text_ReadNC.longitudes1, text_ReadNC.times2, text_ReadNC.latitudes2, text_ReadNC.longitudes2, text_ReadNC.times3, text_ReadNC.latitudes3, text_ReadNC.longitudes3, Days, Hour, text_ReadNC.initlatitudes, text_ReadNC.initlongitudes);
  88. foreach ( var trajectoryItem in trajectory)
  89. {
  90. Console.WriteLine("trajectory:" + trajectoryItem[0] + "_" + trajectoryItem[1]);
  91. }
  92. // 生成任务终点
  93. MissionEndPoint = new MissionEndPoint
  94. {
  95. MissionEndPointLongitude = trajectory[^1][1],
  96. MissionEndPointLatitude = trajectory[^1][0],
  97. MissionEndPointHeight = 0
  98. };
  99. var temp = SeaSJ.getminEnclosingRect(trajectory); //
  100. seaArea = Rectangular_Area_Search_Function.min_area;
  101. // temp 转成 List<Point>
  102. List<Point> points = new List<Point>();
  103. foreach (var item in temp)
  104. {
  105. points.Add(new Point(item[0], item[1]));
  106. }
  107. foreach (var item in points)
  108. {
  109. Console.WriteLine("item:" + item.lat + "-" + item.lon);
  110. }
  111. Point basePoint = new Point(FlightPlanEditor.originbase.BaseLatitude,
  112. FlightPlanEditor.originbase.BaseLongitude);
  113. List<Point> waypoints = new List<Point>();
  114. //*******
  115. if (SearchMode.SearchMode == "平行线搜索")
  116. {
  117. waypoints = ParallellineSearch.parallellineSearch(basePoint, points, SearchMode.SearchWidth);
  118. }
  119. if (SearchMode.SearchMode == "扇形搜索")
  120. {
  121. // 求 points 的中心点
  122. var startPoint1 = new Point
  123. {
  124. lat = points[0].lat / 2 + points[1].lat / 2,
  125. lon = points[0].lon / 2 + points[1].lon / 2
  126. };
  127. var startPoint2 = new Point
  128. {
  129. lat = points[2].lat / 2 + points[3].lat / 2,
  130. lon = points[2].lon / 2 + points[3].lon / 2
  131. };
  132. var centerPoint = new Point
  133. {
  134. lat = startPoint1.lat / 2 + startPoint2.lat / 2,
  135. lon = startPoint1.lon / 2 + startPoint2.lon / 2
  136. };
  137. waypoints = SectorSearch.sectorSearch(centerPoint, 30, SearchMode.SearchWidth);
  138. }
  139. if (SearchMode.SearchMode == "扩展矩形搜索")
  140. {
  141. // 求 points 的中心点
  142. var startPoint1 = new Point
  143. {
  144. lat = points[0].lat / 2 + points[1].lat / 2,
  145. lon = points[0].lon / 2 + points[1].lon / 2
  146. };
  147. //Console.WriteLine("startPoint1:" + startPoint1.lat + "-" + startPoint1.lon);
  148. var startPoint2 = new Point
  149. {
  150. lat = points[2].lat / 2 + points[3].lat / 2,
  151. lon = points[2].lon / 2 + points[3].lon / 2
  152. };
  153. //Console.WriteLine("startPoint2:" + startPoint2.lat + "-" + startPoint2.lon);
  154. var centerPoint = new Point
  155. {
  156. lat = startPoint1.lat / 2 + startPoint2.lat / 2,
  157. lon = startPoint1.lon / 2 + startPoint2.lon / 2
  158. };
  159. //Console.WriteLine("centerPoint:" + centerPoint.lat + "-" + centerPoint.lon);
  160. // 以 centerPoint 为中心,生成正方形区域
  161. var lonD = Math.Abs(points[0].lon - points[1].lon);
  162. var latD1 = Math.Abs(points[1].lat - points[2].lat);
  163. var max = Math.Max(lonD, latD1);
  164. //Console.WriteLine("max:" + max);
  165. // 以 distance 为边长 以 centerPoint 为中心点的正方形
  166. var temp0 = new Point(centerPoint.lat + max / 2, centerPoint.lon - max / 2);
  167. var temp1 = new Point(centerPoint.lat + max / 2, centerPoint.lon + max / 2);
  168. var temp2 = new Point(centerPoint.lat - max / 2, centerPoint.lon + max / 2);
  169. var temp3 = new Point(centerPoint.lat - max / 2, centerPoint.lon - max / 2);
  170. //Console.WriteLine("temp0:" + temp0.lat + "-" + temp0.lon);
  171. //Console.WriteLine("temp1:" + temp1.lat + "-" + temp1.lon);
  172. //Console.WriteLine("temp2:" + temp2.lat + "-" + temp2.lon);
  173. //Console.WriteLine("temp3:" + temp3.lat + "-" + temp3.lon);
  174. //Console.WriteLine("SearchWidth:" + SearchMode.SearchWidth);
  175. waypoints = TZFX.GenerateWaypoints(temp0, temp1, temp2, temp3, max, SearchMode.SearchWidth);
  176. }
  177. //foreach (var item in waypoints)
  178. //{
  179. // Console.WriteLine("item.lat :" + item.lat + "-" + "item.lon:" + item.lon);
  180. //}
  181. // List<Point> 转成 List<AirRoute>
  182. List<AirRoute> airRoutes = new List<AirRoute>();
  183. foreach (var item in waypoints)
  184. {
  185. airRoutes.Add(new AirRoute
  186. {
  187. AirRouteLatitude = item.lat,
  188. AirRouteLongitude = item.lon
  189. });
  190. }
  191. FlightPlanEditor.airroute = airRoutes.ToArray();
  192. MissionPoint missionPoint = new MissionPoint();
  193. missionPoint.MissionPointLatitude = waypoints[0].lat;
  194. missionPoint.MissionPointLongitude = waypoints[0].lon;
  195. FlightPlanEditor.missionpoint = missionPoint;
  196. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
  197. FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
  198. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  199. foreach (var item in TurningPoints)
  200. {
  201. Console.WriteLine("TurningPointLatitude:" + item.TurningPointLatitude + "_" + "TurningPointLongitude:" + item.TurningPointLongitude);
  202. }
  203. double time = 0; // 第一次 搜寻结束
  204. for (int i = 0; i < TurningPoints.Count - 2; i++)
  205. {
  206. time += TurningPoints[i].SegmentFlightTime;
  207. }
  208. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  209. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  210. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  211. string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
  212. //var vis = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
  213. string year = taskContent.missionInformation.StartDate.Split("年")[0];
  214. string month = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0];
  215. if (Convert.ToInt32(month) < 10) month = "0" + month;
  216. string day = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0];
  217. if (Convert.ToInt32(day) < 10) day = "0" + day;
  218. //string hour = taskContent.missionInformation.StartTime.Split("时")[0];
  219. string date = year + "-" + month + "-" + day;// + " " + hour;
  220. //Console.Write(date);
  221. //Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH"));
  222. var vis = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, date); //DateTime.Now.ToString("yyyy-MM-dd HH")
  223. //if (!isbool)
  224. //{
  225. getNCData = new GetNCData();
  226. getNCData.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  227. getNCData.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  228. getNCData.GetData();
  229. //isbool = true;
  230. //}
  231. Task.Run(() =>
  232. {
  233. bool isseePerson = false; // 输出表格平均救助时间没看到人是0看到人调用下面get_result_time_rope方法 //人员存活率需要重新算读取Editor搜救目标点初始坐标人数 //任务准备时间取值所有任务最小
  234. double temptime = 0; // 自增时间,每次增加1s
  235. CurrentLocation currentLocation = new CurrentLocation();
  236. double probability = 0;
  237. double finalProbability = 1.0;
  238. Random random = new Random();
  239. int fireIndex = -1; // 记录发现火点的位置
  240. double windSpeed = 0;
  241. do
  242. {
  243. if (!isseePerson && temptime >= time)
  244. {
  245. FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
  246. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  247. time = 0;
  248. for (int i = 0; i < TurningPoints.Count - 2; i++)
  249. {
  250. time += TurningPoints[i].SegmentFlightTime;
  251. }
  252. Log.Info($"+++++++++++搜寻结束 TurningPoints Count: {TurningPoints.Count} 下次结束的时间 {time}++++++++++++++++");
  253. }
  254. (currentLocation, _) =
  255. FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
  256. double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
  257. currentLocation.CurrentHei);
  258. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  259. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  260. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  261. var wind = SeaSJ.GetWindVelocityFromAPI(nCread, currentLocation.CurrentLat, currentLocation.CurrentLon,
  262. temptime, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, text_ReadNC.times1, text_ReadNC.latitudes1, text_ReadNC.longitudes1, Days, Hour);
  263. windSpeed = Math.Sqrt(wind[0] * wind[0] + wind[1] * wind[1]);
  264. var waveHigh = SeaSJ.GetWaveHeightFromAPI(nCread, currentLocation.CurrentLon,
  265. currentLocation.CurrentLat, temptime, text_ReadNC.times4, text_ReadNC.latitudes4, text_ReadNC.longitudes4, Days, Hour);
  266. var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
  267. currentLocation.CurrentLat,
  268. targetPoint.y);
  269. //Console.WriteLine("targetPoint:" + targetPoint.x + "-" + targetPoint.y + "-" + targetPoint.z);
  270. Log.Info("距离:====================" + distance);
  271. //Console.WriteLine("searchMissionPayload.SearchPayload:" + searchMissionPayload.SearchPayload);
  272. if (searchMissionPayload.SearchPayload == "雷达搜索")
  273. {
  274. // Pd0 = 0.5 / Pf0 = Math.Pow(10,-6) / Pf = Math.Pow(10,-6) / R0 = 23645 / sigma0 = 5000 / sigma = Editor雷达截面面积 // R 单位m
  275. probability = helper.GetRadarPossibility(0.5, Math.Pow(10, -6), Math.Pow(10, -6), 23645, aricraftPoint, FlightPlanEditor.targetpoint[0], FlightPlanEditor.targetpoint[0].TargetType.RadarArea, 5000, vis);
  276. }
  277. else if (searchMissionPayload.SearchPayload == "目视搜索")
  278. {
  279. probability = helper.GetMushiSeaProbability(aricraftPoint, vis, waveHigh, FlightPlanEditor.targetpoint[0]);
  280. }
  281. else if (searchMissionPayload.SearchPayload == "光电(红外)搜索")
  282. {
  283. // Lt = 探测目标亮度 Editor / At = 探测目标面积 Editor / τa = 1 / Lb = 3 / A0 = 1 / D0 = 0.075 / Dstar = 3 / τo = 0.8 / Ad = 0.0073728 / Δf = 0.125 / δ = 0.5 / Pf0 = Math.Pow(10, -6);
  284. probability = helper.GetInfraredDetectionProbability(FlightPlanEditor.targetpoint[0].TargetType.TargetBrightness, FlightPlanEditor.targetpoint[0].TargetType.TargetArea, 1, 3, 1, aricraftPoint, FlightPlanEditor.targetpoint[0], 0.075, 3, 0.8, 0073728, 0.125, 0.5, Math.Pow(10, -6));
  285. }
  286. // probability = helper.getProbability(aricraftPoint, targetPoint,pb, currentLocation.CurrentCourse,
  287. // windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
  288. //finalProbability *= (1 - probability);
  289. // 到搜寻航路点的最后一个点 (?)
  290. Log.Info(
  291. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到目标:{isseePerson}");
  292. double randomValue = random.NextInt64(9006, 10000); // 生成随机数比较概率 //0.05 第一个参数越高概率越低 / 8985 0.212 100 / 9000 0.16 100 / 8995 0.14 100 / 8997 0.12 100 / 8999 0.18 100 / 9006 0.11 100 / 9010 0.12 100 / 9030 0.03 100 / 9026 0.07 0.04 100 / 9028 0.03 100 / 9027 0.04 100 / 9025 0.05 100 /
  293. //9025 0.02 100 / 9015 0.02 100 / 9020 0.04 100 / 9022 0.05 100 / 9022 0.04 100 / 9022 0 100 /9018 0.01 100 / 9021 0.01 100 / 9023 0.03 100 / 9000 0.08 100 / 9006
  294. randomValue /= 10000;
  295. //randomValue = 0.8;
  296. if (randomValue < probability) // 1 - finalProbability
  297. {
  298. isseePerson = true;
  299. this.isseePerson = true;
  300. fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
  301. //IsOver = true;
  302. isEndWhile = true;
  303. }
  304. else
  305. {
  306. isseePerson = false;
  307. }
  308. if (temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
  309. {
  310. //IsOver = true;
  311. isEndWhile = true;
  312. isseePerson = false;
  313. fireIndex = currentLocation.Currentsegnum;
  314. }
  315. temptime += 10;
  316. } while (!isseePerson && !isEndWhile); //IsOver == false
  317. //finalProbability = 1 - finalProbability;
  318. if (fireIndex != -1)
  319. {
  320. // 删除目标点位置开始的所有后续航路点
  321. TurningPoints.RemoveRange(fireIndex + 1, TurningPoints.Count - fireIndex - 1);
  322. MissionPoint missionPoint = new MissionPoint
  323. {
  324. MissionPointLongitude = currentLocation.CurrentLon,
  325. MissionPointLatitude = currentLocation.CurrentLat,
  326. MissionPointHeight = currentLocation.CurrentHei
  327. };
  328. FXJHGenerate.SeaSouJiu2(FlightPlanEditor, missionPoint, ref TurningPoints);
  329. //发现的目标坐标,需要其他模型输入
  330. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, MissionEndPoint, ref TurningPoints);
  331. }
  332. if (isseePerson)
  333. {
  334. double seeTime = 0;
  335. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
  336. {
  337. for (int i = 0; i < TurningPoints.Count - 1; i++)
  338. {
  339. seeTime += TurningPoints[i].SegmentFlightTime;
  340. }
  341. //time = TotalTime; //time——搜索时间,单位:秒;数据测试用
  342. double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude; //落水人员纬度;数据测试用
  343. double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude; //落水人员经度,数据测试用
  344. double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, Days, Hour); //幸存时间
  345. // SHJParameter.person_number = Eidtor里读取 SHJParameter.windspeed Nc/Editor目标气象信息读取时间先取任务初始时间
  346. resulttime = get_result_time_rope(30, FlightPlanEditor.targetpoint[0].TargetType.Count, windSpeed, vis, 0.75, 1.38).time; //调运时间
  347. Console.WriteLine("resulttime:" + resulttime);
  348. if (survivalTime * 3600 > seeTime)
  349. {
  350. Success = true;
  351. }
  352. //Log.Info("TotalTime:" + TotalTime);
  353. //Log.Info("幸存时间:" + survivalTime);
  354. }
  355. }
  356. //Console.WriteLine(
  357. // $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
  358. Log.Info(
  359. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到目标:{isseePerson},人员是否幸存:{Success}");
  360. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  361. End();
  362. });
  363. }
  364. public static handling_result get_result_time_rope(double H, int person_number, double windspeed, double vis, double upspeed, double downspeed)
  365. {
  366. handling_result result = new handling_result();
  367. if (windspeed < 8 && vis > 3)
  368. {
  369. result.time = (person_number * H) / downspeed + (person_number * H) / upspeed;
  370. result.success = true;
  371. }
  372. else
  373. {
  374. result.success = false;
  375. }
  376. return result;
  377. }
  378. public static int GetDaysInYear(int year, int month, int day)
  379. {
  380. int[] daysInMonths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  381. if (IsLeapYear(year))
  382. {
  383. daysInMonths[1] = 29;
  384. }
  385. int days = day;
  386. for (int i = 0; i < month - 1; i++)
  387. {
  388. days += daysInMonths[i];
  389. }
  390. return days;
  391. }
  392. public static bool IsLeapYear(int year)
  393. {
  394. return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
  395. }
  396. public override void End()
  397. {
  398. for (int i = 0; i < TurningPoints.Count - 2; i++)
  399. {
  400. EffMisTime += TurningPoints[i].SegmentFlightTime;
  401. }
  402. for (int i = 0; i < TurningPoints.Count - 3; i++)
  403. {
  404. SearchTime += TurningPoints[i].SegmentFlightTime; //搜索时间
  405. }
  406. for (int i = 0; i < TurningPoints.Count; i++)
  407. {
  408. TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
  409. }
  410. TotalFuelConsumption = TurningPoints[0].RemainingFuel -
  411. TurningPoints[TurningPoints.Count - 1].RemainingFuel;
  412. //GetNCData getNCData = new GetNCData();
  413. ////getNCData.GetData();
  414. IsOver = true;
  415. }
  416. }
  417. [ObjectSystem]
  418. public class AircraftSJAwakeSystem : AwakeSystem<AircraftSJ, FlightPlanEditor>
  419. {
  420. public override void Awake(AircraftSJ self, FlightPlanEditor flightPlanEditor)
  421. {
  422. self.FlightPlanEditor = flightPlanEditor;
  423. self.helper = new EquationHelper(HttpInterface.baseUrl);
  424. self.Awake();
  425. }
  426. }