Browse Source

会议修改

liyang 7 months ago
parent
commit
8b054a44f6

+ 3 - 3
Models/SimulationCommon/EquationHelper.cs

@@ -37,7 +37,7 @@ namespace MuShiApp
         /// <param name="targetpye">遇险目标类型</param>
         /// <param name="typee">救援场景类型</param>
         /// <returns></returns>
-        public double getProbability(double3 aircraftPoint, double3 targetPoint, double course,double windspeed, double wavehigh, string targetpye, string type)
+        public double getProbability(double3 aircraftPoint,double3 targetPoint ,double pb, double course,double windspeed, double wavehigh, string targetpye, string type)
         {
             try
             {
@@ -100,7 +100,7 @@ namespace MuShiApp
 
               
                 double pt = this.nextDouble(ran, 0.800, 0.999, 8);
-                double pb = getPb(targetPoint.x, targetPoint.y);
+                //double pb = targetPoint;//getPb(targetPoint.x, targetPoint.y);
                 double D = 0;
                 double C = Math.Round((double)((pt - pb) / pt), 8);
                 if(type =="陆地")
@@ -274,7 +274,7 @@ namespace MuShiApp
         //     "code": 200,
         //     "category": "7 草丛"
         // }
-        private double getPb(double lon, double lat)
+        public double getPb(double lon, double lat)
         {
             double pb = 0.13;
             try

+ 31 - 13
SimulationServer/Entity/AircraftLandSJ.cs

@@ -50,7 +50,7 @@ public class AircraftLandSJ : AircraftEntity
                 trajectory.Add(new double[]
                 {
                     item[1],item[0]
-                }) ;
+                });
             }
 
             var points = SeaSJ.getminEnclosingRect(trajectory);
@@ -75,7 +75,7 @@ public class AircraftLandSJ : AircraftEntity
             {
                 route.Add(new double[]
                 {
-                    point.lat, point.lon,
+                    point.lat, point.lon,3500
                 });
             }
         }
@@ -90,14 +90,21 @@ public class AircraftLandSJ : AircraftEntity
         {
             airRoutes.Add(new AirRoute
             {
-                AirRouteLatitude = item[1],
-                AirRouteLongitude = item[0],
+                AirRouteLatitude = item[0],
+                AirRouteLongitude = item[1],
                 AirRouteHeight = item[2]
             });
         }
 
         FlightPlanEditor.airroute = airRoutes.ToArray();
 
+        FlightPlanEditor.missionpoint = new MissionPoint()
+        {
+            MissionPointLongitude = FlightPlanEditor.airroute[0].AirRouteLongitude,
+            MissionPointLatitude = FlightPlanEditor.airroute[0].AirRouteLatitude,
+            MissionPointHeight = FlightPlanEditor.airroute[0].AirRouteHeight
+        };
+
         FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
 
         // TODO 与王子涵确认这个方法
@@ -105,6 +112,13 @@ public class AircraftLandSJ : AircraftEntity
 
         FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
 
+
+        double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
+            FlightPlanEditor.targetpoint[0].TargetPointLatitude,
+            FlightPlanEditor.targetpoint[0].TargetPointHeight);
+
+        double a = helper.getPb(targetPoint.x, targetPoint.y);
+
         getNCData = new GetNCData();
         getNCData.GetData();
         Task.Run(() =>
@@ -124,9 +138,6 @@ public class AircraftLandSJ : AircraftEntity
                 double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
                     currentLocation.CurrentHei);
 
-                double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
-                    FlightPlanEditor.targetpoint[0].TargetPointLatitude,
-                    FlightPlanEditor.targetpoint[0].TargetPointHeight);
 
 
                 var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
@@ -134,10 +145,10 @@ public class AircraftLandSJ : AircraftEntity
                     targetPoint.y);
                 Log.Info("距离:====================" + distance);
 
