AdjustFire
Adjust artillery fire
Usage: Used in 11 task(s)
Lua Implementation
-- Adjust Fire
function execute(params)
local adjustment = params.adjustment -- {left/right, add/drop, meters}
local currentSolution = this:getStateProperty("FireSolution")
if currentSolution then
currentSolution.bearing = currentSolution.bearing + adjustment.bearing_delta
currentSolution.range = currentSolution.range + adjustment.range_delta
this:setStateProperty("FireSolution", currentSolution)
return true
end
return false
end
Tasks Using This Action (11)
Air Defense Artillery Positioning
Air Denial Operations (AIR DOMAIN)
Artillery Spotting and Correction
Unmanned Aerial Vehicle (UAV) Operations (AIR DOMAIN)
Engagement Area Development
Defensive Operations (LAND DOMAIN)
Artillery Preparation Fires
Combined Arms Assault (LAND DOMAIN)
Fire Mission Execution
Artillery and Fires Operations (LAND DOMAIN)
Target Acquisition and Engagement
Artillery and Fires Operations (LAND DOMAIN)
Indirect Fire Support Coordination
Artillery and Fires Operations (LAND DOMAIN)
Barrage and Concentration Fires
Artillery and Fires Operations (LAND DOMAIN)
Suppression Fires
Artillery and Fires Operations (LAND DOMAIN)
Interdiction Fires
Artillery and Fires Operations (LAND DOMAIN)
Harassment and Interdiction (H&I)
Artillery and Fires Operations (LAND DOMAIN)