AircraftSJ.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. using KYFramework;
  2. using Model;
  3. using MuShiApp;
  4. using SimulationCommon;
  5. using SimulationSingleServer.Utils;
  6. using Unity.Mathematics;
  7. using Define = SimulationServer.Utils.Define;
  8. using Point = SimulationCommon.Point;
  9. using Random = System.Random;
  10. namespace SimulationServer;
  11. public class AircraftSJ : AircraftEntity
  12. {
  13. public bool IsOver;
  14. private MissionEndPoint MissionEndPoint;
  15. private CurrentLocation currentLocation;
  16. private double temptime = 0;
  17. private double probability = 0;
  18. private double finalProbability = 1.0;
  19. private Random random = new Random();
  20. private bool isseefire = false;
  21. private int fireIndex = -1; // 记录发现火点的位置
  22. public EquationHelper helper;
  23. public override void Start()
  24. {
  25. //TODO 计算 AirRoute[]
  26. double[] initialPosition = { 40.18801994965735, 116.41992593821296 };
  27. double dt = 1;
  28. double totalTime = 24.0;
  29. Text_readNC text_ReadNC = new Text_readNC();
  30. text_ReadNC.GetNCData();
  31. var nCread = text_ReadNC.windNCread;
  32. //漂移轨迹
  33. List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition,dt, totalTime);
  34. // 生成任务终点
  35. MissionEndPoint = new MissionEndPoint
  36. {
  37. MissionEndPointLongitude = trajectory[trajectory.Count - 1][1],
  38. MissionEndPointLatitude = trajectory[trajectory.Count - 1][0],
  39. MissionEndPointHeight = 0
  40. };
  41. var temp = SeaSJ.getminEnclosingRect(trajectory);
  42. // temp 转成 List<Point>
  43. List<Point> points = new List<Point>();
  44. foreach (var item in temp)
  45. {
  46. points.Add(new Point(item[0], item[1]));
  47. }
  48. Point basePoint = new Point(FlightPlanEditor.originbase.BaseLatitude, FlightPlanEditor.originbase.BaseLongitude);
  49. double sweepWidth = 0.2;
  50. // 生成航路点
  51. List<Point> waypoints = ParallellineSearch.parallellineSearch(basePoint, points, sweepWidth);
  52. // List<Point> 转成 List<AirRoute>
  53. List<AirRoute> airRoutes = new List<AirRoute>();
  54. foreach (var item in waypoints)
  55. {
  56. airRoutes.Add(new AirRoute
  57. {
  58. AirRouteLatitude = item.lat,
  59. AirRouteLongitude = item.lon
  60. });
  61. }
  62. FlightPlanEditor.airroute = airRoutes.ToArray();
  63. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
  64. FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
  65. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  66. Task.Run(() =>
  67. {
  68. bool isseefire = false;
  69. double temptime = 0; // 自增时间,每次增加1s
  70. CurrentLocation currentLocation = new CurrentLocation();
  71. double probability = 0;
  72. double finalProbability = 1.0;
  73. Random random = new Random();
  74. int fireIndex = -1; // 记录发现火点的位置
  75. do
  76. {
  77. (currentLocation, _) =
  78. FXJHGenerate.GetCurrentLocation(TurningPoints, FlightPlanEditor, temptime); // 获取飞机当前位置
  79. double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
  80. currentLocation.CurrentHei);
  81. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  82. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  83. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  84. //*******
  85. probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
  86. Define.WIND, 1, "落水人员", "陆地"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
  87. finalProbability *= (1 - probability);
  88. Console.WriteLine($"海上任务: {Name} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 -finalProbability},是否看到火点:{isseefire}");
  89. double randomValue = random.NextDouble(); // 生成随机数比较概率
  90. if (randomValue < (1 - finalProbability))
  91. {
  92. isseefire = true;
  93. fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
  94. IsOver = true;
  95. }
  96. else
  97. {
  98. isseefire = false;
  99. }
  100. if (temptime >= 7200) IsOver = true;
  101. temptime += 1;
  102. } while (!isseefire && IsOver == false);
  103. finalProbability = 1 - finalProbability;
  104. if (fireIndex != -1)
  105. {
  106. // 删除目标点位置开始的所有后续航路点
  107. TurningPoints.RemoveRange(fireIndex + 1, TurningPoints.Count - fireIndex - 1);
  108. MissionPoint missionPoint = new MissionPoint
  109. {
  110. MissionPointLongitude = currentLocation.CurrentLon,
  111. MissionPointLatitude = currentLocation.CurrentLat,
  112. MissionPointHeight = currentLocation.CurrentHei
  113. };
  114. FXJHGenerate.SeaSouJiu2(FlightPlanEditor, missionPoint, ref TurningPoints);
  115. //发现的目标坐标,需要其他模型输入
  116. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, MissionEndPoint, ref TurningPoints);
  117. }
  118. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  119. End();
  120. });
  121. }
  122. public override void End()
  123. {
  124. for (int i = 0; i < currentLocation.Currentsegnum + 2; i++)
  125. {
  126. EffMisTime += TurningPoints[i].SegmentFlightTime;
  127. }
  128. TotalFuelConsumption = TurningPoints[0].RemainingFuel -
  129. TurningPoints[currentLocation.Currentsegnum + 1].RemainingFuel;
  130. }
  131. }
  132. [ObjectSystem]
  133. public class AircraftSJAwakeSystem : AwakeSystem<AircraftSJ, FlightPlanEditor>
  134. {
  135. public override void Awake(AircraftSJ self, FlightPlanEditor flightPlanEditor)
  136. {
  137. self.FlightPlanEditor = flightPlanEditor;
  138. self.helper = new EquationHelper(HttpInterface.baseUrl);
  139. self.Awake();
  140. }
  141. }