|
@@ -5,7 +5,6 @@ using MuShiApp;
|
|
|
using SimulationCommon;
|
|
|
using SimulationSingleServer.Utils;
|
|
|
using Unity.Mathematics;
|
|
|
-using Define = SimulationServer.Utils.Define;
|
|
|
using Point = SimulationCommon.Point;
|
|
|
using Random = System.Random;
|
|
|
|
|
@@ -20,32 +19,38 @@ public class AircraftSJ : AircraftEntity
|
|
|
private double temptime = 0;
|
|
|
private double probability = 0;
|
|
|
private double finalProbability = 1.0;
|
|
|
- private Random random = new Random();
|
|
|
private bool isseefire = false;
|
|
|
private int fireIndex = -1; // 记录发现火点的位置
|
|
|
public EquationHelper helper;
|
|
|
+ public SeaSouJiuTask taskContent;
|
|
|
+ public bool Success = true; //本目标搜救是否成功
|
|
|
|
|
|
public override void Start()
|
|
|
{
|
|
|
//TODO 计算 AirRoute[]
|
|
|
- double[] initialPosition = { FlightPlanEditor.targetpoint[0].TargetPointLatitude, FlightPlanEditor.targetpoint[0].TargetPointLongitude };
|
|
|
+ double[] initialPosition =
|
|
|
+ {
|
|
|
+ FlightPlanEditor.targetpoint[0].TargetPointLatitude, FlightPlanEditor.targetpoint[0].TargetPointLongitude
|
|
|
+ };
|
|
|
double dt = 1;
|
|
|
double totalTime = 24.0;
|
|
|
-
|
|
|
+
|
|
|
Text_readNC text_ReadNC = new Text_readNC();
|
|
|
text_ReadNC.GetNCData();
|
|
|
+ text_ReadNC.GetWaveHighData();
|
|
|
var nCread = text_ReadNC.windNCread;
|
|
|
+
|
|
|
//漂移轨迹
|
|
|
- List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition,dt, totalTime);
|
|
|
-
|
|
|
+ List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition, dt, totalTime);
|
|
|
+
|
|
|
// 生成任务终点
|
|
|
MissionEndPoint = new MissionEndPoint
|
|
|
{
|
|
|
- MissionEndPointLongitude = trajectory[trajectory.Count - 1][1],
|
|
|
- MissionEndPointLatitude = trajectory[trajectory.Count - 1][0],
|
|
|
+ MissionEndPointLongitude = trajectory[^1][1],
|
|
|
+ MissionEndPointLatitude = trajectory[^1][0],
|
|
|
MissionEndPointHeight = 0
|
|
|
};
|
|
|
-
|
|
|
+
|
|
|
var temp = SeaSJ.getminEnclosingRect(trajectory);
|
|
|
// temp 转成 List<Point>
|
|
|
List<Point> points = new List<Point>();
|
|
@@ -53,13 +58,30 @@ public class AircraftSJ : AircraftEntity
|
|
|
{
|
|
|
points.Add(new Point(item[0], item[1]));
|
|
|
}
|
|
|
-
|
|
|
- Point basePoint = new Point(FlightPlanEditor.originbase.BaseLatitude, FlightPlanEditor.originbase.BaseLongitude);
|
|
|
- double sweepWidth = 0.2;
|
|
|
- // 生成航路点
|
|
|
- List<Point> waypoints = ParallellineSearch.parallellineSearch(basePoint, points, sweepWidth);
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+ Point basePoint = new Point(FlightPlanEditor.originbase.BaseLatitude,
|
|
|
+ FlightPlanEditor.originbase.BaseLongitude);
|
|
|
+ List<Point> waypoints = new List<Point>();
|
|
|
+ //*******
|
|
|
+ if (taskContent.SearchMode == "平行线搜索")
|
|
|
+ {
|
|
|
+ waypoints = ParallellineSearch.parallellineSearch(basePoint, points, taskContent.SearchWidth);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (taskContent.SearchMode == "扇形搜索")
|
|
|
+ {
|
|
|
+ waypoints = SectorSearch.PerformSearch(taskContent.SearchWidth);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (taskContent.SearchMode == "拓展方形搜索")
|
|
|
+ {
|
|
|
+ waypoints = TZFX.GenerateWaypoints(points[0], points[1], points[2], points[3], 20, taskContent.SearchWidth);
|
|
|
+ }
|
|
|
+ Log.Info( FlightPlanEditor.targetpoint[0].ToJson());
|
|
|
+ Log.Info("===========================");
|
|
|
+ Log.Info(points.ToJson());
|
|
|
+ Log.Info("===========================");
|
|
|
+ Log.Info(waypoints.ToJson());
|
|
|
// List<Point> 转成 List<AirRoute>
|
|
|
List<AirRoute> airRoutes = new List<AirRoute>();
|
|
|
foreach (var item in waypoints)
|
|
@@ -70,7 +92,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
AirRouteLongitude = item.lon
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
FlightPlanEditor.airroute = airRoutes.ToArray();
|
|
|
|
|
|
FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
|
|
@@ -85,7 +107,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
double temptime = 0; // 自增时间,每次增加1s
|
|
|
CurrentLocation currentLocation = new CurrentLocation();
|
|
|
double probability = 0;
|
|
|
- double finalProbability = 1.0;
|
|
|
+ double finalProbability = 1.0;
|
|
|
Random random = new Random();
|
|
|
int fireIndex = -1; // 记录发现火点的位置
|
|
|
|
|
@@ -100,14 +122,48 @@ public class AircraftSJ : AircraftEntity
|
|
|
FlightPlanEditor.targetpoint[0].TargetPointLatitude,
|
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
|
|
|
|
- //*******
|
|
|
+
|
|
|
+ var wind = SeaSJ.GetWindVelocityFromAPI(nCread, currentLocation.CurrentLat, currentLocation.CurrentLon,
|
|
|
+ temptime);
|
|
|
+
|
|
|
+
|
|
|
+ var windSpeed = Math.Sqrt(wind[0] * wind[0] + wind[1] * wind[1]);
|
|
|
+
|
|
|
+ var waveHigh = SeaSJ.GetWaveHeightFromAPI(nCread, currentLocation.CurrentLon,
|
|
|
+ currentLocation.CurrentLat, temptime);
|
|
|
+
|
|
|
+ // var distance = Utils.Util.GetDistance(currentLocation.CurrentLon,targetPoint.x, currentLocation.CurrentLat,
|
|
|
+ // targetPoint.y);
|
|
|
+ // Log.Info("距离:====================" + distance);
|
|
|
+ // if (distance < 3)
|
|
|
+ // {
|
|
|
+ // probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
|
+ // windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
+ // }
|
|
|
+
|
|
|
+
|
|
|
probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
|
- Define.WIND, 1, "落水人员", "陆地"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
+ windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
+
|
|
|
+ // if (taskContent.SearchMode == "雷达搜索")
|
|
|
+ // {
|
|
|
+ // probability = DectionModel.Radar(taskContent.DetectionWavelength, taskContent.MinDetectionSignal, taskContent.RadarTransmitterPower,taskContent.TransmitAntennaGain, taskContent.ReceiveAntennaGain, taskContent.)
|
|
|
+ // }
|
|
|
+ //
|
|
|
+ // if (taskContent.SearchMode == "光电搜索")
|
|
|
+ // {
|
|
|
+ // //搜寻目标相对搜救力量的侧向距离
|
|
|
+ // probability = DectionModel.GuangDian(taskContent.OpticalTowerHorizontalRange,
|
|
|
+ // taskContent.InfraredDetectorFieldAngle, taskContent.FlightHeight,,
|
|
|
+ // FlightPlanEditor.cityweather.Visibility);
|
|
|
+ // }
|
|
|
+
|
|
|
|
|
|
finalProbability *= (1 - probability);
|
|
|
-
|
|
|
- Console.WriteLine($"海上任务: {Name} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 -finalProbability},是否看到落水人员:{isseefire}");
|
|
|
-
|
|
|
+
|
|
|
+ Console.WriteLine(
|
|
|
+ $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseefire}");
|
|
|
+
|
|
|
double randomValue = random.NextDouble(); // 生成随机数比较概率
|
|
|
if (randomValue < (1 - finalProbability))
|
|
|
{
|
|
@@ -120,7 +176,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
isseefire = false;
|
|
|
}
|
|
|
|
|
|
- if (temptime >= 7200) IsOver = true;
|
|
|
+ // if (temptime >= 7200) IsOver = true;
|
|
|
|
|
|
temptime += 1;
|
|
|
} while (!isseefire && IsOver == false);
|
|
@@ -147,7 +203,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
|
|
|
|
- Log.Info(TurningPoints.ToJson());
|
|
|
End();
|
|
|
});
|
|
|
}
|
|
@@ -155,14 +210,44 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
public override void End()
|
|
|
{
|
|
|
-
|
|
|
- for (int i = 0; i < currentLocation.Currentsegnum + 2; i++)
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
|
{
|
|
|
EffMisTime += TurningPoints[i].SegmentFlightTime;
|
|
|
}
|
|
|
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 3; i++)
|
|
|
+ {
|
|
|
+ SearchTime += TurningPoints[i].SegmentFlightTime; //搜索时间
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int i = 0; i < TurningPoints.Count; i++)
|
|
|
+ {
|
|
|
+ TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel -
|
|
|
- TurningPoints[currentLocation.Currentsegnum + 1].RemainingFuel;
|
|
|
+ TurningPoints[TurningPoints.Count - 1].RemainingFuel;
|
|
|
+ // GetNCData getNCData = new GetNCData();
|
|
|
+ // getNCData.GetData();
|
|
|
+ //
|
|
|
+ // double time = TotalTime; //time——搜索时间,单位:秒;数据测试用
|
|
|
+ //
|
|
|
+ // double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude; //落水人员纬度;数据测试用
|
|
|
+ // double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude; //落水人员经度,数据测试用
|
|
|
+ //
|
|
|
+ // double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time); //幸存时间
|
|
|
+ //
|
|
|
+ //
|
|
|
+ //
|
|
|
+ // if (survivalTime > time)
|
|
|
+ // {
|
|
|
+ // Success = true;
|
|
|
+ // }
|
|
|
+ // else
|
|
|
+ // {
|
|
|
+ // Success = false;
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
|