/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2019 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_GIZMO_HYDRO_PART_H #define SWIFT_GIZMO_HYDRO_PART_H #include "black_holes_struct.h" #include "chemistry_struct.h" #include "cooling_struct.h" #include "feedback_struct.h" #include "fvpm_geometry_struct.h" #include "particle_splitting_struct.h" #include "rt_struct.h" #include "sink_struct.h" #include "star_formation_struct.h" #include "timestep_limiter_struct.h" #include "tracers_struct.h" /* Extra particle data not needed during the computation. */ struct xpart { /* Offset between current position and position at last tree rebuild. */ float x_diff[3]; /* Offset between the current position and position at the last sort. */ float x_diff_sort[3]; /* Velocity at the last full step. */ float v_full[3]; /*! Gravitational acceleration at the end of the last step */ float a_grav[3]; /*! Additional data used to record particle splits */ struct particle_splitting_data split_data; /* Additional data used to record cooling information */ struct cooling_xpart_data cooling_data; /* Additional data used by the tracers */ struct tracers_xpart_data tracers_data; /* Additional data used by the star formation */ struct star_formation_xpart_data sf_data; /* Additional data used by the feedback */ struct feedback_xpart_data feedback_data; } SWIFT_STRUCT_ALIGN; /* Import the right hydro particle definition */ #if defined(GIZMO_MFV_SPH) #include "MFV/hydro_part.h" #elif defined(GIZMO_MFM_SPH) #include "MFM/hydro_part.h" #endif #endif /* SWIFT_GIZMO_HYDRO_PART_H */