Lines Matching defs:TechModel

22 #include "tech/TechModel.h"
30 TechModel::TechModel()
34 TechModel::~TechModel()
37 const String& TechModel::get(const String &key_) const
42 void TechModel::setStdCellLib(const StdCellLib* std_cell_lib_)
48 const StdCellLib* TechModel::getStdCellLib() const
53 TechModel* TechModel::clone() const
55 return new TechModel(*this);
58 void TechModel::readFile(const String& filename_)
87 double TechModel::calculateNmosLeakageCurrent(unsigned int num_stacks_, double uni_stacked_mos_width_, unsigned int input_vector_) const
94 double TechModel::calculateNmosLeakageCurrent(unsigned int num_stacks_, const vector<double>& stacked_mos_widths_, unsigned int input_vector_) const
122 double TechModel::calculatePmosLeakageCurrent(unsigned int num_stacks_, double uni_stacked_mos_width_, unsigned int input_vector_) const
129 double TechModel::calculatePmosLeakageCurrent(unsigned int num_stacks_, const vector<double>& stacked_mos_widths_, unsigned int input_vector_) const
159 double TechModel::calculateLeakageCurrentFactor(unsigned int num_stacks_, const vector<double>& stacked_mos_widths_, unsigned int input_vector_, double vdd_, double subthreshold_swing_, double dibl_swing_) const
276 bool TechModel::isWireLayerExist(const String& layer_name_) const
283 const std::set<String>* TechModel::getAvailableWireLayers() const
288 double TechModel::calculateWireCapacitance(const String& layer_name_, double width_, double spacing_, double length_) const
318 double TechModel::calculateWireResistance(const String& layer_name_, double width_, double length_) const
340 TechModel::TechModel(const TechModel& tech_model_)