StdCell.cc (10447:a465576671d4) StdCell.cc (10448:bc1a3b7ab5ef)
1/* Copyright (c) 2012 Massachusetts Institute of Technology
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE.
20 */
21
1#include "model/std_cells/StdCell.h"
2
3#include "model/timing_graph/ElectricalNet.h"
4#include "model/timing_graph/ElectricalDriver.h"
5#include "model/timing_graph/ElectricalLoad.h"
6
7#include <cmath>
8#include <algorithm>
9
10namespace DSENT
11{
12 StdCell::StdCell(const String& instance_name_, const TechModel* tech_model_)
13 : ElectricalModel(instance_name_, tech_model_)
14 {
15 initParameters();
16 initProperties();
17 }
18
19 StdCell::~StdCell()
20 {
21
22 }
23
24
25 void StdCell::initParameters()
26 {
27 addParameterName("AvailableDrivingStrengths");
28 return;
29 }
30
31 void StdCell::initProperties()
32 {
33 addPropertyName("DrivingStrength");
34 return;
35 }
36
37 // Get PMOS to NMOS ratio
38 double StdCell::getPToNRatio() const
39 {
40 return m_p_to_n_ratio_;
41 }
42
43 void StdCell::setPToNRatio(double p_to_n_ratio_)
44 {
45 m_p_to_n_ratio_ = p_to_n_ratio_;
46 }
47
48 // Get height of the standard cell taken by active transistors
49 double StdCell::getActiveHeight() const
50 {
51 return m_active_height_;
52 }
53
54 void StdCell::setActiveHeight(double active_height_)
55 {
56 m_active_height_ = active_height_;
57 }
58
59 // Get total height of the standard cell including overheads
60 double StdCell::getTotalHeight() const
61 {
62 return m_total_height_;
63 }
64
65 void StdCell::setTotalHeight(double total_height_)
66 {
67 m_total_height_ = total_height_;
68 }
69
70} // namespace DSENT
71
22#include "model/std_cells/StdCell.h"
23
24#include "model/timing_graph/ElectricalNet.h"
25#include "model/timing_graph/ElectricalDriver.h"
26#include "model/timing_graph/ElectricalLoad.h"
27
28#include <cmath>
29#include <algorithm>
30
31namespace DSENT
32{
33 StdCell::StdCell(const String& instance_name_, const TechModel* tech_model_)
34 : ElectricalModel(instance_name_, tech_model_)
35 {
36 initParameters();
37 initProperties();
38 }
39
40 StdCell::~StdCell()
41 {
42
43 }
44
45
46 void StdCell::initParameters()
47 {
48 addParameterName("AvailableDrivingStrengths");
49 return;
50 }
51
52 void StdCell::initProperties()
53 {
54 addPropertyName("DrivingStrength");
55 return;
56 }
57
58 // Get PMOS to NMOS ratio
59 double StdCell::getPToNRatio() const
60 {
61 return m_p_to_n_ratio_;
62 }
63
64 void StdCell::setPToNRatio(double p_to_n_ratio_)
65 {
66 m_p_to_n_ratio_ = p_to_n_ratio_;
67 }
68
69 // Get height of the standard cell taken by active transistors
70 double StdCell::getActiveHeight() const
71 {
72 return m_active_height_;
73 }
74
75 void StdCell::setActiveHeight(double active_height_)
76 {
77 m_active_height_ = active_height_;
78 }
79
80 // Get total height of the standard cell including overheads
81 double StdCell::getTotalHeight() const
82 {
83 return m_total_height_;
84 }
85
86 void StdCell::setTotalHeight(double total_height_)
87 {
88 m_total_height_ = total_height_;
89 }
90
91} // namespace DSENT
92