does boost odeint have a leapfrog algorithm?

user1304680

I am using boost::odeint and so far I was using the runge_kutta4 stepper. Now I would like to switch to a leapfrog method, e.g. my iteration step should look like:

f(t+dt) = f(t-dt) - p * f(t)

So I need a multistep method, but I am a bit lost with the documentation and would like to get some help.

headmyshoulder

The leap-frog is currently not implemented. But it should be easy to implement with the help of the Adam-Bashforth method. I have opened a ticket in our issue tracker: https://github.com/headmyshoulder/odeint-v2/issues/119

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

does boost odeint have a leapfrog algorithm?

From Dev

Does C++ Algorithm/Boost Lib have Radix Sort?

From Dev

returning derivatives with boost odeint

From Dev

DDE using boost odeint

From Dev

returning derivatives with boost odeint

From Dev

Boost odeint class with derivative and jacobian

From Dev

Boost lib error in using odeint

From Dev

Does Boost have unit tests for itself?

From Dev

Using Boost::odeint with Eigen::Matrix as state vector

From Dev

error with installing odeint <boost/config.hpp>

From Dev

Accurate multidimensional integral using boost odeint

From Dev

role of get_unit_value in boost ODEINT

From Dev

boost::odeint called within member class

From Dev

Using Boost::odeint with Eigen::Matrix as state vector

From Dev

boost::odeint called within member class

From Dev

using several eigen matrices as statetypes in boost/odeint

From Dev

BOOST_ERROR_CODE_HEADER_ONLY does not have the advertised effect

From Dev

Does boost interval_map have operator [] or .at() method?

From Dev

Does stringstream (or boost) have some smart format feature?

From Dev

Does Kotlin have a garbage collector? If so, on which algorithm is it based?

From Dev

odeint complex state type example does not compile

From Dev

Error C2309 in boost odeint package example code

From Dev

Second order differential equation using C++ Boost odeint library

From Dev

Assertion error in a simple C++ program using boost:odeint

From Dev

Can't get BOOST odeint to work with Adams-Bashforth-Moulton

From Dev

wrong output of boost::odeint with custom tensor data structure

From Dev

Segmentation fault in boost::odeint my_vector.cpp example

From Dev

how to control the order of bulirsch_stoer method in boost::odeint?

From Dev

Segmentation fault in boost::odeint my_vector.cpp example

Related Related

  1. 1

    does boost odeint have a leapfrog algorithm?

  2. 2

    Does C++ Algorithm/Boost Lib have Radix Sort?

  3. 3

    returning derivatives with boost odeint

  4. 4

    DDE using boost odeint

  5. 5

    returning derivatives with boost odeint

  6. 6

    Boost odeint class with derivative and jacobian

  7. 7

    Boost lib error in using odeint

  8. 8

    Does Boost have unit tests for itself?

  9. 9

    Using Boost::odeint with Eigen::Matrix as state vector

  10. 10

    error with installing odeint <boost/config.hpp>

  11. 11

    Accurate multidimensional integral using boost odeint

  12. 12

    role of get_unit_value in boost ODEINT

  13. 13

    boost::odeint called within member class

  14. 14

    Using Boost::odeint with Eigen::Matrix as state vector

  15. 15

    boost::odeint called within member class

  16. 16

    using several eigen matrices as statetypes in boost/odeint

  17. 17

    BOOST_ERROR_CODE_HEADER_ONLY does not have the advertised effect

  18. 18

    Does boost interval_map have operator [] or .at() method?

  19. 19

    Does stringstream (or boost) have some smart format feature?

  20. 20

    Does Kotlin have a garbage collector? If so, on which algorithm is it based?

  21. 21

    odeint complex state type example does not compile

  22. 22

    Error C2309 in boost odeint package example code

  23. 23

    Second order differential equation using C++ Boost odeint library

  24. 24

    Assertion error in a simple C++ program using boost:odeint

  25. 25

    Can't get BOOST odeint to work with Adams-Bashforth-Moulton

  26. 26

    wrong output of boost::odeint with custom tensor data structure

  27. 27

    Segmentation fault in boost::odeint my_vector.cpp example

  28. 28

    how to control the order of bulirsch_stoer method in boost::odeint?

  29. 29

    Segmentation fault in boost::odeint my_vector.cpp example

HotTag

Archive