3D-ICE 3.0.0
coolant.h
Go to the documentation of this file.
1/******************************************************************************
2 * This file is part of 3D-ICE, version 3.1.0 . *
3 * *
4 * 3D-ICE is free software: you can redistribute it and/or modify it under *
5 * the terms of the GNU General Public License as published by the Free *
6 * Software Foundation, either version 3 of the License, or any later *
7 * version. *
8 * *
9 * 3D-ICE is distributed in the hope that it will be useful, but WITHOUT *
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
12 * more details. *
13 * *
14 * You should have received a copy of the GNU General Public License along *
15 * with 3D-ICE. If not, see <http://www.gnu.org/licenses/>. *
16 * *
17 * Copyright (C) 2021 *
18 * Embedded Systems Laboratory - Ecole Polytechnique Federale de Lausanne *
19 * All Rights Reserved. *
20 * *
21 * Authors: Arvind Sridhar Alessandro Vincenzi *
22 * Giseong Bak Martino Ruggiero *
23 * Thomas Brunschwiler Eder Zulian *
24 * Federico Terraneo Darong Huang *
25 * Luis Costero Marina Zapater *
26 * David Atienza *
27 * *
28 * For any comment, suggestion or request about 3D-ICE, please register and *
29 * write to the mailing list (see http://listes.epfl.ch/doc.cgi?liste=3d-ice) *
30 * Any usage of 3D-ICE for research, commercial or other purposes must be *
31 * properly acknowledged in the resulting products or publications. *
32 * *
33 * EPFL-STI-IEL-ESL Mail : 3d-ice@listes.epfl.ch *
34 * Batiment ELG, ELG 130 (SUBSCRIPTION IS NECESSARY) *
35 * Station 11 *
36 * 1015 Lausanne, Switzerland Url : http://esl.epfl.ch/3d-ice *
37 ******************************************************************************/
38
39#ifndef _3DICE_COOLANT_H_
40#define _3DICE_COOLANT_H_
41
44#ifdef __cplusplus
45extern "C"
46{
47#endif
48
49#include "types.h"
50
51/******************************************************************************/
52
53
54
60 struct Coolant_t
61 {
67
73
79
83
90
94
98
99 } ;
100
103 typedef struct Coolant_t Coolant_t ;
104
105
106
107/******************************************************************************/
108
109
110
116 void coolant_init (Coolant_t *coolant) ;
117
118
119
128 void coolant_copy (Coolant_t *dst, Coolant_t *src) ;
129
130
131
140 void coolant_destroy (Coolant_t *coolant) ;
141
142/******************************************************************************/
143
144#ifdef __cplusplus
145}
146#endif
147
148#endif /* _3DICE_COOLANT_H_ */
void coolant_init(Coolant_t *coolant)
Definition: coolant.c:43
void coolant_copy(Coolant_t *dst, Coolant_t *src)
Definition: coolant.c:56
void coolant_destroy(Coolant_t *coolant)
Definition: coolant.c:71
A collection of parameters describing the properties cooling fluid.
Definition: coolant.h:61
CoolantVHC_t VHC
Definition: coolant.h:82
CoolantHTC_t HTCSide
Definition: coolant.h:66
CoolantHTC_t HTCTop
Definition: coolant.h:72
CoolantFR_t FlowRate
Definition: coolant.h:89
DarcyVelocity_t DarcyVelocity
Definition: coolant.h:93
Temperature_t TIn
Definition: coolant.h:97
CoolantHTC_t HTCBottom
Definition: coolant.h:78
double CoolantFR_t
Definition: types.h:149
double CoolantHTC_t
Definition: types.h:133
double Temperature_t
Definition: types.h:71
double DarcyVelocity_t
Definition: types.h:157
double CoolantVHC_t
Definition: types.h:141