Skip to content

Commit

Permalink
header
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanno Rein committed Jun 2, 2023
1 parent 0985b9c commit 29730d5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/integrator_whfast512.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* @file integrator_whfast612.h
* @brief Interface for numerical particle integrator
* @author Hanno Rein <hanno@hanno-rein.de>
* Pejvak Javaheri <pejvak.javaheri@mail.utoronto.ca>
*
* @section LICENSE
* Copyright (c) 2023 Hanno Rein, Pejvak Javaheri
*
* This file is part of rebound.
*
* rebound is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* rebound is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with rebound. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _INTEGRATOR_WHFAST512_H
#define _INTEGRATOR_WHFAST512_H

#include "rebound.h"

void reb_integrator_whfast512_part1(struct reb_simulation* r); ///< Internal function used to call a specific integrator
void reb_integrator_whfast512_part2(struct reb_simulation* r); ///< Internal function used to call a specific integrator
void reb_integrator_whfast512_synchronize(struct reb_simulation* r); ///< Internal function used to call a specific integrator
void reb_whfast512_kepler_solver(const struct reb_simulation* const r, struct reb_particle* const restrict p_j, const double M, unsigned int i, double _dt); ///< Internal function (Main WHFast Kepler Solver)
void reb_whfast512_calculate_jerk(struct reb_simulation* r); ///< Calculates "jerk" term

#endif

0 comments on commit 29730d5

Please sign in to comment.