Deleted Added
sdiff udiff text old ( 11800:54436a1784dc ) new ( 11899:d04da1f9c961 )
full compact
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

--- 33 unchanged lines hidden (view full) ---

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"
51#include "sim/power/thermal_entity.hh"
52#include "sim/power/thermal_node.hh"
53#include "sim/sim_object.hh"
54
55
56/**
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;

--- 125 unchanged lines hidden ---