mirror of
https://gitlab.com/lander-team/lander-cpp.git
synced 2025-08-01 19:11:37 +00:00
Fixed build sim on startup
This commit is contained in:
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
@@ -2,7 +2,7 @@
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "cppbuild",
|
||||
"type": "process",
|
||||
"label": "buildSim",
|
||||
"command": "g++",
|
||||
"args": [
|
||||
|
@@ -70,7 +70,7 @@ bool sim(struct Vehicle &State, struct Vehicle &PrevState) {
|
||||
}
|
||||
|
||||
void burnStartTimeCalc(Vehicle &State) {
|
||||
double dt = State.stepSize;
|
||||
double dt = State.stepSize/1000.0;
|
||||
double velocity = State.vz;
|
||||
double h = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user