204 lines
5.3 KiB
TOML
204 lines
5.3 KiB
TOML
# 主战坦克-002 增强配置(展示新参数结构)
|
|
Type = "Tank" # 目标类型
|
|
|
|
[Name]
|
|
Zh = "99A主战坦克"
|
|
En = "ZTZ-99A Main Battle Tank"
|
|
|
|
[Properties]
|
|
Type = "Tank" # 属性中的类型
|
|
Mass = 55000.0 # 质量 (千克)
|
|
Length = 11.0 # 总长度 (米) - 包含炮管
|
|
Width = 3.5 # 宽度 (米)
|
|
Height = 2.37 # 高度 (米)
|
|
MaxSpeed = 70.0 # 最大速度 (千米/小时)
|
|
ArmorThickness = 800.0 # 装甲厚度 (毫米)
|
|
InfraredRadiationIntensity = 2500.0 # 红外辐射强度 (瓦特/球面度)
|
|
UltravioletRadiationIntensity = 15.0 # 紫外辐射强度 (瓦特/球面度)
|
|
MillimeterWaveRadiationIntensity = 10.0 # 毫米波辐射强度 (瓦特/球面度)
|
|
MillimeterWaveRadiationTemperature = 400.0 # 毫米波辐射温度 (开尔文)
|
|
LaserReflectivity = 0.3 # 激光反射率
|
|
|
|
# === 坦克特定参数 ===
|
|
[Properties.TankProperties]
|
|
BodyGroundClearance = 0.5 # 车底距地高 (米)
|
|
TurretHeight = 1.35 # 炮转台高度 (米)
|
|
BarrelLength = 6.25 # 炮管长度 (米)
|
|
|
|
# === 自定义参数 ===
|
|
[Properties.CustomParameters]
|
|
|
|
# 武器系统参数
|
|
[Properties.CustomParameters.MainGunCaliber]
|
|
Value = 125.0
|
|
Unit = "mm"
|
|
Category = "武器系统"
|
|
Description = "主炮口径"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.MainGunAmmunitionCapacity]
|
|
Value = 39
|
|
Unit = "发"
|
|
Category = "武器系统"
|
|
Description = "主炮弹药基数"
|
|
DataType = "System.Int32"
|
|
|
|
[Properties.CustomParameters.MachineGunType]
|
|
Value = "12.7mm高射机枪"
|
|
Unit = ""
|
|
Category = "武器系统"
|
|
Description = "副武器类型"
|
|
DataType = "System.String"
|
|
|
|
# 防护系统参数
|
|
[Properties.CustomParameters.ReactiveArmorType]
|
|
Value = "FY-4"
|
|
Unit = ""
|
|
Category = "防护系统"
|
|
Description = "反应装甲型号"
|
|
DataType = "System.String"
|
|
|
|
[Properties.CustomParameters.FrontArmorThickness]
|
|
Value = 950.0
|
|
Unit = "mm"
|
|
Category = "防护系统"
|
|
Description = "正面装甲厚度"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.SideArmorThickness]
|
|
Value = 600.0
|
|
Unit = "mm"
|
|
Category = "防护系统"
|
|
Description = "侧面装甲厚度"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.RearArmorThickness]
|
|
Value = 400.0
|
|
Unit = "mm"
|
|
Category = "防护系统"
|
|
Description = "后面装甲厚度"
|
|
DataType = "System.Double"
|
|
|
|
# 动力系统参数
|
|
[Properties.CustomParameters.EngineType]
|
|
Value = "1500马力柴油机"
|
|
Unit = ""
|
|
Category = "动力系统"
|
|
Description = "发动机类型"
|
|
DataType = "System.String"
|
|
|
|
[Properties.CustomParameters.EnginePower]
|
|
Value = 1500.0
|
|
Unit = "hp"
|
|
Category = "动力系统"
|
|
Description = "发动机功率"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.FuelCapacity]
|
|
Value = 1200.0
|
|
Unit = "L"
|
|
Category = "动力系统"
|
|
Description = "燃油容量"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.OperationalRange]
|
|
Value = 450.0
|
|
Unit = "km"
|
|
Category = "动力系统"
|
|
Description = "作战半径"
|
|
DataType = "System.Double"
|
|
|
|
# 火控系统参数
|
|
[Properties.CustomParameters.FireControlSystemType]
|
|
Value = "综合火控系统"
|
|
Unit = ""
|
|
Category = "火控系统"
|
|
Description = "火控系统类型"
|
|
DataType = "System.String"
|
|
|
|
[Properties.CustomParameters.LaserRangefinderRange]
|
|
Value = 8000.0
|
|
Unit = "m"
|
|
Category = "火控系统"
|
|
Description = "激光测距仪射程"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.ThermalImagingRange]
|
|
Value = 5000.0
|
|
Unit = "m"
|
|
Category = "火控系统"
|
|
Description = "热像仪探测距离"
|
|
DataType = "System.Double"
|
|
|
|
# 机动性能参数
|
|
[Properties.CustomParameters.ClimbingAngle]
|
|
Value = 32.0
|
|
Unit = "°"
|
|
Category = "机动性能"
|
|
Description = "爬坡角度"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.WadingDepth]
|
|
Value = 1.4
|
|
Unit = "m"
|
|
Category = "机动性能"
|
|
Description = "涉水深度"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.TrenchCrossingWidth]
|
|
Value = 2.7
|
|
Unit = "m"
|
|
Category = "机动性能"
|
|
Description = "越壕宽度"
|
|
DataType = "System.Double"
|
|
|
|
[Properties.CustomParameters.VerticalObstacleHeight]
|
|
Value = 0.85
|
|
Unit = "m"
|
|
Category = "机动性能"
|
|
Description = "垂直越障高度"
|
|
DataType = "System.Double"
|
|
|
|
# 通信电子系统参数
|
|
[Properties.CustomParameters.CommunicationSystem]
|
|
Value = "数字化指挥系统"
|
|
Unit = ""
|
|
Category = "通信电子"
|
|
Description = "通信系统类型"
|
|
DataType = "System.String"
|
|
|
|
[Properties.CustomParameters.BattlefieldManagementSystem]
|
|
Value = "BMS-T"
|
|
Unit = ""
|
|
Category = "通信电子"
|
|
Description = "战场管理系统"
|
|
DataType = "System.String"
|
|
|
|
[Properties.CustomParameters.CrewCapacity]
|
|
Value = 3
|
|
Unit = "人"
|
|
Category = "基本信息"
|
|
Description = "乘员数量"
|
|
DataType = "System.Int32"
|
|
|
|
[Properties.ThermalPattern] # 热辐射特征模型
|
|
StaticPatternSource = [ # 静态时温度分布
|
|
[40, 45, 80],
|
|
[35, 40, 90],
|
|
[50, 50, 60]
|
|
]
|
|
MovingPatternSource = [ # 移动时温度分布
|
|
[45, 50, 85],
|
|
[40, 45, 95],
|
|
[65, 65, 75]
|
|
]
|
|
|
|
[Properties.RcsPattern]
|
|
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)
|
|
] |