/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2022 Bert Vandenbroucke (bert.vandenbroucke@gmail.com) * * 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_COOLING_CHIMES_DEBUG_H #define SWIFT_COOLING_CHIMES_DEBUG_H __attribute__((always_inline)) INLINE static void cooling_debug_particle( const struct part* p, const struct xpart* xp) { warning("[PID%lld] cooling_part_data:", p->id); warning("[PID%lld] subgrid_temp=%.3e, subgrid_dens=%.3e", p->id, p->cooling_data.subgrid_temp, p->cooling_data.subgrid_dens); if (xp != NULL) { warning("[PID%lld] cooling_xpart_data:", p->id); for (int i = 0; i < CHIMES_NETWORK_SIZE; i++) { warning("[PID%lld] chimes_abundances[%i]=%.3e", p->id, i, xp->cooling_data.chimes_abundances[i]); } warning( "[PID%lld] radiated_energy=%.3e, heated_by_FB=%i, " "net_cooling_rate=%.3e, dust_boost_factor=%.3e", p->id, xp->cooling_data.radiated_energy, xp->cooling_data.heated_by_FB, xp->cooling_data.net_cooling_rate, xp->cooling_data.dust_boost_factor); } } #endif /* SWIFT_COOLING_CHIMES_DEBUG_H */