|
@@ -25,8 +25,18 @@ public class AircraftSJ : AircraftEntity
|
|
|
public SeaSouJiuTask taskContent;
|
|
|
public bool Success = true; //本目标搜救是否成功
|
|
|
|
|
|
+ public override void Reset()
|
|
|
+ {
|
|
|
+ base.Reset();
|
|
|
+ IsOver = false;
|
|
|
+ isseefire = false;
|
|
|
+ Success = true;
|
|
|
+ }
|
|
|
+
|
|
|
public override void Start()
|
|
|
{
|
|
|
+ Velocitys = new double[5] {220, 220, 60, 110, 0}; // 速度
|
|
|
+
|
|
|
//TODO 计算 AirRoute[]
|
|
|
double[] initialPosition =
|
|
|
{
|
|
@@ -71,19 +81,60 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
if (taskContent.SearchMode == "扇形搜索")
|
|
|
{
|
|
|
- waypoints = SectorSearch.PerformSearch(taskContent.SearchWidth);
|
|
|
+ // 求 points 的中心点
|
|
|
+ var startPoint1 = new Point
|
|
|
+ {
|
|
|
+ lat = points[0].lat/2 + points[1].lat/2,
|
|
|
+ lon = points[0].lon/2 + points[1].lon/2
|
|
|
+ };
|
|
|
+ var startPoint2 = new Point
|
|
|
+ {
|
|
|
+ lat = points[2].lat/2 + points[3].lat/2,
|
|
|
+ lon = points[2].lon/2 + points[3].lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+ var centerPoint = new Point
|
|
|
+ {
|
|
|
+ lat = startPoint1.lat/2 + startPoint2.lat/2,
|
|
|
+ lon = startPoint1.lon/2 + startPoint2.lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+ waypoints = SectorSearch.sectorSearch(centerPoint, 30, taskContent.SearchWidth);
|
|
|
}
|
|
|
|
|
|
if (taskContent.SearchMode == "扩展矩形搜索")
|
|
|
{
|
|
|
- waypoints = TZFX.GenerateWaypoints(points[0], points[1], points[2], points[3], 20, taskContent.SearchWidth);
|
|
|
+ // 求 points 的中心点
|
|
|
+ var startPoint1 = new Point
|
|
|
+ {
|
|
|
+ lat = points[0].lat/2 + points[1].lat/2,
|
|
|
+ lon = points[0].lon/2 + points[1].lon/2
|
|
|
+ };
|
|
|
+ var startPoint2 = new Point
|
|
|
+ {
|
|
|
+ lat = points[2].lat/2 + points[3].lat/2,
|
|
|
+ lon = points[2].lon/2 + points[3].lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+ var centerPoint = new Point
|
|
|
+ {
|
|
|
+ lat = startPoint1.lat/2 + startPoint2.lat/2,
|
|
|
+ lon = startPoint1.lon/2 + startPoint2.lon/2
|
|
|
+ };
|
|
|
+ // 以 centerPoint 为中心,生成正方形区域
|
|
|
+ var lonD = Math.Abs(points[0].lon - points[1].lon);
|
|
|
+ var latD1 = Math.Abs(points[1].lat - points[2].lat);
|
|
|
+ var max = Math.Max(lonD, latD1);
|
|
|
+
|
|
|
+ // 以 distance 为边长 以 centerPoint 为中心点的正方形
|
|
|
+ // 初始正方形的边长 为 矩形搜索区域短边的 1/5
|
|
|
+ var temp0 = new Point(centerPoint.lat + max/2, centerPoint.lon - max/2);
|
|
|
+ var temp1 = new Point(centerPoint.lat + max/2, centerPoint.lon + max/2);
|
|
|
+ var temp2 = new Point(centerPoint.lat - max/2, centerPoint.lon + max/2);
|
|
|
+ var temp3 = new Point(centerPoint.lat - max/2, centerPoint.lon - max/2);
|
|
|
+ waypoints = TZFX.GenerateWaypoints(temp0, temp1, temp2, temp3, max, taskContent.SearchWidth);
|
|
|
}
|
|
|
- Log.Info("===========================");
|
|
|
- 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)
|
|
@@ -94,11 +145,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
AirRouteLongitude = item.lon
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
- // var distance = Utils.Util.GetDistance(waypoints[0].lon,FlightPlanEditor.targetpoint[0].TargetPointLongitude, waypoints[0].lat,
|
|
|
- // FlightPlanEditor.targetpoint[0].TargetPointLatitude);
|
|
|
- // var distance1 = Utils.Util.GetDistance(waypoints[0].lon,FlightPlanEditor.originbase.BaseLongitude, waypoints[0].lat,
|
|
|
- // FlightPlanEditor.originbase.BaseLatitude);
|
|
|
|
|
|
FlightPlanEditor.airroute = airRoutes.ToArray();
|
|
|
|
|
@@ -127,7 +173,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
do
|
|
|
{
|
|
|
(currentLocation, _) =
|
|
|
- FXJHGenerate.GetCurrentLocation(TurningPoints, FlightPlanEditor, temptime); // 获取飞机当前位置
|
|
|
+ FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
|
|
|
double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
|
|
|
currentLocation.CurrentHei);
|
|
|
|
|
@@ -153,24 +199,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
|
windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- // probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
|
- // 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);
|
|
|
|
|
@@ -189,11 +217,10 @@ public class AircraftSJ : AircraftEntity
|
|
|
isseefire = false;
|
|
|
}
|
|
|
|
|
|
- // if (temptime >= 7200) IsOver = true;
|
|
|
-
|
|
|
- temptime += 1;
|
|
|
+ temptime += 10;
|
|
|
} while (!isseefire && IsOver == false);
|
|
|
-
|
|
|
+ Console.WriteLine(
|
|
|
+ $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseefire}");
|
|
|
finalProbability = 1 - finalProbability;
|
|
|
|
|
|
if (fireIndex != -1)
|
|
@@ -241,26 +268,27 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
TotalFuelConsumption = TurningPoints[0].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;
|
|
|
- // }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ 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 * 3600 > time)
|
|
|
+ {
|
|
|
+ Success = true;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Success = false;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|