|
@@ -14,14 +14,13 @@ namespace SimulationServer;
|
|
public class AircraftLandSJ : AircraftEntity
|
|
public class AircraftLandSJ : AircraftEntity
|
|
{
|
|
{
|
|
public bool IsOver;
|
|
public bool IsOver;
|
|
-
|
|
|
|
|
|
+
|
|
public LandSouJiuTask taskContent;
|
|
public LandSouJiuTask taskContent;
|
|
public EquationHelper helper;
|
|
public EquationHelper helper;
|
|
public GetNCData getNCData;
|
|
public GetNCData getNCData;
|
|
public bool isseePerson = false;
|
|
public bool isseePerson = false;
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
public override void Reset()
|
|
public override void Reset()
|
|
{
|
|
{
|
|
base.Reset();
|
|
base.Reset();
|
|
@@ -33,11 +32,12 @@ public class AircraftLandSJ : AircraftEntity
|
|
public override void Start()
|
|
public override void Start()
|
|
{
|
|
{
|
|
Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
|
|
Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
|
|
-
|
|
|
|
|
|
+
|
|
// TODO 这些参数应该在任务配置文件中, 与王子涵确认
|
|
// TODO 这些参数应该在任务配置文件中, 与王子涵确认
|
|
- List<double[]> route = ContourSearch.ContourSearch1(taskContent.Poly, taskContent.interval, taskContent.MinLength, taskContent.TrueH, taskContent.JG, ContourSearch.DemHelper());
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ List<double[]> route = ContourSearch.ContourSearch1(taskContent.Poly, taskContent.interval,
|
|
|
|
+ taskContent.MinLength, taskContent.TrueH, taskContent.JG, ContourSearch.DemHelper());
|
|
|
|
+
|
|
|
|
+
|
|
// route 转成 List<AirRoute>
|
|
// route 转成 List<AirRoute>
|
|
List<AirRoute> airRoutes = new List<AirRoute>();
|
|
List<AirRoute> airRoutes = new List<AirRoute>();
|
|
foreach (var item in route)
|
|
foreach (var item in route)
|
|
@@ -45,7 +45,8 @@ public class AircraftLandSJ : AircraftEntity
|
|
airRoutes.Add(new AirRoute
|
|
airRoutes.Add(new AirRoute
|
|
{
|
|
{
|
|
AirRouteLatitude = item[1],
|
|
AirRouteLatitude = item[1],
|
|
- AirRouteLongitude = item[0]
|
|
|
|
|
|
+ AirRouteLongitude = item[0],
|
|
|
|
+ AirRouteHeight = item[2]
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -83,8 +84,8 @@ public class AircraftLandSJ : AircraftEntity
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
- var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x, currentLocation.CurrentLat,
|
|
|
|
|
|
+ var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
|
|
|
|
+ currentLocation.CurrentLat,
|
|
targetPoint.y);
|
|
targetPoint.y);
|
|
Log.Info("距离:====================" + distance);
|
|
Log.Info("距离:====================" + distance);
|
|
if (distance < 20)
|
|
if (distance < 20)
|
|
@@ -93,7 +94,7 @@ public class AircraftLandSJ : AircraftEntity
|
|
probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
|
|
finalProbability *= (1 - probability);
|
|
finalProbability *= (1 - probability);
|
|
|
|
|
|
@@ -115,6 +116,7 @@ public class AircraftLandSJ : AircraftEntity
|
|
|
|
|
|
temptime += 10;
|
|
temptime += 10;
|
|
} while (!isseePerson && IsOver == false);
|
|
} while (!isseePerson && IsOver == false);
|
|
|
|
+
|
|
//Console.WriteLine(
|
|
//Console.WriteLine(
|
|
// $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
|
|
// $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
|
|
Console.WriteLine(
|
|
Console.WriteLine(
|
|
@@ -168,7 +170,6 @@ public class AircraftLandSJ : AircraftEntity
|
|
|
|
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel -
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel -
|
|
TurningPoints[TurningPoints.Count - 1].RemainingFuel;
|
|
TurningPoints[TurningPoints.Count - 1].RemainingFuel;
|
|
-
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|