ThreatSourceLibaray/ThreatSource/data/equipments/tanks/mbt_001.toml

56 lines
2.1 KiB
TOML

# 主战坦克-001 配置
Type = "Tank" # 目标类型
[Name]
Zh = "主战坦克-001"
En = "Main Battle Tank-001"
[Properties]
Type = "Tank" # 属性中的类型
Mass = 50000.0 # 质量 (千克)
Length = 10.0 # 长度 (米)
Width = 3.5 # 宽度 (米)
Height = 2.4 # 高度 (米)
MaxSpeed = 70.0 # 最大速度 (千米/小时)
ArmorThickness = 800.0 # 装甲厚度 (毫米)
InfraredRadiationIntensity = 250.0 # 红外辐射强度 (瓦特/球面度)
UltravioletRadiationIntensity = 15.0 # 紫外辐射强度 (瓦特/球面度)
MillimeterWaveRadiationIntensity = 10.0 # 毫米波辐射强度 (瓦特/球面度)
MillimeterWaveRadiationTemperature = 150.0 # 毫米波辐射温度 (开尔文)
LaserReflectivity = 0.3 # 激光反射率
# === 坦克特定参数 ===
[Properties.TankProperties]
BodyGroundClearance = 0.45 # 车底距地高 (米)
TurretHeight = 1.2 # 炮转台高度 (米)
BarrelLength = 5.8 # 炮管长度 (米)
[Properties.ThermalPattern] # 热辐射特征模型
StaticPatternSource = [ # 静态时温度分布
[40, 45, 80],
[35, 40, 90],
[50, 50, 60]
]
MovingPatternSource = [ # 移动时温度分布
[45, 50, 85],
[40, 45, 95],
[65, 65, 75]
]
[Properties.RcsPattern]
# Data 是一个 6x4 的二维数组
# 行顺序 (索引 0-5): 前, 后, 左, 右, 上, 下
# 列顺序 (索引 0-3): 对应每个主方向观察视角下的标准笛卡尔坐标系第1, 2, 3, 4象限
# 例如,对于"前"方向:
# 列0 (Q1): 右上区域
# 列1 (Q2): 左上区域
# 列2 (Q3): 左下区域
# 列3 (Q4): 右下区域
RcsMatrixDataSource = [
[10.0, 10.0, 10.0, 10.0], # 前 (Front) [Q1, Q2, Q3, Q4]
[10.0, 10.0, 10.0, 10.0], # 后 (Back)
[13.0, 13.0, 13.0, 13.0], # 左 (Left)
[13.0, 13.0, 13.0, 13.0], # 右 (Right)
[13.0, 13.0, 13.0, 13.0], # 上 (Top)
[13.0, 13.0, 13.0, 13.0] # 下 (Bottom)
]