Home Reference Source

src/math/constants.js

  1. /**
  2. * @see https://en.wikipedia.org/wiki/Euler_method
  3. * @type {string}
  4. */
  5. export const INTEGRATION_TYPE_EULER = 'EULER';
  6.  
  7. /**
  8. * @see http://web.mit.edu/10.001/Web/Course_Notes/Differential_Equations_Notes/node5.html
  9. * @type {string}
  10. */
  11. export const INTEGRATION_TYPE_RK2 = 'RUNGE_KUTTA_2';
  12.  
  13. /**
  14. * @see http://web.mit.edu/10.001/Web/Course_Notes/Differential_Equations_Notes/node5.html
  15. * @type {string}
  16. */
  17. export const INTEGRATION_TYPE_RK4 = 'RUNGE_KUTTA_4';
  18.  
  19. /**
  20. * @see https://en.wikipedia.org/wiki/Verlet_integration
  21. * @type {string}
  22. */
  23. export const INTEGRATION_TYPE_VERLET = 'VERLET';