/*******************************************************************************
* This file is part of SWIFT.
* Copyright (c) 2016 Tom Theuns (tom.theuns@durham.ac.uk)
* 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 .
*
******************************************************************************/
#ifndef SWIFT_PHYSICAL_CONSTANTS_H
#define SWIFT_PHYSICAL_CONSTANTS_H
/**
* @file physical_constants.h
* @brief Physical constants in the internal unit system.
*/
/* Config parameters. */
#include
/* Local includes. */
#include "parser.h"
#include "units.h"
/**
* @brief physical constants in in defined programme units
*/
struct phys_const {
/*! Newton's gravitationl constant */
double const_newton_G;
/*! Speed of light in vacuum */
double const_speed_light_c;
/*! Planck's constant */
double const_planck_h;
/*! Planck's reduced constant */
double const_planck_hbar;
/*! Boltzmann's constant */
double const_boltzmann_k;
/*! Avogadro's number */
double const_avogadro_number;
/*! Thomson cross-section */
double const_thomson_cross_section;
/*! Stefan-Boltzmann constant */
double const_stefan_boltzmann;
/*! Charge of the electron */
double const_electron_charge;
/*! Vacuum permeability */
double const_vacuum_permeability;
/*! Electron-Volt */
double const_electron_volt;
/*! Mass of the electron */
double const_electron_mass;
/*! Mass of the proton */
double const_proton_mass;
/*! (Tropical) Year */
double const_year;
/*! Astronomical unit */
double const_astronomical_unit;
/*! Parsec */
double const_parsec;
/*! Light-year */
double const_light_year;
/*! Mass of the Sun */
double const_solar_mass;
/*! Mass of the Earth */
double const_earth_mass;
/*! Radius of the Sun */
double const_solar_radius;
/*! Radius of the Earth */
double const_earth_radius;
/*! Luminosity of the Sun */
double const_solar_luminosity;
/*! Temperature of the CMB at present day */
double const_T_CMB_0;
/*! Primordial Helium fraction */
double const_primordial_He_fraction;
/*! Reduced hubble constant units (i.e. H_0 / h) */
double const_reduced_hubble;
/*! Case B recombination coefficient for hydrogen at 10^4 K */
double const_caseb_recomb;
};
void phys_const_init(const struct unit_system* us, struct swift_params* params,
struct phys_const* internal_const);
void phys_const_print(const struct phys_const* internal_const);
#if defined(HAVE_HDF5)
void phys_const_print_snapshot(hid_t h_file,
const struct phys_const* internal_const);
#endif
/* Dump/restore. */
void phys_const_struct_dump(const struct phys_const* internal_const,
FILE* stream);
void phys_const_struct_restore(const struct phys_const* internal_const,
FILE* stream);
#endif /* SWIFT_PHYSICAL_CONSTANTS_H */