Skip to content
Snippets Groups Projects
Commit 9aa2897c authored by Brady James Garvin's avatar Brady James Garvin
Browse files

Removed leftover test code.

parent ec8c0c3e
Branches master
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ $('#human-design .rocket').text(`${humanDesignedRocket}`); ...@@ -59,7 +59,7 @@ $('#human-design .rocket').text(`${humanDesignedRocket}`);
$('#human-design .delta-v').text(`Effective Δv (accounting for fixed gravity): ${humanDesignedRocket.getEffectiveDeltaV()} m/s`); $('#human-design .delta-v').text(`Effective Δv (accounting for fixed gravity): ${humanDesignedRocket.getEffectiveDeltaV()} m/s`);
$('#human-design .assessment').text(`This rocket can get to ${describeDeltaV(humanDesignedRocket.getEffectiveDeltaV())}.`); $('#human-design .assessment').text(`This rocket can get to ${describeDeltaV(humanDesignedRocket.getEffectiveDeltaV())}.`);
const computerDesignedRocket = designRocket(PAYLOAD_MASS, SEPARATORS, FUEL_TANKS, MOTORS, EARTH_TO_LEO_DELTA_V); // EARTH_TO_SPACE_DELTA_V); const computerDesignedRocket = designRocket(PAYLOAD_MASS, SEPARATORS, FUEL_TANKS, MOTORS, EARTH_TO_SPACE_DELTA_V);
if (computerDesignedRocket !== undefined) { if (computerDesignedRocket !== undefined) {
$('#computer-design .rocket').text(`${computerDesignedRocket}`); $('#computer-design .rocket').text(`${computerDesignedRocket}`);
$('#computer-design .delta-v').text(`Effective Δv (accounting for fixed gravity): ${computerDesignedRocket.getEffectiveDeltaV()} m/s`); $('#computer-design .delta-v').text(`Effective Δv (accounting for fixed gravity): ${computerDesignedRocket.getEffectiveDeltaV()} m/s`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment