指挥所接收雷达并下发任务通信建立
This commit is contained in:
@@ -11,27 +11,43 @@
|
||||
# * ****** UNCLASSIFIED ****** *
|
||||
# * * ************************************** * *
|
||||
|
||||
include_once platforms/red_radar.txt
|
||||
#include_once platforms/red_radar.txt
|
||||
include_once sensors/radar/ew_radar.txt
|
||||
include_once processors/ep_operations.txt
|
||||
include_once platforms/red_radar_tactics.txt
|
||||
|
||||
platform_type EW_RADAR RED_RADAR
|
||||
platform_type EW_RADAR WSF_PLATFORM
|
||||
icon Ground_Radar
|
||||
category 2D_RADAR
|
||||
|
||||
infrared_signature VEHICLE_INFRARED_SIGNATURE
|
||||
optical_signature VEHICLE_OPTICAL_SIGNATURE
|
||||
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||
|
||||
sensor ew_radar EW_RADAR
|
||||
on
|
||||
internal_link data_mgr
|
||||
ignore_same_side
|
||||
end_sensor
|
||||
|
||||
processor ep_operations EP_OPERATIONS
|
||||
script_variables
|
||||
mSensorNameList.PushBack("ew_radar");
|
||||
end_script_variables
|
||||
|
||||
processor data_mgr WSF_LINKED_PROCESSOR
|
||||
report_to commander via sub_net
|
||||
end_processor
|
||||
|
||||
aux_data
|
||||
double max_range = 185200 # meters = 100 nm
|
||||
end_aux_data
|
||||
comm sub_net RED_DATALINK
|
||||
network_name <local:slave>
|
||||
internal_link task_mgr
|
||||
end_comm
|
||||
|
||||
# processor task_mgr RED_RADAR_TACTICS
|
||||
# end_processor
|
||||
|
||||
# processor ep_operations EP_OPERATIONS
|
||||
# script_variables
|
||||
# mSensorNameList.PushBack("ew_radar");
|
||||
# end_script_variables
|
||||
# end_processor
|
||||
#
|
||||
# aux_data
|
||||
# double max_range = 185200 # meters = 100 nm
|
||||
# end_aux_data
|
||||
end_platform_type
|
||||
|
||||
@@ -11,9 +11,6 @@
|
||||
# * ****** UNCLASSIFIED ****** *
|
||||
# * * ************************************** * *
|
||||
|
||||
processor IADS_CMDR_DATA_MGR WSF_TRACK_PROCESSOR
|
||||
purge_interval 60 sec
|
||||
end_processor
|
||||
|
||||
processor IADS_CMDR_TASK_MGR WSF_TASK_PROCESSOR
|
||||
number_of_servers 5
|
||||
@@ -32,9 +29,11 @@ processor IADS_CMDR_TASK_MGR WSF_TASK_PROCESSOR
|
||||
|
||||
// determine if TRACK is assignable
|
||||
script bool IsAssignable()
|
||||
#writeln(TRACK);
|
||||
if ((! TRACK.IFF_Friend()) &&
|
||||
(TRACK.TimeSinceUpdated() < 30.0))
|
||||
{
|
||||
#writeln("find enermy");
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -73,17 +72,21 @@ processor IADS_CMDR_TASK_MGR WSF_TASK_PROCESSOR
|
||||
end_script
|
||||
|
||||
script void MakeAssignments()
|
||||
#writeln("MakeAssignments ");
|
||||
Array<WsfPlatform> filter = Array<WsfPlatform>();
|
||||
foreach (WsfPlatform sub in PLATFORM.Subordinates())
|
||||
{
|
||||
if (sub.Type() == "LARGE_SAM_BATTALION")
|
||||
#writeln("is Subordinates");
|
||||
if (sub.Type() == "LARGE_SAM_LAUNCHER")
|
||||
{
|
||||
#writeln("is LARGE_SAM_LAUNCHER");
|
||||
if (WeaponsAvailable(sub) &&
|
||||
(TasksAssignedTo(sub) < MAX_ASSIGNMENTS_PER_SAM) &&
|
||||
(TasksAssignedTo(sub, TRACK.TrackId()) < 1) &&
|
||||
(TRACK.WithinZoneOf(sub, "battalion_sector")))
|
||||
{
|
||||
writeln_d("*** Adding ", sub.Name(), " to filter");
|
||||
writeln("can fire");
|
||||
writeln("*** Adding ", sub.Name(), " to filter");
|
||||
filter.PushBack(sub);
|
||||
}
|
||||
}
|
||||
@@ -93,6 +96,7 @@ processor IADS_CMDR_TASK_MGR WSF_TASK_PROCESSOR
|
||||
int numAssignments = (int)MATH.Min(filter.Size(), MAX_SAMS_PER_TARGET);
|
||||
for (int i=0; i < numAssignments; i = i + 1)
|
||||
{
|
||||
writeln("assign fire");
|
||||
AssignTask(TRACK, "ENGAGE", filter[i]);
|
||||
}
|
||||
end_script
|
||||
@@ -132,6 +136,10 @@ platform_type IADS_CMDR WSF_PLATFORM
|
||||
infrared_signature VEHICLE_INFRARED_SIGNATURE
|
||||
optical_signature VEHICLE_OPTICAL_SIGNATURE
|
||||
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||
|
||||
mover WSF_GROUND_MOVER
|
||||
|
||||
end_mover
|
||||
|
||||
comm sub_net RED_DATALINK
|
||||
network_name <local:master>
|
||||
@@ -139,12 +147,14 @@ platform_type IADS_CMDR WSF_PLATFORM
|
||||
internal_link task_mgr
|
||||
end_comm
|
||||
|
||||
processor data_mgr IADS_CMDR_DATA_MGR
|
||||
processor data_mgr WSF_TRACK_PROCESSOR
|
||||
purge_interval 60 sec
|
||||
end_processor
|
||||
|
||||
|
||||
processor task_mgr IADS_CMDR_TASK_MGR
|
||||
operating_level ENGAGE 1
|
||||
end_processor
|
||||
|
||||
|
||||
include processors/commander_track_manager$(TRACKER_TYPE).txt
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@ include_once weapons/sam/large_sam.txt
|
||||
|
||||
platform_type LARGE_SAM_LAUNCHER WSF_PLATFORM
|
||||
icon SA-10_Launcher
|
||||
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||
|
||||
comm cmdr_net RED_DATALINK
|
||||
network_name <local:slave>
|
||||
@@ -27,9 +28,44 @@ platform_type LARGE_SAM_LAUNCHER WSF_PLATFORM
|
||||
end_processor
|
||||
|
||||
processor task_mgr WSF_TASK_PROCESSOR
|
||||
script void on_task_assign(WsfTask aTask, WsfTrack aTrack)
|
||||
|
||||
if (aTask.TaskType() == "ENGAGE")
|
||||
{
|
||||
if (!aTrack.Exists())
|
||||
{
|
||||
writeln("[SAM] ");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!aTrack.WithinZoneOf(PLATFORM, "battalion_sector"))
|
||||
writeln("[SAM] 20nm ");
|
||||
return;
|
||||
end
|
||||
|
||||
--
|
||||
if (PLATFORM.Weapon("sam").QuantityRemaining() <= 0) then
|
||||
writeln("[SAM] ");
|
||||
return;
|
||||
end
|
||||
|
||||
--
|
||||
PLATFORM.Weapon("sam").FireAt(aTrack);
|
||||
writeln("[SAM] : ", aTrack.TargetName());
|
||||
else
|
||||
writeln("[SAM] ", aTask.Type());
|
||||
end
|
||||
end_script
|
||||
|
||||
|
||||
end_processor
|
||||
|
||||
weapon sam LARGE_SAM
|
||||
quantity 4
|
||||
end_weapon
|
||||
|
||||
zone battalion_sector
|
||||
circular maximum_radius 20 nm
|
||||
end_zone
|
||||
end_platform_type
|
||||
|
||||
45
platforms/radar_apache.txt
Normal file
45
platforms/radar_apache.txt
Normal file
@@ -0,0 +1,45 @@
|
||||
# File generated by Wizard 2.9.0 on Sep 17, 2025.
|
||||
include_once sensors/radar/ew_radar.txt
|
||||
include_once processors/ep_operations.txt
|
||||
include_once platforms/red_radar_tactics.txt
|
||||
|
||||
platform_type RADAR_APACHE WSF_PLATFORM
|
||||
icon apache
|
||||
category 2D_RADAR
|
||||
infrared_signature FIGHTER_INFRARED_SIG
|
||||
optical_signature FIGHTER_OPTICAL_SIG
|
||||
radar_signature FIGHTER_RADAR_SIG
|
||||
|
||||
mover WSF_AIR_MOVER
|
||||
default_radial_acceleration 2.0 g
|
||||
at_end_of_path remove
|
||||
end_mover
|
||||
|
||||
sensor ew_radar EW_RADAR
|
||||
on
|
||||
internal_link data_mgr
|
||||
ignore_same_side
|
||||
end_sensor
|
||||
|
||||
processor data_mgr WSF_LINKED_PROCESSOR
|
||||
report_to commander via sub_net
|
||||
end_processor
|
||||
|
||||
comm sub_net RED_DATALINK
|
||||
network_name <local:slave>
|
||||
#internal_link task_mgr
|
||||
end_comm
|
||||
|
||||
# processor task_mgr RED_RADAR_TACTICS
|
||||
# end_processor
|
||||
|
||||
# processor ep_operations EP_OPERATIONS
|
||||
# script_variables
|
||||
# mSensorNameList.PushBack("ew_radar");
|
||||
# end_script_variables
|
||||
# end_processor
|
||||
|
||||
# aux_data
|
||||
# double max_range = 185200 # meters = 100 nm
|
||||
# end_aux_data
|
||||
end_platform_type
|
||||
@@ -1,61 +1,61 @@
|
||||
# File generated by Wizard 2.9.0 on Sep 12, 2025.
|
||||
platform red_soj1 SOJ
|
||||
platform red_radar_apache RADAR_APACHE
|
||||
side red
|
||||
commander SELF
|
||||
commander red_command_truck
|
||||
icon apache
|
||||
position 24:59:14.788n 120:56:02.481e altitude 1000 m
|
||||
heading 222.0 deg
|
||||
end_platform
|
||||
|
||||
platform red_radar_company1 RADAR_COMPANY
|
||||
platform red_radar_truck EW_RADAR
|
||||
side red
|
||||
commander 10_iads_cmdr
|
||||
commander red_command_truck
|
||||
icon TWIN_BOX
|
||||
position 24:48:22.840n 120:56:52.973e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
platform red_mortar_carrier1 RADAR_COMPANY
|
||||
platform red_mortar_carrier1 LARGE_SAM_LAUNCHER
|
||||
side red
|
||||
icon sa-10_launcher
|
||||
commander 10_iads_cmdr
|
||||
commander red_command_truck
|
||||
position 24:41:53.371n 120:54:20.249e altitude 0.0 m agl
|
||||
|
||||
end_platform
|
||||
|
||||
platform red_mortar_carrier2 RADAR_COMPANY
|
||||
platform red_mortar_carrier2 LARGE_SAM_LAUNCHER
|
||||
side red
|
||||
icon sa-10_launcher
|
||||
commander 10_iads_cmdr
|
||||
commander red_command_truck
|
||||
position 24:42:01.058n 120:56:14.298e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
platform red_ucav1 UCAV
|
||||
side red
|
||||
commander SELF
|
||||
|
||||
commander red_command_truck
|
||||
position 24:46:39.435n 121:02:17.636e altitude 1000 m
|
||||
edit weapon blue_gps_bomb_1
|
||||
quantity 0
|
||||
end_weapon
|
||||
end_platform
|
||||
|
||||
platform red_comm_truck RADAR_COMPANY
|
||||
platform red_comm_truck EW_RADAR
|
||||
side red
|
||||
icon comm_truck_icon
|
||||
commander 10_iads_cmdr
|
||||
commander red_command_truck
|
||||
position 24:45:40.217n 120:56:34.489e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
platform red_command_truck RADAR_COMPANY
|
||||
platform red_command_truck IADS_CMDR
|
||||
side red
|
||||
icon comm_truck_icon
|
||||
commander 10_iads_cmdr
|
||||
commander SELF
|
||||
position 24:37:15.849n 120:53:05.224e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
|
||||
platform blue_ew_radar1 EW_RADAR
|
||||
side blue
|
||||
|
||||
commander 700_radar_company
|
||||
commander blue_iads_cmdr
|
||||
position 24:58:36.915n 121:08:18.402e altitude 0.0 m agl
|
||||
|
||||
edit sensor ew_radar
|
||||
@@ -67,8 +67,7 @@ end_platform
|
||||
|
||||
platform blue_ew_radar2 EW_RADAR
|
||||
side blue
|
||||
|
||||
commander 700_radar_company
|
||||
commander blue_iads_cmdr
|
||||
position 24:54:47.647n 121:12:42.548e altitude 0.0 m agl
|
||||
|
||||
edit sensor ew_radar
|
||||
@@ -78,32 +77,31 @@ platform blue_ew_radar2 EW_RADAR
|
||||
end_sensor
|
||||
end_platform
|
||||
|
||||
platform blue_soj1 SOJ
|
||||
platform blue_radar_apache RADAR_APACHE
|
||||
side blue
|
||||
commander SELF
|
||||
commander blue_iads_cmdr
|
||||
icon apache
|
||||
position 24:55:04.727n 121:06:19.053e altitude 1000 m
|
||||
heading 222.0 deg
|
||||
end_platform
|
||||
|
||||
platform blue_mortar_carrier1 RADAR_COMPANY
|
||||
platform blue_mortar_carrier1 LARGE_SAM_LAUNCHER
|
||||
side blue
|
||||
icon sa-10_launcher
|
||||
#commander 10_iads_cmdr
|
||||
commander blue_iads_cmdr
|
||||
position 24:59:45.752n 121:12:42.586e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
platform blue_mortar_carrier2 RADAR_COMPANY
|
||||
platform blue_mortar_carrier2 LARGE_SAM_LAUNCHER
|
||||
side blue
|
||||
icon sa-10_launcher
|
||||
#commander 10_iads_cmdr
|
||||
commander blue_iads_cmdr
|
||||
position 24:59:51.419n 121:16:10.196e altitude 0.0 m agl
|
||||
end_platform
|
||||
|
||||
platform blue_ucav1 UCAV
|
||||
side blue
|
||||
commander SELF
|
||||
|
||||
commander blue_iads_cmdr
|
||||
position 24:51:44.015n 121:13:24.875e altitude 1000 m
|
||||
heading 180 deg
|
||||
edit weapon blue_gps_bomb_1
|
||||
@@ -114,7 +112,7 @@ end_platform
|
||||
|
||||
platform blue_iads_cmdr IADS_CMDR
|
||||
side blue
|
||||
commander SELF
|
||||
icon cmd_post
|
||||
commander SELF
|
||||
position 25:02:07.751n 121:18:47.287e altitude 0.0 m agl
|
||||
end_platform
|
||||
24
strike.txt
24
strike.txt
@@ -11,9 +11,9 @@ log_file output/$(CASE).log
|
||||
|
||||
include setup.txt
|
||||
|
||||
include scenarios/iads_laydown.txt
|
||||
include scenarios/targets.txt
|
||||
include scenarios/strike.txt
|
||||
#include scenarios/iads_laydown.txt
|
||||
#include scenarios/targets.txt
|
||||
#include scenarios/strike.txt
|
||||
include scenarios/demo.txt
|
||||
|
||||
event_output file output/strike.evt end_event_output
|
||||
@@ -22,12 +22,12 @@ event_pipe file output/$(CASE).aer end_event_pipe
|
||||
|
||||
end_time 40 min
|
||||
|
||||
platform_availability
|
||||
name 100_soj availability 1.0
|
||||
name 200_soj availability 1.0
|
||||
name 300_soj availability 1.0
|
||||
name 100_ucav availability 1.0
|
||||
name 200_ucav availability 1.0
|
||||
name 300_ucav availability 1.0
|
||||
name 400_ucav availability 1.0
|
||||
end_platform_availability
|
||||
#platform_availability
|
||||
# name 100_soj availability 1.0
|
||||
# name 200_soj availability 1.0
|
||||
# name 300_soj availability 1.0
|
||||
# name 100_ucav availability 1.0
|
||||
# name 200_ucav availability 1.0
|
||||
# name 300_ucav availability 1.0
|
||||
# name 400_ucav availability 1.0
|
||||
#end_platform_availability
|
||||
|
||||
123
warlock.log
123
warlock.log
@@ -1,63 +1,60 @@
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/strike.txt
|
||||
2025-05-22 16:03:23 version wsf 2.9.0
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\strike.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\setup.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\event_output.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\event_pipe.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\csv_event_output.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\terrain.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/common.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\platforms/cmdr_players.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/platforms/iads_cmdr.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/processors/commander_track_manager.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/platforms/red_radar_company.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/target.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/radar_players.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/red_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/red_radar_tactics.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/platforms/ew_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/sensors/radar/ew_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/base_types/processors/ep_operations.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/acq_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/sensors/radar/acq_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/sam_players.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/platforms/large_sam_battalion.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/processors/red_sam_battery_tactics.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/sam/sam_launch_computer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/sam/large_sam_launch_computer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/large_sam_ttr.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/sensors/radar/ttr_radar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/large_sam_launcher.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/sam/large_sam.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\platforms/blue_players.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/platforms/ucav.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/ucav_sigs.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/ucav_infrared_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/ucav_optical_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/ucav_radar_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/sensors/esm_rwr/ucav_esm.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/sensors/radar/ucav_sar.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/agm/blue_gps_bomb_2.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/agm/blue_gps_bomb_1.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/weapons/agm/blue_glide_bomb_1.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/platforms/soj.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/fighter_sigs.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/fighter_infrared_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/fighter_optical_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/signatures/fighter_radar_sig.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/weapons/jammer/soj_vhf_jammer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/./weapons/jammer/soj_base_jammer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/./weapons/jammer/false_target.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/weapons/jammer/soj_sband_jammer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/weapons/jammer/soj_xband_jammer.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/scenarios/nets_zones.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/scenarios/iads_laydown.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/iads/scenarios/targets.txt
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\demos\aea_iads\scenarios/strike.txt
|
||||
2025-05-22 16:03:23 file D:/developer/developer/AFSIM_2.9/demos/aea_iads/strike.txt.ide_conf
|
||||
2025-05-22 16:03:23 file D:\developer\developer\AFSIM_2.9\resources\data\_wsf_debug_scripts_.txt
|
||||
2025-05-22 16:03:27 AER output file: output/strike.aer
|
||||
2025-05-22 16:03:27 Event output file: output/strike.evt
|
||||
2025-05-22 16:03:27 Event output file: output/strike.csv
|
||||
2025-05-22 16:03:27 start 1
|
||||
2025-05-22 16:06:02 complete 2400.000 154.707 221.375
|
||||
2025-09-17 17:22:06 file E:/Work/Situation_file/8511demo/strike.txt
|
||||
2025-09-17 17:22:06 version wsf 2.9.0
|
||||
2025-09-17 17:22:06 file E:\Work\Situation_file\8511demo\strike.txt
|
||||
2025-09-17 17:22:06 file E:\Work\Situation_file\8511demo\setup.txt
|
||||
2025-09-17 17:22:06 file E:\Work\Situation_file\8511demo\event_output.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\event_pipe.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\csv_event_output.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\terrain.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\platforms/common.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\platforms/cmdr_players.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/iads_cmdr.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/processors/commander_track_manager.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/red_radar_company.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/target.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\platforms/radar_players.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/red_radar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/red_radar_tactics.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/ew_radar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/sensors/radar/ew_radar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/processors/ep_operations.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/acq_radar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/sensors/radar/acq_radar.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\platforms/sam_players.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/large_sam_battalion.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/processors/red_sam_battery_tactics.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/sam/sam_launch_computer.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/sam/large_sam_launch_computer.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/large_sam_ttr.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/sensors/radar/ttr_radar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/large_sam_launcher.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/sam/large_sam.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\platforms/blue_players.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/ucav.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/ucav_sigs.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/ucav_infrared_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/ucav_optical_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/ucav_radar_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/sensors/esm_rwr/ucav_esm.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/sensors/radar/ucav_sar.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/agm/blue_gps_bomb_2.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/agm/blue_gps_bomb_1.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/agm/blue_glide_bomb_1.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/soj.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/fighter_sigs.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/fighter_infrared_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/fighter_optical_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/signatures/fighter_radar_sig.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/jammer/soj_vhf_jammer.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/./weapons/jammer/soj_base_jammer.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/./weapons/jammer/false_target.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/jammer/soj_sband_jammer.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/weapons/jammer/soj_xband_jammer.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\scenarios/nets_zones.txt
|
||||
2025-09-17 17:22:07 file E:\Work\Situation_file\8511demo\scenarios/demo.txt
|
||||
2025-09-17 17:22:07 file E:/Work/Situation_file/8511demo/platforms/radar_apache.txt
|
||||
2025-09-17 17:22:08 AER output file: output/strike.aer
|
||||
2025-09-17 17:22:08 Event output file: output/strike.evt
|
||||
2025-09-17 17:22:08 Event output file: output/strike.csv
|
||||
2025-09-17 17:22:08 start 1
|
||||
2025-09-17 17:25:52 terminated 442.868 224.211 153.547
|
||||
|
||||
Reference in New Issue
Block a user