MISSIONS & IADS (INTEGRATED AIR DEFENCE SYSTEM)

Post Reply
User avatar
Chris
Posts: 906
Joined: 23 Feb 2020, 21:12

MISSIONS & IADS (INTEGRATED AIR DEFENCE SYSTEM)

Post by Chris »

DCS IADS Script by WALDER....https://github.com/walder/Skynet-IADS
iads1.jpeg
iads1.jpeg (299.35 KiB) Viewed 1231 times
In short, this script simulates an IADS within the scripting limitations of MIST and DCS. Early Warning Radar Stations (EW Radar) scan the sky for contacts. These contacts are correlated with SAM (Surface to Air Missile) sites. If a contact is within firing range of the SAM site it will become active.

A modern IADS also depends on command centre's and datalinks to the SAM sites. The IADS can be set up with this infrastructure. Destroying it will degrade the capability of the IADS.

You can just have just the basics of IADS which will function fine with minimal scripting and correct object naming but IADS really comes into it's own when you add connectivity with Control centres, Early Warning Radars, Radio relays (Connection nodes) Power sources and Point Defence SAMs.

Destroy the COMMS relays, you degrade, destroy EWRs, you degrade, destroy the Power source and the Control or EWRs cannot function, you degrade, destroy the CONTROL unit, IADS is DOWN.


This puts a totally different perspective to planning and squadron skillsets... for those that want it of course.

I've configured a simple mission to allow anyone to play with the concept of IADS SP or by moving the bits make a very engaging MP mission.

There are 2 air-starts, one 5000agl coming into a SA2 site at Sukumi and another, 30,000agl heading towards SA10 site in the mountains... both AC are loaded with HARMS. The SA10 have a SA15 for point defence of any inbound HARMS but from 30000' they are fast and some will get through. Both aircraft will be picked up by one of 2 EWRs.

This mission is a network... the EWRs have power sources and COMMs Nodes as do the SA2 and SA10 sites and all connect back to CONTROL. CONTROL normally keeps SA2's off until AC are in the kill zone and then turn them on... SA10's may be on for longer... A screen text will show when you have been detected by the EWRs.... in a mission this would push start red air response....


Here's a diagram below .. and the miz here
skynet-cauc.miz
(100.19 KiB) Downloaded 97 times
iads2.png
iads2.png (2.1 MiB) Viewed 1231 times
For any mission designers here is the configuration code...

Code: Select all

do
--create IADS
redIADS = SkynetIADS:create('Caucasus')
--add all units with unit name beginning with 'EW' to the IADS:
redIADS:addEarlyWarningRadarsByPrefix('EW')
--add all groups begining with group name 'SAM' to the IADS:
redIADS:addSAMSitesByPrefix('SAM')
--add a command center:
local commandCenter = StaticObject.getByName("Command-Center-North")
local comPowerSource = StaticObject.getByName("Command-Center-North-Power-Source")
redIADS:addCommandCenter(commandCenter):addPowerSource(comPowerSource)
--add a power source and a connection node for this EW radars:
local powerSource = StaticObject.getByName('Power-EW-Centre')
local connectionNodeEW = StaticObject.getByName('Con-Node-EW-Centre')
redIADS:getEarlyWarningRadarByUnitName('EW-Centre'):addPowerSource(powerSource):addConnectionNode(connectionNodeEW)
local powerSource = StaticObject.getByName('Power-EW-West')
local connectionNodeEW = StaticObject.getByName('Con-Node-EW-West')
redIADS:getEarlyWarningRadarByUnitName('EW-West'):addPowerSource(powerSource):addConnectionNode(connectionNodeEW)
--add a connection node to this SA-2 
local connectionNode = Unit.getByName('Mobile-Command-Post-SAM-SA-2')
redIADS:getSAMSiteByGroupName('SAM-SA-2'):addConnectionNode(connectionNode):setAutonomousBehaviour(SkynetIADSAbstractRadarElement.AUTONOMOUS_STATE_DARK)
--SA-2 site will go live at 70% of its max search range:
redIADS:getSAMSiteByGroupName('SAM-SA-2'):setEngagementZone(SkynetIADSAbstractRadarElement.GO_LIVE_WHEN_IN_SEARCH_RANGE):setGoLiveRangeInPercent(80)
--all SA-10 sites shall act as EW sites
redIADS:getSAMSitesByNatoName('SAM-SA-10-Centre'):setActAsEW(true)
local connectionNode = Unit.getByName('SAM-SA-10-node')
redIADS:getSAMSiteByGroupName('SAM-SA-10-Centre'):addConnectionNode(connectionNode)
--set the sa15 as point defence for the SA-10 site, we set it to always react to a HARM so we can demonstrate the point defence mechanism in Skynet
local sa15 = redIADS:getSAMSiteByGroupName('SAM-SA-15-pointdefence')
redIADS:getSAMSiteByGroupName('SAM-SA-10-Centre'):addPointDefence(sa15):setHARMDetectionChance(100):setIgnoreHARMSWhilePointDefencesHaveAmmo(true)
-- activate 
redIADS:activate()	
-- redIADS:setupSAMSitesAndThenActivate()
end
Some may find this of benefit....

and a little more....


Kind Regards
Chris :)

User avatar
0405 Andrew
Site Admin
Posts: 2138
Joined: 09 Jan 2020, 15:51
Location: Goring, Oxfordshire

Re: MISSIONS & IADS (INTEGRATED AIR DEFENCE SYSTEM)

Post by 0405 Andrew »

Excellent Chris, I've been testing over the last few weeks, i like how the Sam's and EW work together and with the point defence in place Sead will certainly be more challenging.
0405 ANDREW

Tuesday Mission group lead
"Andrew, you are right"
Flyco: 28 Jul 2021, 12:50
Image
Image ImageImage Image

Smithy
Posts: 11
Joined: 04 Sep 2021, 18:34

Re: MISSIONS & IADS (INTEGRATED AIR DEFENCE SYSTEM)

Post by Smithy »

Oooooooh Wild Weasel time!
Student Pilot Rich Smith - RAF Air UK

Image

User avatar
Splintered
Posts: 37
Joined: 29 Dec 2016, 09:51
Location: South London

Re: MISSIONS & IADS (INTEGRATED AIR DEFENCE SYSTEM)

Post by Splintered »

This looks great Chris.
Going to make for very interesting & challenging new cooperatively flown multiplayer missions.

I will give your miz a go when I get some free time over the next few days (possibly Tuesday afternoon).

Cheers for the post a Chris.

Post Reply

Return to “Dedicated Flight Server”