/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2016 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 . * ******************************************************************************/ __attribute__((always_inline)) INLINE static void hydro_debug_particle( const struct part* p, const struct xpart* xp) { warning( "[PID%lld] x=[%.16e,%.16e,%.16e], " "v=[%.3e,%.3e,%.3e], " "a=[%.3e,%.3e,%.3e], " "time_bin=%d, " "wakeup=%d, " "h=%.3e, " "primitives={" "v=[%.3e,%.3e,%.3e], " "rho=%.3e, " "P=%.3e, " "gradients={" "rho=[%.3e,%.3e,%.3e], " "v=[[%.3e,%.3e,%.3e],[%.3e,%.3e,%.3e],[%.3e,%.3e,%.3e]], " "P=[%.3e,%.3e,%.3e]}, " "limiter={" "rho=[%.3e,%.3e], " "v=[[%.3e,%.3e],[%.3e,%.3e],[%.3e,%.3e]], " "P=[%.3e,%.3e], " "maxr=%.3e}}, " "conserved={" "momentum=[%.3e,%.3e,%.3e], " "mass=%.3e, " "energy=%.3e}, " "timestepvars={" "vmax=%.3e}, " "density={" "wcount_dh=%.3e, " "wcount=%.3e}", 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->time_bin, p->limiter_data.wakeup, p->h, p->primitives.v[0], p->primitives.v[1], p->primitives.v[2], p->primitives.rho, p->primitives.P, p->primitives.gradients.rho[0], p->primitives.gradients.rho[1], p->primitives.gradients.rho[2], p->primitives.gradients.v[0][0], p->primitives.gradients.v[0][1], p->primitives.gradients.v[0][2], p->primitives.gradients.v[1][0], p->primitives.gradients.v[1][1], p->primitives.gradients.v[1][2], p->primitives.gradients.v[2][0], p->primitives.gradients.v[2][1], p->primitives.gradients.v[2][2], p->primitives.gradients.P[0], p->primitives.gradients.P[1], p->primitives.gradients.P[2], p->primitives.limiter.rho[0], p->primitives.limiter.rho[1], p->primitives.limiter.v[0][0], p->primitives.limiter.v[0][1], p->primitives.limiter.v[1][0], p->primitives.limiter.v[1][1], p->primitives.limiter.v[2][0], p->primitives.limiter.v[2][1], p->primitives.limiter.P[0], p->primitives.limiter.P[1], p->primitives.limiter.maxr, p->conserved.momentum[0], p->conserved.momentum[1], p->conserved.momentum[2], p->conserved.mass, p->conserved.energy, p->timestepvars.vmax, p->density.wcount_dh, p->density.wcount); }