Kaynağa Gözat

离线能见度添加,单目标海上陆上搜救成功率5%

liyang 6 ay önce
ebeveyn
işleme
81d7932c88

+ 32 - 0
Models/SimulationCommon/EquationHelper.cs

@@ -363,6 +363,38 @@ namespace MuShiApp
             }
         }
 
+        public double getVisibilityByDb(double centerLon, double centerLat, string visibility_date)
+        {
+            try
+            {
+                HttpCmd cmd = new HttpCmd
+                {
+                    m_RequestType = HttpRequestType.GET,
+                    m_Addr = "http://127.0.0.1:7785//rescue-platform-service/api/v1/attribute/getVisibility", //10.130.100.5
+                    m_Args = new List<string> { "centerLon", "centerLat", "visibility_date" }
+                };
+                string response = m_HttpHelper.Request(cmd, new List<string> { centerLon.ToString(), centerLat.ToString(), visibility_date });
+                R data = JsonConvert.DeserializeObject<R>(response);
+                if (data != null && data.code == 200)
+                {
+                    string vi = data.data.ToString();
+                    double fl = Convert.ToDouble(vi);
+                    if (fl.Equals(0))
+                    {
+                        fl = 15;
+                    }
+                    return fl;
+                }
+                return 15;
+            }
+            catch (Exception ex)
+            {
+                Debug.Print("error!!!!!getVisibility");
+                Debug.Print(ex.ToString());
+                return 15;
+            }
+        }
+
         //rescue-platform-service/api/v1/dem/getCityName
 
         // {

+ 4 - 3
SimulationServer/Entity/AircraftLandSJ.cs

@@ -123,7 +123,8 @@ public class AircraftLandSJ : AircraftEntity
             FlightPlanEditor.targetpoint[0].TargetPointHeight);
 
         string cityName = helper.getCityName(targetPoint.x,targetPoint.y);
-        var visibility = 10;//helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
+        //var visibility = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
+        var visibility = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, DateTime.Now.ToString("yyyy-MM-dd HH"));
 
         getNCData = new GetNCData();
         getNCData.GetData();
@@ -173,12 +174,12 @@ public class AircraftLandSJ : AircraftEntity
                     probability -= 0.5f;
 
                     probability *= random.NextDouble();
-                    double random1 = random.NextInt64(1000,9200); // 生成随机数比较概率  调整概率使任务成功率降低 至 5%(0.05) 第一个参数越低概率越低
+                    double random1 = random.NextInt64(8000,9200); // 生成随机数比较概率  调整概率使任务成功率降低 至 5%(0.05) 第一个参数越低概率越低 // 1000
                     random1 /= 10000;
                     probability += (0.5 * random1);
                 }
                 
-                double randomValue = random.NextInt64(9015,10000);  // 生成随机数比较概率  调整概率使任务成功率降低 至 5%(0.05) 第一个参数越高概率越低
+                double randomValue = random.NextInt64(9006,10000);  // 生成随机数比较概率  调整概率使任务成功率降低 至 5%(0.05) 第一个参数越高概率越低
                  randomValue /= 10000;
                  
                  Log.Info(

+ 23 - 7
SimulationServer/Entity/AircraftSJ.cs

@@ -26,6 +26,10 @@ public class AircraftSJ : AircraftEntity
     public bool Success = false; //本目标搜救是否成功
     public GetNCData getNCData;
 
+    //private bool isbool;
+    //private bool isbool2;
+    //Text_readNC text_ReadNC;
+
     public SearchMissionMode SearchMode;
 
     public override void Reset()
@@ -50,9 +54,14 @@ public class AircraftSJ : AircraftEntity
         double dt = 1;
         double totalTime = 24.0;
 
-        Text_readNC text_ReadNC = new Text_readNC();
-        text_ReadNC.GetNCData();
-        text_ReadNC.GetWaveHighData();
+        //if (!isbool2)
+        //{
+            Text_readNC text_ReadNC = new Text_readNC();
+            //text_ReadNC = new Text_readNC();
+            text_ReadNC.GetNCData();
+            text_ReadNC.GetWaveHighData();
+            //isbool2 = true;
+        //}
         var nCread = text_ReadNC.windNCread;
 
         //漂移轨迹
@@ -175,10 +184,16 @@ public class AircraftSJ : AircraftEntity
             FlightPlanEditor.targetpoint[0].TargetPointHeight);
 
         string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
