/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2021 Mladen Ivkovic (mladen.ivkovic@hotmail.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_RT_PROPERTIES_NONE_H #define SWIFT_RT_PROPERTIES_NONE_H /** * @file src/rt/none/rt_properties.h * @brief Main header file for the 'none' radiative transfer scheme properties. */ #define RT_IMPLEMENTATION "none" /** * @brief Properties of the 'none' radiative transfer model */ struct rt_props {}; /** * @brief Print the RT model. * * @param rtp The #rt_props */ __attribute__((always_inline)) INLINE static void rt_props_print( const struct rt_props* rtp) { /* Only the master print */ if (engine_rank != 0) return; message("Radiative transfer scheme: '%s'", RT_IMPLEMENTATION); } /** * @brief Initialize the global properties of the RT scheme. * * @param rtp The #rt_props. * @param phys_const The physical constants in the internal unit system. * @param us The internal unit system. * @param params The parsed parameters. * @param cosmo The cosmological model. */ __attribute__((always_inline)) INLINE static void rt_props_init( struct rt_props* rtp, const struct phys_const* phys_const, const struct unit_system* us, struct swift_params* params, struct cosmology* cosmo) {} __attribute__((always_inline)) INLINE static void rt_props_update( struct rt_props* rtp, const struct unit_system* us, struct cosmology* cosmo) {} /** * @brief Write an RT properties struct to the given FILE as a * stream of bytes. * * @param props the struct * @param stream the file stream */ __attribute__((always_inline)) INLINE static void rt_struct_dump( const struct rt_props* props, FILE* stream) { restart_write_blocks((void*)props, sizeof(struct rt_props), 1, stream, "RT props", "RT properties struct"); } /** * @brief Restore an RT properties struct from the given FILE as * a stream of bytes. * * @param props the struct * @param stream the file stream * @param phys_const The physical constants in the internal unit system. * @param us The internal unit system. */ __attribute__((always_inline)) INLINE static void rt_struct_restore( struct rt_props* props, FILE* stream, const struct phys_const* phys_const, const struct unit_system* us, const struct cosmology* restrict cosmo) { restart_read_blocks((void*)props, sizeof(struct rt_props), 1, stream, NULL, "RT properties struct"); } #endif /* SWIFT_RT_PROPERTIES_NONE_H */