Go to the source code of this file.
Functions | |
void | cs_ht_convert_h_to_t_cells (const cs_real_t h[], cs_real_t t[]) |
Convert enthalpy to temperature at all cells. More... | |
void | cs_ht_convert_h_to_t_cells_solid (void) |
Convert enthalpy to temperature at solid cells only. More... | |
void | cs_ht_convert_h_to_t_faces (const cs_real_t h[], cs_real_t t[]) |
Convert enthalpy to temperature at all boundary faces. More... | |
void | cs_ht_convert_t_to_h_faces_l (cs_lnum_t n_faces, const cs_lnum_t face_ids[], const cs_real_t t[], cs_real_t h[]) |
Convert temperature to enthalpy at selected boundary faces. More... | |
void | cs_ht_convert_t_to_h_faces_z (const cs_zone_t *z, const cs_real_t t[], cs_real_t h[]) |
Convert temperature to enthalpy for a given boundary zone, using dense storage for temperature and enthalpy arrays. More... | |
Convert enthalpy to temperature at all cells.
This handles both user and model enthalpy conversions, so can be used safely whenever conversion is needed.
[in] | h | enthalpy values |
[out] | t | temperature values |
void cs_ht_convert_h_to_t_cells_solid | ( | void | ) |
Convert enthalpy to temperature at solid cells only.
This handles both user and model enthalpy conversions, so can be used safely whenever conversion is needed.
Convert enthalpy to temperature at all boundary faces.
This handles both user and model enthalpy conversions, so can be used safely whenever conversion is needed.
[in] | h | enthalpy values |
[out] | t | temperature values |
void cs_ht_convert_t_to_h_faces_l | ( | cs_lnum_t | n_faces, |
const cs_lnum_t | face_ids[], | ||
const cs_real_t | t[], | ||
cs_real_t | h[] | ||
) |
Convert temperature to enthalpy at selected boundary faces.
This handles both user and model enthalpy conversions, so can be used safely whenever conversion is needed.
[in] | n_faces | number of selected boundary faces |
[in] | face_ids | list of associated face ids |
[in] | t | temperature values |
[out] | h | enthalpy values |
Convert temperature to enthalpy for a given boundary zone, using dense storage for temperature and enthalpy arrays.
This handles both user and model enthalpy conversions, so can be used safely whenever conversion is needed.
[in] | z | pointer to selected zone. |
[in] | t | temperature values |
[out] | h | enthalpy values |