|
@@ -13,6 +13,7 @@ public class AircraftDY : AircraftEntity
|
|
public bool IsOver;
|
|
public bool IsOver;
|
|
public bool Success;
|
|
public bool Success;
|
|
public TaskParameter taskParameter;
|
|
public TaskParameter taskParameter;
|
|
|
|
+ public GetNCData getNCData;
|
|
public override void End()
|
|
public override void End()
|
|
{
|
|
{
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel - TurningPoints[^1].RemainingFuel;
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel - TurningPoints[^1].RemainingFuel;
|
|
@@ -28,6 +29,16 @@ public class AircraftDY : AircraftEntity
|
|
|
|
|
|
public override void Start()
|
|
public override void Start()
|
|
{
|
|
{
|
|
|
|
+ getNCData = new GetNCData();
|
|
|
|
+ getNCData.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
|
|
|
|
+ getNCData.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
|
|
|
|
+ getNCData.GetData();
|
|
|
|
+ Text_readNC text_ReadNC = new Text_readNC();
|
|
|
|
+ text_ReadNC.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
|
|
|
|
+ text_ReadNC.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
|
|
|
|
+
|
|
|
|
+ text_ReadNC.GetNCData();
|
|
|
|
+
|
|
int hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
|
|
int hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
|
|
|
|
|
|
double windSpeed = Convert.ToDouble(TargetQiXiangInfoSave("风速", hour));
|
|
double windSpeed = Convert.ToDouble(TargetQiXiangInfoSave("风速", hour));
|
|
@@ -40,15 +51,6 @@ public class AircraftDY : AircraftEntity
|
|
FlightPlanEditor.missionpoint.MissionPointHeight = FlightPlanEditor.targetpoint[0].TargetPointHeight;
|
|
FlightPlanEditor.missionpoint.MissionPointHeight = FlightPlanEditor.targetpoint[0].TargetPointHeight;
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints);
|
|
FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints);
|
|
|
|
|
|
double resulttime = get_result_time_rope(taskParameter.Height, taskParameter.liftPersonnel, windSpeed, vis, taskParameter.liftUpSpeed, taskParameter.liftDownSpeed).time;
|
|
double resulttime = get_result_time_rope(taskParameter.Height, taskParameter.liftPersonnel, windSpeed, vis, taskParameter.liftUpSpeed, taskParameter.liftDownSpeed).time;
|
|
@@ -58,13 +60,64 @@ public class AircraftDY : AircraftEntity
|
|
FXJHGenerate.FromMissionToEnd(FlightPlanEditor, FXJHGenerate.SuoHuaJiangMissionEndPoint(FlightPlanEditor), ref TurningPoints);
|
|
FXJHGenerate.FromMissionToEnd(FlightPlanEditor, FXJHGenerate.SuoHuaJiangMissionEndPoint(FlightPlanEditor), ref TurningPoints);
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
|
|
|
|
|
|
+
|
|
|
|
+ double time = 0;
|
|
|
|
+ for (int i = 0; i < TurningPoints.Count - 1; i++)
|
|
|
|
+ {
|
|
|
|
+ time += TurningPoints[i].SegmentFlightTime;
|
|
|
|
+ }
|
|
|
|
+ isSea = true;
|
|
|
|
+
|
|
|
|
+ if (isSea)
|
|
|
|
+ {
|
|
|
|
+ if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
|
|
|
|
+ {
|
|
|
|
+ double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
|
|
|
|
+ double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
|
|
|
|
+ int Days;
|
|
|
|
+ int Hour;
|
|
|
|
+ int Year = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[0]);
|
|
|
|
+ int Month = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0]);
|
|
|
|
+ int Day = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0]);
|
|
|
|
+ Hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
|
|
|
|
+ Days = GetDaysInYear(Year, Month, Day);
|
|
|
|
+ double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, Days, Hour);
|
|
|
|
+ Console.WriteLine("survivalTime:" + survivalTime);
|
|
|
|
+ if (survivalTime * 3600 > time)
|
|
|
|
+ {
|
|
|
|
+ Success = true;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ Success = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }else if(isLand)
|
|
|
|
+ {
|
|
|
|
+ if (FlightPlanEditor.targetpoint[0].TargetType.Type == "遇险人员")
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ if (FlightPlanEditor.targetpoint[0].TargetType.LiveTime > time)
|
|
|
|
+ {
|
|
|
|
+ Success = true;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ Success = false;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
for (int i = 0; i < TurningPoints.Count; i++)
|
|
for (int i = 0; i < TurningPoints.Count; i++)
|
|
{
|
|
{
|
|
TotalTime += TurningPoints[i].SegmentFlightTime;
|
|
TotalTime += TurningPoints[i].SegmentFlightTime;
|
|
}
|
|
}
|
|
Console.WriteLine("TotalTime:" + TotalTime);
|
|
Console.WriteLine("TotalTime:" + TotalTime);
|
|
IsOver = true;
|
|
IsOver = true;
|
|
- Success = true;
|
|
|
|
End();
|
|
End();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -165,6 +218,26 @@ public class AircraftDY : AircraftEntity
|
|
}
|
|
}
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public static int GetDaysInYear(int year, int month, int day)
|
|
|
|
+ {
|
|
|
|
+ int[] daysInMonths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
|
|
|
|
+ if (IsLeapYear(year))
|
|
|
|
+ {
|
|
|
|
+ daysInMonths[1] = 29;
|
|
|
|
+ }
|
|
|
|
+ int days = day;
|
|
|
|
+ for (int i = 0; i < month - 1; i++)
|
|
|
|
+ {
|
|
|
|
+ days += daysInMonths[i];
|
|
|
|
+ }
|
|
|
|
+ return days;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static bool IsLeapYear(int year)
|
|
|
|
+ {
|
|
|
|
+ return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
public class handling_result
|
|
public class handling_result
|