Xyce
6.1
|
Capacitor Model class. More...
#include <N_DEV_Capacitor.h>
Public Member Functions | |
Model (const Configuration &configuration, const ModelBlock &model_block, const FactoryBlock &factory_block) | |
Construct a capacitor model from a "model block" that was created by the netlist parser. More... | |
~Model () | |
bool | processParams () |
Process model parameters. More... | |
bool | processInstanceParams () |
Process the instance parameters of instance owned by this model. More... | |
virtual void | forEachInstance (DeviceInstanceOp &op) const |
Apply a device instance "op" to all instances associated with this model. More... | |
virtual std::ostream & | printOutInstances (std::ostream &os) const |
void | addInstance (Instance *instance) |
![]() | |
DeviceModel (const ModelBlock &model_block, ParametricData< void > ¶metric_data, const FactoryBlock &factory_block) | |
virtual | ~DeviceModel () |
const std::string & | getName () const |
void | setModParams (const std::vector< Param > ¶ms) |
virtual std::ostream & | printName (std::ostream &os) const |
virtual bool | clearTemperatureData () |
void | saveParams () |
bool | interpolateTNOM (double) |
bool | interpolateDOSE (double) |
void | restoreParams () |
virtual bool | getBinPrefixFlag () |
int | getLevel () const |
void | setLevel (int level) |
const std::string & | getType () const |
![]() | |
DeviceEntity (ParametricData< void > ¶metric_data, const SolverState &solver_state, const DeviceOptions &device_options, const std::string &netlist_path, int netlist_line) | |
virtual | ~DeviceEntity () |
virtual CompositeParam * | constructComposite (const std::string &composite_name, const std::string ¶m_name) |
bool | setDefaultParam (double val) |
double | getDefaultParam () const |
bool | scaleParam (const std::string ¶mName, double val, double val0) |
bool | scaleParam (const std::string ¶mName, double val) |
bool | scaleDefaultParam (double val) |
bool | analyticSensitivityAvailable (const std::string ¶mName) |
bool | getAnalyticSensitivity (const std::string ¶mName, std::vector< double > &dfdpVec, std::vector< double > &dqdpVec, std::vector< double > &dbdpVec, std::vector< int > &FindicesVec, std::vector< int > &QindicesVec, std::vector< int > &BindicesVec) |
bool | setParam (const std::string ¶mName, double val) |
bool | getParam (const std::string ¶mName, double &result) const |
bool | getParamBreakpoints (std::vector< Util::BreakPoint > &) |
bool | updateDependentParameters (N_LAS_Vector &vars) |
bool | updateDependentParameters (double temp_tmp) |
bool | updateGlobalParameters (GlobalParameterMap &) |
bool | updateDependentParameters () |
double | setDependentParameter (Util::Param &, double *, ParameterType::ExprAccess) |
double | setDependentParameter (Util::Param &, std::vector< double > *, int, ParameterType::ExprAccess) |
void | setDependentParameter (Util::Param &par, Depend &dependentParam, ParameterType::ExprAccess depend) |
void | setDefaultParams () |
void | setParams (const std::vector< Param > ¶ms) |
bool | given (const std::string ¶meter_name) const |
void | setDefaultParamName (const std::string &default_param_name) |
const std::vector< Depend > & | getDependentParams () |
void | addDependentParameter (const Depend ¶m) |
const DeviceOptions & | getDeviceOptions () const |
const SolverState & | getSolverState () const |
const NetlistLocation & | netlistLocation () const |
const ParameterMap & | getParameterMap () const |
![]() | |
ParameterBase () | |
virtual | ~ParameterBase () |
double | getOriginalValue (int serial_number) |
void | setOriginalValue (int serial_number, double value) |
bool | wasValueGiven (int serial_number) const |
void | setValueGiven (int serial_number, bool value) |
Private Types | |
typedef std::vector< Instance * > | InstanceVector |
Private Member Functions | |
Model () | |
Model (const Model &) | |
Model & | operator= (const Model &) |
Private Attributes | |
std::vector< Instance * > | instanceContainer |
double | capacitanceMultiplier |
double | cj |
double | cjsw |
double | defWidth |
double | narrow |
double | tempCoeff1 |
double | tempCoeff2 |
double | baseCap |
double | tnom |
bool | tnomGiven |
Friends | |
class | ParametricData< Model > |
class | Instance |
class | Traits |
class | Master |
class | capSensitivity |
Additional Inherited Members | |
![]() | |
template<class T > | |
static void | initThermalModel (ParametricData< T > ¶metric_data) |
Add the parameter "TEMPMODEL" to the parametric_data. More... | |
template<class T > | |
static void | initDoseModel (ParametricData< T > ¶metric_data) |
Add the parameter "DOSEMODEL" to the parametric_data. More... | |
![]() | |
std::vector< int > | expVarGIDs |
std::vector< int > | expVarLIDs |
std::vector< std::string > | expVarNames |
std::vector< double > | expVarVals |
std::vector< double > | eVarVals |
Definition at line 272 of file N_DEV_Capacitor.h.
|
private |
Definition at line 274 of file N_DEV_Capacitor.h.
Xyce::Device::Capacitor::Model::Model | ( | const Configuration & | configuration, |
const ModelBlock & | model_block, | ||
const FactoryBlock & | factory_block | ||
) |
Construct a capacitor model from a "model block" that was created by the netlist parser.
configuration | |
model_block | |
factory_block |
Definition at line 1673 of file N_DEV_Capacitor.C.
Xyce::Device::Capacitor::Model::~Model | ( | ) |
Definition at line 1717 of file N_DEV_Capacitor.C.
|
private |
|
private |
|
inline |
Definition at line 302 of file N_DEV_Capacitor.h.
|
virtual |
Apply a device instance "op" to all instances associated with this model.
[in] | op | Operator to apply to all instances. |
Implements Xyce::Device::DeviceModel.
Definition at line 1780 of file N_DEV_Capacitor.C.
|
virtual |
Implements Xyce::Device::DeviceModel.
Definition at line 1739 of file N_DEV_Capacitor.C.
|
virtual |
Process the instance parameters of instance owned by this model.
This method simply loops over all instances associated with this model and calls their processParams method.
Implements Xyce::Device::DeviceModel.
Definition at line 1640 of file N_DEV_Capacitor.C.
|
virtual |
Process model parameters.
Implements Xyce::Device::DeviceModel.
Definition at line 1608 of file N_DEV_Capacitor.C.
|
friend |
Definition at line 280 of file N_DEV_Capacitor.h.
|
friend |
Definition at line 277 of file N_DEV_Capacitor.h.
|
friend |
Definition at line 279 of file N_DEV_Capacitor.h.
|
friend |
Definition at line 276 of file N_DEV_Capacitor.h.
|
friend |
Definition at line 278 of file N_DEV_Capacitor.h.
|
private |
Definition at line 321 of file N_DEV_Capacitor.h.
|
private |
Definition at line 314 of file N_DEV_Capacitor.h.
|
private |
Definition at line 315 of file N_DEV_Capacitor.h.
|
private |
Definition at line 316 of file N_DEV_Capacitor.h.
|
private |
Definition at line 317 of file N_DEV_Capacitor.h.
|
private |
Definition at line 308 of file N_DEV_Capacitor.h.
|
private |
Definition at line 318 of file N_DEV_Capacitor.h.
|
private |
Definition at line 319 of file N_DEV_Capacitor.h.
|
private |
Definition at line 320 of file N_DEV_Capacitor.h.
|
private |
Definition at line 322 of file N_DEV_Capacitor.h.
|
private |
Definition at line 324 of file N_DEV_Capacitor.h.