blob: e87a77be9d3007021cfe1d43d3e6212de4f27949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include "model/timing_graph/ElectricalDelay.h"
#include "model/timing_graph/ElectricalLoad.h"
namespace DSENT
{
//-------------------------------------------------------------------------
// Electrical Delay
//-------------------------------------------------------------------------
ElectricalDelay::ElectricalDelay(const String& instance_name_, ElectricalModel* model_)
: ElectricalTimingNode(instance_name_, model_), m_delay_(0.0)
{
}
ElectricalDelay::~ElectricalDelay()
{
}
void ElectricalDelay::setDelay(double delay_)
{
m_delay_ = delay_;
return;
}
double ElectricalDelay::getDelay() const
{
return m_delay_;
}
double ElectricalDelay::calculateDelay() const
{
return m_delay_;
}
double ElectricalDelay::calculateTransition() const
{
return 1.386 * getMaxUpstreamRes() * getTotalDownstreamCap();
}
double ElectricalDelay::getMaxUpstreamRes() const
{
return ElectricalTimingNode::getMaxUpstreamRes();
}
double ElectricalDelay::getTotalDownstreamCap() const
{
return ElectricalTimingNode::getTotalDownstreamCap();
}
} // namespace DSENT
|