|
@@ -23,10 +23,11 @@ public class AircraftSJ : AircraftEntity
|
|
|
private int fireIndex = -1; // 记录发现火点的位置
|
|
|
public EquationHelper helper;
|
|
|
public SeaSouJiuTask taskContent;
|
|
|
- public bool Success = true; //本目标搜救是否成功
|
|
|
+ public bool Success = false; //本目标搜救是否成功
|
|
|
public GetNCData getNCData;
|
|
|
|
|
|
public SearchMissionMode SearchMode;
|
|
|
+
|
|
|
public override void Reset()
|
|
|
{
|
|
|
base.Reset();
|
|
@@ -57,7 +58,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
//漂移轨迹
|
|
|
List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition, dt, totalTime);
|
|
|
|
|
|
- Log.Info(trajectory.ToJson());
|
|
|
// 生成任务终点
|
|
|
MissionEndPoint = new MissionEndPoint
|
|
|
{
|
|
@@ -137,6 +137,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
var temp3 = new Point(centerPoint.lat - max / 2, centerPoint.lon - max / 2);
|
|
|
waypoints = TZFX.GenerateWaypoints(temp0, temp1, temp2, temp3, max, SearchMode.SearchWidth);
|
|
|
}
|
|
|
+
|
|
|
// List<Point> 转成 List<AirRoute>
|
|
|
List<AirRoute> airRoutes = new List<AirRoute>();
|
|
|
foreach (var item in waypoints)
|
|
@@ -163,11 +164,18 @@ public class AircraftSJ : AircraftEntity
|
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
|
|
|
|
|
|
|
+ double time = 0; // 第一次 搜寻结束
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
|
+ {
|
|
|
+ time += TurningPoints[i].SegmentFlightTime;
|
|
|
+ }
|
|
|
+
|
|
|
double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
|
|
|
FlightPlanEditor.targetpoint[0].TargetPointLatitude,
|
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
|
|
|
|
- double pb = helper.getPb(targetPoint.x, targetPoint.y);
|
|
|
+ string cityName = helper.getCityName(targetPoint.x,targetPoint.y);
|
|
|
+ var vis = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
|
|
getNCData = new GetNCData();
|
|
|
getNCData.GetData();
|
|
@@ -183,6 +191,20 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
do
|
|
|
{
|
|
|
+ if (!isseePerson && temptime >= time)
|
|
|
+ {
|
|
|
+ FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
|
|
|
+ FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
|
+
|
|
|
+ time = 0;
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
|
+ {
|
|
|
+ time += TurningPoints[i].SegmentFlightTime;
|
|
|
+ }
|
|
|
+ Log.Info($"+++++++++++搜寻结束 TurningPoints Count: { TurningPoints.Count } 下次结束的时间 { time }++++++++++++++++");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
(currentLocation, _) =
|
|
|
FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
|
|
|
double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
|
|
@@ -202,22 +224,24 @@ public class AircraftSJ : AircraftEntity
|
|
|
var waveHigh = SeaSJ.GetWaveHeightFromAPI(nCread, currentLocation.CurrentLon,
|
|
|
currentLocation.CurrentLat, temptime);
|
|
|
|
|
|
- var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x, currentLocation.CurrentLat,
|
|
|
+ var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
|
|
|
+ currentLocation.CurrentLat,
|
|
|
targetPoint.y);
|
|
|
Log.Info("距离:====================" + distance);
|
|
|
- if (distance < 20)
|
|
|
- {
|
|
|
- probability = helper.getProbability(aricraftPoint, targetPoint,pb, currentLocation.CurrentCourse,
|
|
|
- windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
- }
|
|
|
+ probability =
|
|
|
+ helper.GetMushiSeaProbability(aricraftPoint, vis, waveHigh, FlightPlanEditor.targetpoint[0]);
|
|
|
|
|
|
- //finalProbability *= (1 - probability);
|
|
|
+ // probability = helper.getProbability(aricraftPoint, targetPoint,pb, currentLocation.CurrentCourse,
|
|
|
+ // windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
|
|
|
|
|
|
- Console.WriteLine(
|
|
|
+ //finalProbability *= (1 - probability);
|
|
|
+
|
|
|
+ // 到搜寻航路点的最后一个点 (?)
|
|
|
+ Log.Info(
|
|
|
$"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
|
|
|
-
|
|
|
- double randomValue = random.NextDouble(); // 生成随机数比较概率
|
|
|
- if (randomValue < probability) // 1 - finalProbability
|
|
|
+ double randomValue = random.NextInt64(9000,10000); // 生成随机数比较概率
|
|
|
+ randomValue /= 10000;
|
|
|
+ if (randomValue < probability) // 1 - finalProbability
|
|
|
{
|
|
|
isseePerson = true;
|
|
|
this.isseePerson = true;
|
|
@@ -228,12 +252,44 @@ public class AircraftSJ : AircraftEntity
|
|
|
{
|
|
|
isseePerson = false;
|
|
|
}
|
|
|
-
|
|
|
+ if(temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
|
|
|
+ {
|
|
|
+ IsOver = true;
|
|
|
+ isseePerson = false;
|
|
|
+ }
|
|
|
temptime += 10;
|
|
|
} while (!isseePerson && IsOver == false);
|
|
|
+ if (isseePerson)
|
|
|
+ {
|
|
|
+
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 1; i++)
|
|
|
+ {
|
|
|
+ TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
|
|
|
+ }
|
|
|
+
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ Log.Info("TotalTime:" + TotalTime);
|
|
|
+ Log.Info("幸存时间:" + survivalTime);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
//Console.WriteLine(
|
|
|
// $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
|
|
|
- Console.WriteLine(
|
|
|
+ Log.Info(
|
|
|
$"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson},人员是否幸存:{Success}");
|
|
|
|
|
|
//finalProbability = 1 - finalProbability;
|
|
@@ -285,25 +341,10 @@ public class AircraftSJ : AircraftEntity
|
|
|
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 * 3600 > time)
|
|
|
- {
|
|
|
- Success = true;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- Success = false;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|