/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2019 Josh Borrow (joshua.borrow@durham.ac.uk) & * Matthieu Schaller (schaller@strw.leidenuniv.nl) * * 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 . * ******************************************************************************/ #ifndef SWIFT_SPHENIX_HYDRO_DEBUG_H #define SWIFT_SPHENIX_HYDRO_DEBUG_H /** * @file SPHENIX/hydro_debug.h * @brief Density-Energy conservative implementation of SPH, * with added SPHENIX physics (Borrow 2020) (Debugging routines) */ __attribute__((always_inline)) INLINE static void hydro_debug_particle( const struct part* p, const struct xpart* xp) { warning("[PID%lld] part:", p->id); warning( "[PID%lld] x=[%.3e,%.3e,%.3e], " "v=[%.3e,%.3e,%.3e], a=[%.3e,%.3e,%.3e], " "u=%.3e, du/dt=%.3e v_sig=%.3e, P=%.3e, " "h=%.3e, dh/dt=%.3e wcount=%d, m=%.3e, dh_drho=%.3e, rho=%.3e, " "alpha=%.3e, " "time_bin=%d", p->id, p->x[0], p->x[1], p->x[2], p->v[0], p->v[1], p->v[2], p->a_hydro[0], p->a_hydro[1], p->a_hydro[2], p->u, p->u_dt, p->viscosity.v_sig, hydro_get_comoving_pressure(p), p->h, p->force.h_dt, (int)p->density.wcount, p->mass, p->density.rho_dh, p->rho, p->viscosity.alpha, p->time_bin); if (xp != NULL) { warning("[PID%lld] xpart:", p->id); warning("[PID%lld] v_full=[%.3e,%.3e,%.3e]", p->id, xp->v_full[0], xp->v_full[1], xp->v_full[2]); } } #endif /* SWIFT_SPHENIX_HYDRO_DEBUG_H */