Skip to content
Snippets Groups Projects
Commit 980e4910 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Doxygen documentation fixes.

parent e781074d
No related branches found
No related tags found
1 merge request!641Fixes to the cosmo hydro
......@@ -41,7 +41,7 @@
*
* @param T The temperature of the gas [K].
* @param H_mass_fraction The hydrogen mass fraction of the gas.
* @param T_trans The temperature of the transition from HII to HI [K].
* @param T_transition The temperature of the transition from HII to HI [K].
*/
__attribute__((always_inline, const)) INLINE static double
mean_molecular_weight(const double T, const double H_mass_fraction,
......@@ -59,7 +59,7 @@ mean_molecular_weight(const double T, const double H_mass_fraction,
*
* @param u_cgs The internal energy per unit mass of the gas [erg * g^-1].
* @param H_mass_fraction The hydrogen mass fraction of the gas.
* @param T_trans The temperature of the transition from HII to HI [K].
* @param T_transition The temperature of the transition from HII to HI [K].
* @param m_H_cgs The mass of the Hydorgen atom [g].
* @param k_B_cgs The Boltzmann constant in cgs units [erg * K^-1]
* @return The temperature of the gas [K]
......
......@@ -3158,10 +3158,12 @@ void space_replicate(struct space *s, int replicate, int verbose) {
*
* @param s The #space to create the particles in.
* @param cosmo The current #cosmology model.
* @param periodic Are we using periodic boundary conditions?
* @param dim The size of the box (for periodic wrapping).
* @param verbose Are we talkative?
*/
void space_generate_gas(struct space *s, const struct cosmology *cosmo,
int periodic, double dim[3], int verbose) {
int periodic, const double dim[3], int verbose) {
/* Check that this is a sensible ting to do */
if (!s->hydro)
......
......@@ -268,7 +268,7 @@ void space_check_top_multipoles_drift_point(struct space *s,
void space_check_timesteps(struct space *s);
void space_replicate(struct space *s, int replicate, int verbose);
void space_generate_gas(struct space *s, const struct cosmology *cosmo,
int periodic, double dim[3], int verbose);
int periodic, const double dim[3], int verbose);
void space_check_cosmology(struct space *s, const struct cosmology *cosmo,
int rank);
void space_reset_task_counters(struct space *s);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment