numerics
Loading...
Searching...
No Matches
heat3d.hpp
Go to the documentation of this file.
1/// @file heat3d.hpp
2/// @brief Heat transfer parameters for the 3D SPH backends.
3#pragma once
4
5namespace physics {
6
8 float h = 0.05f; ///< Smoothing length [m]
9 float alpha_T = 0.005f; ///< Thermal diffusivity [m^2/s]
10 float h_conv = 8.0f; ///< Convective heat transfer coefficient [1/s]
11 float mass = 0.064f; ///< Particle mass [kg]
12};
13
14} // namespace physics
float h_conv
Convective heat transfer coefficient [1/s].
Definition heat3d.hpp:10
float mass
Particle mass [kg].
Definition heat3d.hpp:11
float alpha_T
Thermal diffusivity [m^2/s].
Definition heat3d.hpp:9
float h
Smoothing length [m].
Definition heat3d.hpp:8