AircraftDY.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. using KYFramework;
  2. using Model;
  3. using MongoDB.Bson;
  4. using SimulationCommon;
  5. namespace SimulationServer;
  6. public class AircraftDY : AircraftEntity
  7. {
  8. public TaskParameter SHJParameter;
  9. public KZDYTask taskContent;
  10. public MissionEndPoint MissionEndPoint;
  11. public bool IsOver;
  12. public bool Success;
  13. public TaskParameter taskParameter;
  14. public GetNCData getNCData;
  15. public override void End()
  16. {
  17. TotalFuelConsumption = TurningPoints[0].RemainingFuel - TurningPoints[^1].RemainingFuel;
  18. }
  19. public override void Reset()
  20. {
  21. base.Reset();
  22. IsOver = false;
  23. Success = false;
  24. TotalTime = 0;
  25. }
  26. public override void Start()
  27. {
  28. getNCData = new GetNCData();
  29. getNCData.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  30. getNCData.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  31. getNCData.GetData();
  32. Text_readNC text_ReadNC = new Text_readNC();
  33. text_ReadNC.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  34. text_ReadNC.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  35. //text_ReadNC = new Text_readNC();
  36. text_ReadNC.GetNCData();
  37. int hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
  38. //Console.WriteLine("hour:" + hour);
  39. double windSpeed = Convert.ToDouble(TargetQiXiangInfoSave("风速", hour));
  40. //Console.WriteLine("windSpeed:" + windSpeed);
  41. double vis = Convert.ToDouble(TargetQiXiangInfoSave("能见度", hour));
  42. //Console.WriteLine("vis:" + vis);
  43. FlightPlanEditor.missionpoint.MissionPointLatitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  44. FlightPlanEditor.missionpoint.MissionPointLongitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  45. FlightPlanEditor.missionpoint.MissionPointHeight = FlightPlanEditor.targetpoint[0].TargetPointHeight;
  46. //Console.WriteLine("Latitude:" + FlightPlanEditor.missionpoint.MissionPointLatitude + "_" + "Longitude:" + FlightPlanEditor.missionpoint.MissionPointLongitude + "_" + "Height:" + FlightPlanEditor.missionpoint.MissionPointHeight);
  47. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints);//生成从起点到任务段起点的航路点
  48. // 吊运上升速度 吊运下降速度 Task文件读取 // Editor里读天气根据时间
  49. double resulttime = get_result_time_rope(taskParameter.Height, taskParameter.liftPersonnel, windSpeed, vis, taskParameter.liftUpSpeed, taskParameter.liftDownSpeed).time;//索滑降模型输出的索滑降时间
  50. Console.WriteLine("resulttime:" + resulttime);
  51. FXJHGenerate.SuoHuaJiang(resulttime, FlightPlanEditor, ref TurningPoints);
  52. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, FXJHGenerate.SuoHuaJiangMissionEndPoint(FlightPlanEditor), ref TurningPoints);
  53. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  54. // 飞到目标点时间与人员存活时间做对比 有一个人活着,整个任务成功
  55. double time = 0;
  56. for (int i = 0; i < TurningPoints.Count - 1; i++) // 总飞行时间
  57. {
  58. time += TurningPoints[i].SegmentFlightTime; // 总时间 // 判断幸存-1
  59. }
  60. //Console.WriteLine("time:" + time);
  61. // 类型只有人,其它不影响任务成功率 ,所有目标都影响识别成功率 任务准备时间 分钟 平均搜索时间 小时 平均救助时间 秒 总飞行时间 小时 第一列加单位
  62. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
  63. {
  64. double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude; //落水人员纬度;数据测试用
  65. double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude; //落水人员经度,数据测试用
  66. int Days;
  67. int Hour;
  68. int Year = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[0]);
  69. int Month = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0]);
  70. int Day = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0]);
  71. Hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
  72. Days = GetDaysInYear(Year, Month, Day);
  73. double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, Days, Hour); //幸存时间
  74. //Console.WriteLine("survivalTime:" + survivalTime * 3600);
  75. if (survivalTime * 3600 > time)
  76. {
  77. Success = true;
  78. //Console.WriteLine("Success:" + true);
  79. }
  80. else
  81. {
  82. Success = false;
  83. //Console.WriteLine("Success:" + false);
  84. }
  85. }
  86. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "遇险人员")
  87. {
  88. if (FlightPlanEditor.targetpoint[0].TargetType.LiveTime > time) //陆上搜寻预期存活时间读配置文件
  89. {
  90. Success = true;
  91. //Console.WriteLine("Success:" + true);
  92. }
  93. else
  94. {
  95. Success = false;
  96. //Console.WriteLine("Success:" + false);
  97. }
  98. }
  99. for (int i = 0; i < TurningPoints.Count; i++) // 总飞行时间
  100. {
  101. TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间 //仿真轮次1 数值1
  102. }
  103. Console.WriteLine("TotalTime:" + TotalTime);
  104. IsOver = true;
  105. End();
  106. }
  107. // --接口
  108. // --输入
  109. // --
  110. // 1)吊运高度(m)
  111. //--H(double)
  112. // 2)吊运人数
  113. //--person_number(int)
  114. // 3)风速(m/s)
  115. //--windspeed(double)
  116. // 4)能见度(m/)
  117. // --vis(double)
  118. // 5)吊运上升速度(m/s)
  119. //--upspeed(double)
  120. // 6)吊运下降速度(m/s)
  121. //--downspeed(double)
  122. // --
  123. // --输出
  124. // --
  125. // 1)能否吊运、吊运时间
  126. //--result(handling_result)
  127. // --
  128. //--定义handling_result类
  129. // 吊运函数
  130. public static handling_result get_result_time_rope(double H, int person_number, double windspeed, double vis, double upspeed, double downspeed)
  131. {
  132. handling_result result = new handling_result();
  133. if (windspeed < 8 && vis > 3)
  134. {
  135. result.time = (person_number * H) / downspeed + (person_number * H) / upspeed;
  136. result.success = true;
  137. }
  138. else
  139. {
  140. result.success = false;
  141. }
  142. return result;
  143. }
  144. public string TargetQiXiangInfoSave(string s, int hour)
  145. {
  146. string result = hour.ToString() + "-" + s;
  147. switch (s)
  148. {
  149. case "温度":
  150. if (hour >= 0 && hour < 8)
  151. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Temperature_00_08.ToString();
  152. else if (hour >= 8 && hour < 19)
  153. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Temperature_08_19.ToString();
  154. else if (hour >= 19 && hour <= 24)
  155. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Temperature_19_24.ToString();
  156. break;
  157. case "湿度":
  158. if (hour >= 0 && hour < 8)
  159. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Humidity_00_08.ToString();
  160. else if (hour >= 8 && hour < 19)
  161. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Humidity_08_19.ToString();
  162. else if (hour >= 19 && hour <= 24)
  163. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Humidity_19_24.ToString();
  164. break;
  165. case "能见度":
  166. if (hour >= 0 && hour < 8)
  167. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Visibility_00_08.ToString();
  168. else if (hour >= 8 && hour < 19)
  169. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Visibility_08_19.ToString();
  170. else if (hour >= 19 && hour <= 24)
  171. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Visibility_19_24.ToString();
  172. break;
  173. case "风速":
  174. if (hour >= 0 && hour < 8)
  175. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindSpeed_00_08.ToString();
  176. else if (hour >= 8 && hour < 19)
  177. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindSpeed_08_19.ToString();
  178. else if (hour >= 19 && hour <= 24)
  179. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindSpeed_19_24.ToString();
  180. break;
  181. case "风向":
  182. if (hour >= 0 && hour < 8)
  183. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindDirection_00_08.ToString();
  184. else if (hour >= 8 && hour < 19)
  185. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindDirection_08_19.ToString();
  186. else if (hour >= 19 && hour <= 24)
  187. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.WindDirection_19_24.ToString();
  188. break;
  189. case "天气":
  190. if (hour >= 0 && hour < 8)
  191. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Weather_00_08;
  192. else if (hour >= 8 && hour < 19)
  193. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Weather_08_19;
  194. else if (hour >= 19 && hour <= 24)
  195. result = FlightPlanEditor.targetpoint[0].TargetQiXiangInfo.Weather_19_24;
  196. break;
  197. }
  198. return result;
  199. }
  200. public static int GetDaysInYear(int year, int month, int day)
  201. {
  202. int[] daysInMonths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  203. if (IsLeapYear(year))
  204. {
  205. daysInMonths[1] = 29;
  206. }
  207. int days = day;
  208. for (int i = 0; i < month - 1; i++)
  209. {
  210. days += daysInMonths[i];
  211. }
  212. return days;
  213. }
  214. public static bool IsLeapYear(int year)
  215. {
  216. return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
  217. }
  218. }
  219. public class handling_result
  220. {
  221. public bool success { get; set; }
  222. public double time { get; set; }
  223. }
  224. [ObjectSystem]
  225. public class AircraftDYAwakeSystem : AwakeSystem<AircraftDY, FlightPlanEditor>
  226. {
  227. public override void Awake(AircraftDY self, FlightPlanEditor flightPlanEditor)
  228. {
  229. self.FlightPlanEditor = flightPlanEditor;
  230. self.Awake();
  231. }
  232. }