- 修改了日志输出格式 - 飞行全程增加重力加速度 - 完善发射段的推力加速度计算 - 修改各导弹配置文件的初始发射速度、发动机燃烧时间 - 修改集成测试中导弹的发射距离、发射高度、发射角度
25 lines
1.2 KiB
TOML
25 lines
1.2 KiB
TOML
# 红外指令导引导弹-001 配置
|
||
Type = "InfraredCommandGuidance" # 导弹类型
|
||
|
||
[Name]
|
||
Zh = "红外指令导引导弹-001"
|
||
En = "IR Command Guided Missile-001"
|
||
|
||
[Properties]
|
||
Type = "InfraredCommandGuidance" # 属性中的类型,与顶层Type一致
|
||
MaxSpeed = 300.0 # 最大速度 (米/秒)
|
||
MaxFlightTime = 60.0 # 最大飞行时间 (秒)
|
||
MaxFlightDistance = 5000.0 # 最大飞行距离 (米)
|
||
MaxAcceleration = 100.0 # 最大加速度 (米/秒^2)
|
||
ProportionalNavigationCoefficient = 4.0 # 比例导引系数
|
||
LaunchAcceleration = 100.0 # 发射加速度 (米/秒^2)
|
||
MaxEngineBurnTime = 3.0 # 最大发动机燃烧时间 (秒)
|
||
CruiseTime = 5.0 # 巡航时间 (秒)
|
||
Mass = 23.5 # 质量 (千克)
|
||
ExplosionRadius = 5.0 # 爆炸半径 (米)
|
||
HitProbability = 0.9 # 命中概率
|
||
SelfDestructHeight = 0.0 # 自毁高度 (米)
|
||
# TrackerSensitivity, CommandLatency, IrSignature 在JSON中为null,此处省略
|
||
|
||
[InfraredCommandGuidanceConfig]
|
||
JammingResistanceThreshold = 1.0e-5 # 干扰抗性阈值 (瓦特) |