-                if (distance < 20)
+                if (distance < 3.2)
                 {
                     //TODO 和学生对接确认, 发现概率算法
-                    probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
+                    probability = helper.getProbability(aricraftPoint, targetPoint, a, currentLocation.CurrentCourse,
                         10, 10, "遇险人员", "陆地"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
                 }
 
@@ -145,9 +156,10 @@ public class AircraftLandSJ : AircraftEntity
                 //finalProbability *= (1 - probability); 
 
                 Console.WriteLine(
-                    $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到遇险人员:{isseePerson}");
-
-                double randomValue = random.NextDouble(); // 生成随机数比较概率
+                    $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到遇险人员:{isseePerson}");
+                double randomValue = random.NextInt64(9500,10000); // 生成随机数比较概率
+                randomValue /= 10000;
+                //probability -= 0.5;
                 if (randomValue < probability) // 1 - finalProbability
                 {
                     isseePerson = true;
@@ -161,12 +173,17 @@ public class AircraftLandSJ : AircraftEntity
                 }
 
                 temptime += 10;
+                if(temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
+                {
+                    IsOver = true;
+                    isseePerson = false;
+                }
             } while (!isseePerson && IsOver == false);
 
             //Console.WriteLine(
             //    $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
             Console.WriteLine(
-                $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到遇险人员:{isseePerson}");
+                $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到遇险人员:{isseePerson}");
 
             //finalProbability = 1 - finalProbability; 
 
@@ -224,6 +241,7 @@ public class AircraftLandSJAwakeSystem : AwakeSystem<AircraftLandSJ, FlightPlanE
     public override void Awake(AircraftLandSJ self, FlightPlanEditor flightPlanEditor)
     {
         self.FlightPlanEditor = flightPlanEditor;
+        self.helper = new EquationHelper(HttpInterface.baseUrl);
         self.Awake();
     }
 }

+ 8 - 1
SimulationServer/Entity/AircraftSJ.cs

@@ -162,6 +162,13 @@ public class AircraftSJ : AircraftEntity
 
         FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
 
+
+        double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
+            FlightPlanEditor.targetpoint[0].TargetPointLatitude,
+            FlightPlanEditor.targetpoint[0].TargetPointHeight);
+
+        double a = helper.getPb(targetPoint.x, targetPoint.y);
+
         getNCData = new GetNCData();
         getNCData.GetData();
         Task.Run(() =>
@@ -200,7 +207,7 @@ public class AircraftSJ : AircraftEntity
                 Log.Info("距离:====================" + distance);
                 if (distance < 20)
                 {
-                    probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
+                    probability = helper.getProbability(aricraftPoint, targetPoint,a, currentLocation.CurrentCourse,
                         windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
                 }
 

+ 4 - 4
SimulationServer/bin/Debug/net7.0/Missions/editor_config.json

@@ -6,12 +6,12 @@
     },
     "基地信息": [
         {
-            "基地名称": "成都航站",
+            "基地名称": "呷拉镇小学临时起降点",
             "位置信息": "自定义",
             "基地编号": 1,
-            "基地经度": 103.96,
-            "基地纬度": 30.57,
-            "基地海拔": 496
+            "基地经度": 101.1066,
+            "基地纬度": 30.0085,
+            "基地海拔": 2630
 
         },
         {

+ 7 - 200
SimulationServer/bin/Debug/net7.0/Missions/task_config.json

@@ -61,123 +61,6 @@
         }
     ],
     "陆上搜寻任务": [
-        {
-            "任务信息": {
-                "任务名称": "陆上搜寻任务1",
-                "任务ID": "LSSX1",
-                "任务主要类型": "航空搜救",
-                "任务类型": "陆上搜寻",
-                "任务触发器": "任务触发",
-                "下一个任务ID": "",
-                "目标点ID": 1,
-                "开始日期": "2024年6月4日",
-                "开始时间": "00时00分00秒",
-                "结束日期": "2024年6月6日",
-                "结束时间": "23时00分00秒",
-                "起飞准备时间": 600.0,
-                "任务结束条件": {
-                    "?结束条件": "注释: 执行2次/满足任务时间",
-                    "结束条件": "满足任务时间",
-                    "任务时间": 36000
-                }
-            },
-            "应用航空器": [
-                {
-                    "应用机型": "M-171",
-                    "应用飞机编号": "1-1",
-                    "加油基地": "成都航站",
-                    "加油基地编号": "1",
-                    "任务结束返回点": "1"
-                },
-                {
-                    "应用机型": "Ka-32",
-                    "应用飞机编号": "1-2",
-                    "加油基地": "西昌航站",
-                    "加油基地编号": "1",
-                    "任务结束返回点": "原地待命"
-                }
-              ],
-            "战术战法": {
-                "战术战法": "多机跟进",
-                "跟进间距": 20,
-                "跟进高度差": 50
-            },
-            "运行约束": {
-                "搜索飞行速度限制": 150
-            },
-            "搜索任务载荷": [
-                {
-                    "任务载荷": "目视搜索",
-                    "应用飞机编号": "1-1"
-                },
-                {
-                    "任务载荷": "目视搜索",
-                    "应用飞机编号": "1-2"
-                }
-            ],
-            "搜索方式": [
-                {
-                    "搜索方式": "等高线搜索",
-                    "应用飞机编号": "1-1",
-                    "多边形边界": [
-                        [
-                            100.9258,
-                            30.0709
-                        ],
-                        [
-                            100.9650,
-                            30.1572
-                        ],
-                        [
-                            101.0646,
-                            30.1685
-                        ],
-                        [
-                            101.1220,
-                            30.1385
-                        ],
-                        [
-                            100.9258,
-                            30.0709
-                        ]
-                    ],
-                    "等高线高度间隔": 300,
-                    "最小等高线节点数": 1000,
-                    "航线真实高度": 200,
-                    "输出等高线节点间隔": 50
-                },
-                {
-                    "搜索方式": "等高线搜索",
-                    "应用飞机编号": "1-2",
-                    "多边形边界": [
-                        [
-                            100.9258,
-                            30.0709
-                        ],
-                        [
-                            100.9650,
-                            30.1572
-                        ],
-                        [
-                            101.0646,
-                            30.1685
-                        ],
-                        [
-                            101.1220,
-                            30.1385
-                        ],
-                        [
-                            100.9258,
-                            30.0709
-                        ]
-                    ],
-                    "等高线高度间隔": 300,
-                    "最小等高线节点数": 1000,
-                    "航线真实高度": 200,
-                    "输出等高线节点间隔": 50
-                }
-            ]
-        },
         {
             "任务信息": {
                 "任务名称": "陆上搜寻任务2",
@@ -186,7 +69,7 @@
                 "任务类型": "陆上搜寻",
                 "任务触发器": "时间触发",
                 "下一个任务ID": "",               
-                "目标点ID": 2,
+                "目标点ID": 1,
                 "开始日期": "2024年6月4日",
                 "开始时间": "00时00分00秒",
                 "结束日期": "2024年6月6日",
@@ -201,10 +84,10 @@
             "应用航空器": [
                 {
                     "应用机型": "Ka-32",
-                    "应用飞机编号": "2-1",
-                    "加油基地": "西昌航站",
-                    "加油基地编号": "2",
-                    "任务结束返回点": "2"
+                    "应用飞机编号": "1-2",
+                    "加油基地": "呷拉镇小学临时起降点",
+                    "加油基地编号": 1,
+                    "任务结束返回点": 1
                 }
             ],
             "战术战法": {
@@ -218,7 +101,7 @@
             "搜索任务载荷": [
                 {
                     "任务载荷": "雷达搜索",
-                    "应用飞机编号": "2-1",
+                    "应用飞机编号": "1-2",
                     "探测波长(m)": 0.0001,
                     "最小可检测信号(dBm)": -65,
                     "雷达发射机发射信号功率(dBm)": 48,
@@ -229,83 +112,7 @@
             "搜索方式": [
                 {
                     "搜索方式": "扇形搜索",
-                    "应用飞机编号": "2-1",
-                    "多边形边界": [
-                        [
-                            100.9258,
-                            30.0709
-                        ],
-                        [
-                            100.9650,
-                            30.1572
-                        ],
-                        [
-                            101.0646,
-                            30.1685
-                        ],
-                        [
-                            101.1220,
-                            30.1385
-                        ],
-                        [
-                            100.9258,
-                            30.0709
-                        ]
-                    ],
-                    "搜索扫视宽度": 0.02
-                }
-            ]
-        },
-        {
-            "任务信息": {
-                "任务名称": "陆上搜寻任务3",
-                "任务ID": "LSSX3",
-                "任务主要类型": "航空搜救",
-                "任务类型": "陆上搜寻",
-                "任务触发器": "时间触发",
-                "下一个任务ID": "",
-                "目标点ID": 3,
-                "开始日期": "2024年6月4日",
-                "开始时间": "00时00分00秒",
-                "结束日期": "2024年6月6日",
-                "结束时间": "23时00分00秒",
-                "起飞准备时间": 600.0,
-                "任务结束条件": {
-                    "?结束条件": "注释: 执行2次/满足任务时间",
-                    "结束条件": "满足任务时间",
-                    "任务时间": 36000
-                }
-            },
-            "应用航空器": [
-                {
-                    "应用机型": "高原型M-171",
-                    "应用飞机编号": "2-2",
-                    "加油基地": "西昌航站",
-                    "加油基地编号": "2",
-                    "任务结束返回点": "2"
-                }
-            ],
-            "战术战法": {
-                "战术战法": "多机跟进",
-                "跟进间距": 20,
-                "跟进高度差": 50
-            },
-            "运行约束": {
-                "搜索飞行速度限制": 150
-            },
-            "搜索任务载荷": [
-                {
-                    "任务载荷": "光电搜索",
-                    "应用飞机编号": "2-2",
-                    "光电转塔水平范围": 90,
-                    "红外探测器视场角": 60,
-                    "飞行高度": 2
-                }
-            ],
-            "搜索方式": [
-                {
-                    "搜索方式": "扇形搜索",
-                    "应用飞机编号": "2-2",
+                    "应用飞机编号": "1-2",
                     "多边形边界": [
                         [
                             100.9258,

BIN
SimulationServer/bin/Debug/net7.0/SimulationCommon.dll


BIN
SimulationServer/bin/Debug/net7.0/SimulationCommon.pdb


BIN
SimulationServer/bin/Debug/net7.0/SimulationServer.dll


BIN
SimulationServer/bin/Debug/net7.0/SimulationServer.exe


BIN
SimulationServer/bin/Debug/net7.0/SimulationServer.pdb