-
Matthieu Schaller authoredMatthieu Schaller authored
kick.h 5.42 KiB
/*******************************************************************************
* This file is part of SWIFT.
* Copyright (c) 2016 Matthieu Schaller (matthieu.schaller@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
#ifndef SWIFT_KICK_H
#define SWIFT_KICK_H
/* Config parameters. */
#include "../config.h"
/* Local headers. */
#include "const.h"
#include "debug.h"
#include "stars.h"
#include "timeline.h"
/**
* @brief Perform the 'kick' operation on a #gpart
*
* @param gp The #gpart to kick.
* @param dt_kick_grav The kick time-step for gravity accelerations.
* @param ti_start The starting (integer) time of the kick (for debugging
* checks).
* @param ti_end The ending (integer) time of the kick (for debugging checks).
*/
__attribute__((always_inline)) INLINE static void kick_gpart(
struct gpart *restrict gp, double dt_kick_grav, integertime_t ti_start,
integertime_t ti_end) {
#ifdef SWIFT_DEBUG_CHECKS
if (gp->ti_kick != ti_start)
error(
"g-particle has not been kicked to the current time gp->ti_kick=%lld, "
"ti_start=%lld, ti_end=%lld id=%lld",
gp->ti_kick, ti_start, ti_end, gp->id_or_neg_offset);
gp->ti_kick = ti_end;
#endif
/* Kick particles in momentum space */
gp->v_full[0] += gp->a_grav[0] * dt_kick_grav;
gp->v_full[1] += gp->a_grav[1] * dt_kick_grav;
gp->v_full[2] += gp->a_grav[2] * dt_kick_grav;
/* Kick extra variables */
gravity_kick_extra(gp, dt_kick_grav);
}
/**
* @brief Perform the 'kick' operation on a #part
*
* @param p The #part to kick.
* @param xp The #xpart of the particle.
* @param dt_kick_hydro The kick time-step for hydro accelerations.
* @param dt_kick_grav The kick time-step for gravity accelerations.
* @param dt_kick_therm The kick time-step for changes in thermal state.
* @param dt_kick_corr The kick time-step for the gizmo-mfv gravity correction.
* @param cosmo The cosmological model.
* @param hydro_props The constants used in the scheme
* @param ti_start The starting (integer) time of the kick (for debugging
* checks).
* @param ti_end The ending (integer) time of the kick (for debugging checks).
*/
__attribute__((always_inline)) INLINE static void kick_part(
struct part *restrict p, struct xpart *restrict xp, double dt_kick_hydro,
double dt_kick_grav, double dt_kick_therm, double dt_kick_corr,
const struct cosmology *cosmo, const struct hydro_props *hydro_props,
integertime_t ti_start, integertime_t ti_end) {
#ifdef SWIFT_DEBUG_CHECKS
if (p->ti_kick != ti_start)
error(
"particle has not been kicked to the current time p->ti_kick=%lld, "
"ti_start=%lld, ti_end=%lld id=%lld",
p->ti_kick, ti_start, ti_end, p->id);
p->ti_kick = ti_end;
#endif
/* Kick particles in momentum space (hydro acc.) */
xp->v_full[0] += p->a_hydro[0] * dt_kick_hydro;
xp->v_full[1] += p->a_hydro[1] * dt_kick_hydro;
xp->v_full[2] += p->a_hydro[2] * dt_kick_hydro;
/* Kick particles in momentum space (grav acc.) */
if (p->gpart != NULL) {
xp->v_full[0] += p->gpart->a_grav[0] * dt_kick_grav;
xp->v_full[1] += p->gpart->a_grav[1] * dt_kick_grav;
xp->v_full[2] += p->gpart->a_grav[2] * dt_kick_grav;
}
/* Give the gpart friend the same velocity */
if (p->gpart != NULL) {
p->gpart->v_full[0] = xp->v_full[0];
p->gpart->v_full[1] = xp->v_full[1];
p->gpart->v_full[2] = xp->v_full[2];
}
/* Extra kick work */
hydro_kick_extra(p, xp, dt_kick_therm, dt_kick_grav, dt_kick_hydro,
dt_kick_corr, cosmo, hydro_props);
if (p->gpart != NULL) gravity_kick_extra(p->gpart, dt_kick_grav);
}
/**
* @brief Perform the 'kick' operation on a #spart
*
* @param sp The #spart to kick.
* @param dt_kick_grav The kick time-step for gravity accelerations.
* @param ti_start The starting (integer) time of the kick (for debugging
* checks).
* @param ti_end The ending (integer) time of the kick (for debugging checks).
*/
__attribute__((always_inline)) INLINE static void kick_spart(
struct spart *restrict sp, double dt_kick_grav, integertime_t ti_start,
integertime_t ti_end) {
#ifdef SWIFT_DEBUG_CHECKS
if (sp->ti_kick != ti_start)
error(
"s-particle has not been kicked to the current time sp->ti_kick=%lld, "
"ti_start=%lld, ti_end=%lld id=%lld",
sp->ti_kick, ti_start, ti_end, sp->id);
sp->ti_kick = ti_end;
#endif
/* Kick particles in momentum space */
sp->v[0] += sp->gpart->a_grav[0] * dt_kick_grav;
sp->v[1] += sp->gpart->a_grav[1] * dt_kick_grav;
sp->v[2] += sp->gpart->a_grav[2] * dt_kick_grav;
/* Give the gpart friend the same velocity */
sp->gpart->v_full[0] = sp->v[0];
sp->gpart->v_full[1] = sp->v[1];
sp->gpart->v_full[2] = sp->v[2];
/* Kick extra variables */
stars_kick_extra(sp, dt_kick_grav);
}
#endif /* SWIFT_KICK_H */