99 lines
4.9 KiB
TOML
99 lines
4.9 KiB
TOML
# 毫米波-红外成像末制导导弹-001 配置
|
||
Type = "CompositeGuidance"
|
||
|
||
[Name]
|
||
Zh = "毫米波-红外成像末制导导弹-001"
|
||
En = "Millimeter Wave-IR Imaging Terminal Guided Missile-001"
|
||
|
||
[Properties]
|
||
Type = "CompositeGuidance"
|
||
MaxSpeed = 250.0
|
||
MaxFlightTime = 60.0
|
||
MaxFlightDistance = 5000.0
|
||
MaxAcceleration = 100.0
|
||
ProportionalNavigationCoefficient = 4.0
|
||
LaunchAcceleration = 100.0
|
||
MaxEngineBurnTime = 2.5
|
||
CruiseTime = 5.0
|
||
Mass = 25.0
|
||
ExplosionRadius = 5.5
|
||
HitProbability = 0.9
|
||
SelfDestructHeight = 0.0
|
||
InfraredRadiationIntensity = 96.0 # 红外辐射强度 (瓦特/球面度)
|
||
UltravioletRadiationIntensity = 100.0 # 紫外辐射强度 (瓦特/球面度)
|
||
# --- 复合制导特定属性 ---
|
||
CompositeWorkMode = "Serial" # 工作模式:Serial (串行) 或 Parallel (并行)
|
||
# FusionStrategy = "UseHighestPriority" # 仅在并行模式下相关
|
||
|
||
# --- 制导组件套件 (GuidanceSuite) ---
|
||
# 第一个制导阶段:毫米波
|
||
[[Properties.GuidanceSuite]]
|
||
ComponentName = "MMW_Phase1_Cruise"
|
||
GuidanceSystemType = "MillimeterWaveTerminalGuidance" # 必须与C#工厂中的类型字符串匹配
|
||
ActivationTrigger = "OnLaunch" # 激活触发器:OnLaunch, AfterFlightTime, DistanceToTargetThreshold, PreviousStageComplete
|
||
ActivationValue = 0.0 # 触发器关联值 (例如:飞行时间秒数,距离米数)
|
||
Priority = 0 # 优先级 (例如:0为最高)
|
||
MaxTimeToAcquireGuidanceSeconds = 5.0 # 获取制导的最大时间
|
||
MinTimeWithGuidanceBeforeSwitchSeconds = 0.2 # 稳定跟踪0.2秒后切换(因为毫米波跟踪不稳定)
|
||
ContinueChainOnFailure = true # 失败后继续尝试下一个
|
||
|
||
# 第二个制导阶段:红外成像末制导
|
||
[[Properties.GuidanceSuite]]
|
||
ComponentName = "IR_Phase2_Terminal"
|
||
GuidanceSystemType = "InfraredImagingTerminalGuidance" # 必须与C#工厂中的类型字符串匹配
|
||
ActivationTrigger = "PreviousStageComplete" # 例如:在飞行一段时间后切换 (或者 PreviousStageComplete)
|
||
ActivationValue = 10.0 # 例如:飞行10秒后激活红外阶段 (如果 CruiseTime 是 5s,这里可能需要调整)
|
||
Priority = 1 # 优先级低于毫米波
|
||
MaxTimeToAcquireGuidanceSeconds = 5.0 # 获取制导的最大时间
|
||
MinTimeWithGuidanceBeforeSwitchSeconds = 60.0 # 设置为MaxFlightTime,使其持续制导
|
||
ContinueChainOnFailure = false # 这是最后一个,失败也无需继续
|
||
|
||
# --- 各制导模式的详细配置 ---
|
||
[InfraredImagingGuidanceConfig]
|
||
MaxDetectionRange = 1000.0 # 最大探测距离 (米)
|
||
SearchFieldOfView = 12.0 # 搜索视场角 (度)
|
||
TrackFieldOfView = 6.0 # 跟踪视场角 (度)
|
||
ImageWidth = 640 # 图像宽度 (像素)
|
||
ImageHeight = 480 # 图像高度 (像素)
|
||
BackgroundIntensity = 1.0e-4 # 背景辐射强度 (瓦特/球面度)
|
||
SearchRecognitionProbability = 0.6 # 搜索模式目标识别概率阈值
|
||
TrackRecognitionProbability = 0.8 # 跟踪模式目标识别概率阈值
|
||
TargetLostTolerance = 0.3 # 目标丢失容忍时间 (秒)
|
||
LockConfirmationTime = 0.5 # 锁定确认时间 (秒)
|
||
JammingResistanceThreshold = 1.0e-5 # 干扰抗性阈值 (瓦特)
|
||
Wavelength = 3.0 # 波长 (微米)
|
||
|
||
[MillimeterWaveGuidanceConfig]
|
||
MaxDetectionRange = 5000.0 # 最大探测距离 (米)
|
||
FieldOfViewAngle = 45.0 # 视场角 (度)
|
||
TargetRecognitionProbability = 0.95 # 目标识别概率
|
||
WaveFrequency = 9.4e10 # 波频率 (赫兹)
|
||
PulseDuration = 1.0e-6 # 脉冲持续时间 (秒)
|
||
|
||
SearchBeamWidth = 5.0 # 搜索波束宽度 (度)
|
||
TrackBeamWidth = 3.0 # 跟踪波束宽度 (度)
|
||
LockBeamWidth = 2.0 # 锁定波束宽度 (度)
|
||
|
||
ScanAngularSpeedDeg = 360.0 # 扫描角速度 (度/秒)
|
||
ScanRadiusGrowthRateDeg = 22.5 # 扫描半径增长率 (度)
|
||
|
||
RecognitionSNRThreshold = -25.0 # 识别信噪比阈值 (分贝)
|
||
LockSNRThreshold = -10.0 # 锁定信噪比阈值 (分贝)
|
||
|
||
TargetLostTolerance = 0.2 # 目标丢失容忍时间 (秒)
|
||
LockConfirmationTime = 0.3 # 锁定确认时间 (秒)
|
||
|
||
PulseRepetitionFrequency = 1.0e-4 # 脉冲重复间隔 (秒)
|
||
TransmitPower = 0.3 # 发射功率 (瓦特)
|
||
|
||
DopplerVelocityResolution = 1.0 # 多普勒速度分辨率 (米/秒)
|
||
MaxMeasurableVelocity = 1000.0 # 最大可测量速度 (米/秒)
|
||
|
||
AntennaGainDB = 23.0 # 天线增益 (分贝)
|
||
NoiseFigureDB = 7.0 # 噪声系数 (分贝)
|
||
SystemLossDB = 6.0 # 系统损耗 (分贝)
|
||
MonopulseSensitivity = 1.0 # 单脉冲灵敏度
|
||
|
||
YawControlEffectiveness = 120.0 # 偏航控制有效性 (度/秒^2 或类似单位)
|
||
PitchControlEffectiveness = 150.0 # 俯仰控制有效性 (度/秒^2 或类似单位)
|
||
JammingResistanceThreshold = 1.0e-5 # 干扰抗性阈值 (瓦特) |