-        var vis = 10; //helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
+        //var vis = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
+        var vis = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, DateTime.Now.ToString("yyyy-MM-dd HH"));
+
+        //if (!isbool)
+        //{
+            getNCData = new GetNCData();
+            getNCData.GetData();
+            //isbool = true;
+        //}
 
-        getNCData = new GetNCData();
-        getNCData.GetData();
         Task.Run(() =>
         {
             bool isseePerson = false;
@@ -239,7 +254,8 @@ public class AircraftSJ : AircraftEntity
                 // 到搜寻航路点的最后一个点 (?)
                 Log.Info(
                     $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到落水人员:{isseePerson}");
-                double randomValue = random.NextInt64(9015 , 10000); // 生成随机数比较概率 //0.03 第一个参数越高概率越低 8985 0.212 100 9000 0 100 8995 0.14 100 8997 0.25 20 8998 0.3 20
+                double randomValue = random.NextInt64(9006, 10000); // 生成随机数比较概率 //0.05 第一个参数越高概率越低 / 8985 0.212 100 / 9000 0.16 100 / 8995 0.14 100 / 8997 0.12 100 / 8999  0.18 100 / 9006 0.11 100 / 9010 0.12 100 / 9030 0.03 100 / 9026 0.07 0.04 100 / 9028 0.03 100 / 9027 0.04 100 / 9025 0.05 100 /
+                //9025 0.02 100 / 9015 0.02 100 / 9020 0.04 100 / 9022 0.05 100 / 9022 0.04 100 / 9022 0 100 /9018 0.01 100 / 9021 0.01 100 / 9023 0.03 100 / 9000 0.08 100 / 9006
                 randomValue /= 10000;
                 if (randomValue < probability) //  1 - finalProbability
                 {

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

@@ -1,5 +1,5 @@
 {
-    "仿真次数": 30,
+    "仿真次数": 100,
     "想定信息": {
         "想定日期": "2024年6月4日",
         "想定时间": "00时00分00秒"

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

@@ -78,7 +78,7 @@
                 "任务结束条件": {
                     "?结束条件": "注释: 执行2次/满足任务时间",
                     "结束条件": "满足任务时间",
-                    "任务时间": 36000
+                    "任务时间": 7200
                 }
             },
             "应用航空器": [
@@ -151,7 +151,7 @@
                 "任务结束条件": {
                     "?结束条件": "注释: 执行2次/满足任务时间",
                     "结束条件": "满足任务时间",
-                    "任务时间": 36000
+                    "任务时间": 7200
                 }
             },
             "应用航空器": [
@@ -234,7 +234,7 @@
                 "任务结束条件": {
                     "?结束条件": "注释: 执行2次/满足任务时间",
                     "结束条件": "满足任务时间",
-                    "任务时间": 36000
+                    "任务时间": 7200
                 }
             },
             "应用航空器": [
@@ -285,7 +285,7 @@
                 "任务结束条件": {
                     "?结束条件": "注释: 执行2次/满足任务时间",
                     "结束条件": "满足任务时间",
-                    "任务时间": 36000
+                    "任务时间": 7200
                 }
             },
             "应用航空器": [
@@ -341,7 +341,7 @@
                 "任务结束条件": {
                     "?结束条件": "注释: 执行2次/满足任务时间",
                     "结束条件": "满足任务时间",
-                    "任务时间": 36000
+                    "任务时间": 7200
                 }
             },
             "应用航空器": [