thermal_model.hh (11800:54436a1784dc) thermal_model.hh (11899:d04da1f9c961)
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: David Guillen Fandos
38 */
39
40#ifndef __SIM_THERMAL_MODEL_HH__
41#define __SIM_THERMAL_MODEL_HH__
42
43#include <vector>
44
45#include "params/ThermalCapacitor.hh"
46#include "params/ThermalModel.hh"
47#include "params/ThermalReference.hh"
48#include "params/ThermalResistor.hh"
49#include "sim/clocked_object.hh"
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: David Guillen Fandos
38 */
39
40#ifndef __SIM_THERMAL_MODEL_HH__
41#define __SIM_THERMAL_MODEL_HH__
42
43#include <vector>
44
45#include "params/ThermalCapacitor.hh"
46#include "params/ThermalModel.hh"
47#include "params/ThermalReference.hh"
48#include "params/ThermalResistor.hh"
49#include "sim/clocked_object.hh"
50#include "sim/power/thermal_domain.hh"
50#include "sim/power/thermal_entity.hh"
51#include "sim/power/thermal_entity.hh"
52#include "sim/power/thermal_node.hh"
51#include "sim/sim_object.hh"
52
53#include "sim/sim_object.hh"
54
53class ThermalDomain;
54
55
55
56/**
56/**
57 * A ThermalNode is used to connect thermal entities, such as
58 * resistors, capacitors, references and domains. It is the circuital
59 * equivalent to a voltage node.
60 */
61class ThermalNode : public SimObject
62{
63 public:
64 typedef SimObjectParams Params;
65 ThermalNode(const Params *p);
66
67 int id;
68 bool isref;
69 double temp;
70};
71
72/**
73 * A ThermalResistor is used to model a thermal resistance between two
74 * thermal domains. This domains can be either a reference (fixed temp.) or
75 * a heat producer (power source).
76 */
77class ThermalResistor : public SimObject, public ThermalEntity
78{
79 public:
80 typedef ThermalResistorParams Params;
81 ThermalResistor(const Params *p);
82
83 void serialize(CheckpointOut &cp) const override;
84 void unserialize(CheckpointIn &cp) override;
85
86 void setNodes(ThermalNode * n1, ThermalNode * n2) {
87 node1 = n1;
88 node2 = n2;
89 }
90
91 LinearEquation getEquation(ThermalNode * tn, unsigned n,
92 double step) const override;
93
94 private:
95 /* Resistance value in K/W */
96 double _resistance;
97 /* Nodes connected to the resistor */
98 ThermalNode * node1, * node2;
99};
100
101/**
102 * A ThermalCapacitor is used to model a thermal capacitance between two
103 * thermal domains. This domains can be either a reference (fixed temp.) or
104 * a heat producer (power source).
105 */
106class ThermalCapacitor : public SimObject, public ThermalEntity
107{
108 public:
109 typedef ThermalCapacitorParams Params;
110 ThermalCapacitor(const Params *p);
111
112 void serialize(CheckpointOut &cp) const override;
113 void unserialize(CheckpointIn &cp) override;
114
115 LinearEquation getEquation(ThermalNode * tn, unsigned n,
116 double step) const override;
117
118 void setNodes(ThermalNode * n1, ThermalNode * n2) {
119 node1 = n1;
120 node2 = n2;
121 }
122
123 private:
124 /* Capacitance value in J/K */
125 double _capacitance;
126 /* Nodes connected to the resistor */
127 ThermalNode * node1, * node2;
128};
129
130/**
131 * A ThermalReference is a thermal domain with fixed temperature.
132 * It's the homologue to the voltage source in a circuit.
133 */
134class ThermalReference : public SimObject, public ThermalEntity
135{
136 public:
137 typedef ThermalReferenceParams Params;
138 ThermalReference(const Params *p);
139
140 void setNode(ThermalNode * n) {
141 node = n;
142 }
143
144 LinearEquation getEquation(ThermalNode * tn, unsigned n,
145 double step) const override;
146
147 void serialize(CheckpointOut &cp) const override;
148 void unserialize(CheckpointIn &cp) override;
149
150 /* Fixed temperature value in centigrate degrees */
151 double _temperature;
152 /* Nodes connected to the resistor */
153 ThermalNode * node;
154};
155
156
157/**
158 * A ThermalModel is the element which ties all thermal objects
159 * together and provides the thermal solver to the system.
160 * It is reponsible for updating temperature for all Thermal
161 * Domains over time by reading power from simobjects.
162 */
163class ThermalModel : public ClockedObject
164{
165 public:
166 typedef ThermalModelParams Params;
167 ThermalModel(const Params *p);
168
169 void addDomain(ThermalDomain * d);
170 void addReference(ThermalReference * r);
171 void addCapacitor(ThermalCapacitor * c);
172 void addResistor(ThermalResistor * r);
173
174 void addNode(ThermalNode * n) { nodes.push_back(n); }
175
176 double getTemp() const;
177
178 void startup() override;
179 void doStep();
180
181 void serialize(CheckpointOut &cp) const override;
182 void unserialize(CheckpointIn &cp) override;
183 private:
184
185 /* Keep track of all components used for the thermal model */
186 std::vector <ThermalDomain *> domains;
187 std::vector <ThermalReference *> references;
188 std::vector <ThermalCapacitor *> capacitors;
189 std::vector <ThermalResistor *> resistors;
190
191 std::vector <ThermalEntity *> entities;
192
193 /* Keep a list of the instantiated nodes */
194 std::vector <ThermalNode*> nodes;
195 std::vector <ThermalNode*> eq_nodes;
196
197 /** Stepping event to update the model values */
198 EventWrapper<ThermalModel, &ThermalModel::doStep> stepEvent;
199
200 /** Step in seconds for thermal updates */
201 double _step;
202
203};
204
205#endif
57 * A ThermalResistor is used to model a thermal resistance between two
58 * thermal domains. This domains can be either a reference (fixed temp.) or
59 * a heat producer (power source).
60 */
61class ThermalResistor : public SimObject, public ThermalEntity
62{
63 public:
64 typedef ThermalResistorParams Params;
65 ThermalResistor(const Params *p);
66
67 void serialize(CheckpointOut &cp) const override;
68 void unserialize(CheckpointIn &cp) override;
69
70 void setNodes(ThermalNode * n1, ThermalNode * n2) {
71 node1 = n1;
72 node2 = n2;
73 }
74
75 LinearEquation getEquation(ThermalNode * tn, unsigned n,
76 double step) const override;
77
78 private:
79 /* Resistance value in K/W */
80 double _resistance;
81 /* Nodes connected to the resistor */
82 ThermalNode * node1, * node2;
83};
84
85/**
86 * A ThermalCapacitor is used to model a thermal capacitance between two
87 * thermal domains. This domains can be either a reference (fixed temp.) or
88 * a heat producer (power source).
89 */
90class ThermalCapacitor : public SimObject, public ThermalEntity
91{
92 public:
93 typedef ThermalCapacitorParams Params;
94 ThermalCapacitor(const Params *p);
95
96 void serialize(CheckpointOut &cp) const override;
97 void unserialize(CheckpointIn &cp) override;
98
99 LinearEquation getEquation(ThermalNode * tn, unsigned n,
100 double step) const override;
101
102 void setNodes(ThermalNode * n1, ThermalNode * n2) {
103 node1 = n1;
104 node2 = n2;
105 }
106
107 private:
108 /* Capacitance value in J/K */
109 double _capacitance;
110 /* Nodes connected to the resistor */
111 ThermalNode * node1, * node2;
112};
113
114/**
115 * A ThermalReference is a thermal domain with fixed temperature.
116 * It's the homologue to the voltage source in a circuit.
117 */
118class ThermalReference : public SimObject, public ThermalEntity
119{
120 public:
121 typedef ThermalReferenceParams Params;
122 ThermalReference(const Params *p);
123
124 void setNode(ThermalNode * n) {
125 node = n;
126 }
127
128 LinearEquation getEquation(ThermalNode * tn, unsigned n,
129 double step) const override;
130
131 void serialize(CheckpointOut &cp) const override;
132 void unserialize(CheckpointIn &cp) override;
133
134 /* Fixed temperature value in centigrate degrees */
135 double _temperature;
136 /* Nodes connected to the resistor */
137 ThermalNode * node;
138};
139
140
141/**
142 * A ThermalModel is the element which ties all thermal objects
143 * together and provides the thermal solver to the system.
144 * It is reponsible for updating temperature for all Thermal
145 * Domains over time by reading power from simobjects.
146 */
147class ThermalModel : public ClockedObject
148{
149 public:
150 typedef ThermalModelParams Params;
151 ThermalModel(const Params *p);
152
153 void addDomain(ThermalDomain * d);
154 void addReference(ThermalReference * r);
155 void addCapacitor(ThermalCapacitor * c);
156 void addResistor(ThermalResistor * r);
157
158 void addNode(ThermalNode * n) { nodes.push_back(n); }
159
160 double getTemp() const;
161
162 void startup() override;
163 void doStep();
164
165 void serialize(CheckpointOut &cp) const override;
166 void unserialize(CheckpointIn &cp) override;
167 private:
168
169 /* Keep track of all components used for the thermal model */
170 std::vector <ThermalDomain *> domains;
171 std::vector <ThermalReference *> references;
172 std::vector <ThermalCapacitor *> capacitors;
173 std::vector <ThermalResistor *> resistors;
174
175 std::vector <ThermalEntity *> entities;
176
177 /* Keep a list of the instantiated nodes */
178 std::vector <ThermalNode*> nodes;
179 std::vector <ThermalNode*> eq_nodes;
180
181 /** Stepping event to update the model values */
182 EventWrapper<ThermalModel, &ThermalModel::doStep> stepEvent;
183
184 /** Step in seconds for thermal updates */
185 double _step;
186
187};
188
189#endif