33 lines
1.3 KiB
TOML
33 lines
1.3 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 # 装甲厚度 (毫米)
|
|
RadarCrossSection = 15.0 # 雷达散射截面积 (平方米)
|
|
InfraredRadiationIntensity = 250.0 # 红外辐射强度 (瓦特/球面度)
|
|
UltravioletRadiationIntensity = 15.0 # 紫外辐射强度 (瓦特/球面度)
|
|
MillimeterWaveRadiationIntensity = 10.0 # 毫米波辐射强度 (瓦特/球面度)
|
|
MillimeterWaveRadiationTemperature = 150.0 # 毫米波辐射温度 (开尔文)
|
|
LaserReflectivity = 0.3 # 激光反射率
|
|
|
|
[Properties.ThermalPattern] # 热辐射特征模型
|
|
StaticPatternSource = [ # 静态时温度分布
|
|
[40, 45, 80],
|
|
[35, 40, 90],
|
|
[50, 50, 60]
|
|
]
|
|
MovingPatternSource = [ # 移动时温度分布
|
|
[45, 50, 85],
|
|
[40, 45, 95],
|
|
[65, 65, 75]
|
|
] |