diff --git a/lib/node.ks b/lib/node.ks index 73f64b6..87b7ad9 100644 --- a/lib/node.ks +++ b/lib/node.ks @@ -65,7 +65,7 @@ function execute_burn { } local lock burn_duration to estimated_burn_duration(node). - + print "==> EXECUTING MANEUVER NODE". print "Estimated burn duration: " + round(burn_duration, 2) + "s". @@ -74,20 +74,20 @@ function execute_burn { lock STEERING to node. wait until vang(SHIP:facing:vector, node:burnvector) <= 0.5. - local warp_time is max(0, node:eta - (burn_duration/2) - 5). // 5s before we need to start burn - if warp_time { - print "Warping to maneuver node". - warp_for(warp_time). + // Start time is based on half of the delta-v instead of half the burn time to account for the acceleration increasing + // over the course of the burn as the rocket uses fuel, and thus the 2nd half of the burn will take less time than the first. + local burn_start_time is TIME:seconds + node:eta - estimated_burn_duration(node:deltav/2). + warp_to(burn_start_time - 3). // 3s before we need to start burn - print "Approaching maneuver node". - wait until node:eta <= ceiling(burn_duration/2). // ceiling since we'd rather start the burn too soon to have time for perfecting it - } + print "Approaching maneuver node". + wait until TIME:seconds >= burn_start_time. print "Burn!". - // Decreasing throttle linearly with burn duration will only have an effect below 1s, otherwise it will be at max - lock THROTTLE to max(0.01, burn_duration). // ensure we always finish the burn by burning with at least 1% power at all times + // Decrease throttle linearly with burn duration when under 1 second, but ensure we always finish by burning with at least 1% power at all times. + lock THROTTLE to max(0.01, min(1.0, burn_duration)). - // The burn vector will start to drift once we have very little left to burn. Therefore, save the burn vector as it is right now, and lock steering to it, instead of the dynamic vector + // The burn vector will start to drift once we have very little left to burn. + // Therefore, save the burn vector as it is right now, and lock steering to it, instead of the dynamic vector wait until burn_duration <= 1. local dv0 is node:burnvector. lock STEERING to dv0.