|
@@ -32,8 +32,8 @@ public class AircraftXH : Entity
|
|
|
public double TaskReadyTime;
|
|
|
public bool SyncOver;
|
|
|
|
|
|
- public double[] Velocitys = new double[5]; // 速度
|
|
|
- public double[] FuelConsumptions = new double[5]; // 燃油消耗
|
|
|
+ public double[] Velocitys = new double[5]{220,220,220,110,0}; // 速度
|
|
|
+ public double[] FuelConsumptions = new double[5]{2800,2800,2800,1000,132}; // 燃油消耗
|
|
|
public void Awake()
|
|
|
{
|
|
|
FXJHGenerate.FromStartToMission(FlightPlanEditor,ref turningPoints);//生成从起点到任务段起点的航路点
|
|
@@ -84,7 +84,7 @@ public class AircraftXH : Entity
|
|
|
|
|
|
finalProbability *= (1 - probability);
|
|
|
|
|
|
- Console.WriteLine($"巡护任务: {Name} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{finalProbability},是否看到火点:{isSeeFire}");
|
|
|
+ Console.WriteLine($"巡护任务: {Name} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 -finalProbability},是否看到火点:{isSeeFire}");
|
|
|
var randomValue = random.NextDouble();
|
|
|
|
|
|
if (randomValue < (1 - finalProbability))
|