Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is the intention of this segment code to keep the initial acceleration A0 unchanged, when A1 or A2 excceds the pysical limit? #148

Open
xiaozialei opened this issue May 15, 2022 · 0 comments

Comments

@xiaozialei
Copy link

  if (i == 1 || i == 2) {
    // cout << "acc i: " << i << endl;
    for (int j = 2; j <= 5; ++j) {
      u_(j) += double(j - 1) * t_inc;
    }

    for (int j = 6; j < u_.rows(); ++j) {
      u_(j) += 4.0 * t_inc;
    }

  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant