KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sim_model_ibis.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * https://www.gnu.org/licenses/gpl-3.0.html
19 * or you may search the http://www.gnu.org website for the version 3 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <sim/kibis/kibis.h>
25#include <sim/sim_model_ibis.h>
27#include <fmt/core.h>
28#include <wx/filename.h>
29#include <kiway.h>
30#include <schematic.h>
31#include "sim_lib_mgr.h"
32
33std::string SPICE_GENERATOR_IBIS::ModelName( const SPICE_ITEM& aItem ) const
34{
35 return fmt::format( "{}.{}", aItem.refName, aItem.baseModelName );
36}
37
38
39std::string SPICE_GENERATOR_IBIS::ModelLine( const SPICE_ITEM& aItem ) const
40{
41 return "";
42}
43
44std::vector<std::string> SPICE_GENERATOR_IBIS::CurrentNames( const SPICE_ITEM& aItem ) const
45{
46 std::vector<std::string> currentNames;
47
48 for( const SIM_MODEL_PIN& pin : GetPins() )
49 currentNames.push_back( fmt::format( "I({}:{})", ItemName( aItem ), pin.modelPinName ) );
50
51 return currentNames;
52}
53
54
55std::string SPICE_GENERATOR_IBIS::IbisDevice( const SPICE_ITEM& aItem, SCHEMATIC* aSchematic,
56 const wxString& aCacheDir,
57 REPORTER& aReporter ) const
58{
59 std::string ibisLibFilename = GetFieldValue( &aItem.fields, SIM_LIBRARY::LIBRARY_FIELD );
60 std::string ibisCompName = GetFieldValue( &aItem.fields, SIM_LIBRARY::NAME_FIELD );
61 std::string ibisPinName = GetFieldValue( &aItem.fields, SIM_LIBRARY_IBIS::PIN_FIELD );
62 std::string ibisModelName = GetFieldValue( &aItem.fields, SIM_LIBRARY_IBIS::MODEL_FIELD );
63 bool diffMode = GetFieldValue( &aItem.fields, SIM_LIBRARY_IBIS::DIFF_FIELD ) == "1";
64
65 WX_STRING_REPORTER reporter;
66 SIM_LIB_MGR mgr( &aSchematic->Prj(), aSchematic );
67 wxString path = mgr.ResolveLibraryPath( ibisLibFilename, reporter );
68
69 if( reporter.HasMessage() )
70 THROW_IO_ERROR( reporter.GetMessages() );
71
72 KIBIS kibis( std::string( path.c_str() ) );
73 kibis.m_cacheDir = std::string( aCacheDir.c_str() );
74 kibis.m_Reporter = &aReporter;
75
76 if( !kibis.m_valid )
77 THROW_IO_ERROR( wxString::Format( _( "Invalid IBIS file '%s'" ), ibisLibFilename ) );
78
79 KIBIS_COMPONENT* kcomp = kibis.GetComponent( std::string( ibisCompName ) );
80
81 if( !kcomp )
82 THROW_IO_ERROR( wxString::Format( _( "Could not find IBIS component '%s'" ), ibisCompName ) );
83
84 KIBIS_PIN* kpin = kcomp->GetPin( ibisPinName );
85
86
87 if( !kcomp->m_valid )
88 THROW_IO_ERROR( wxString::Format( _( "Invalid IBIS component '%s'" ), ibisCompName ) );
89
90 if( !kpin )
91 {
92 THROW_IO_ERROR( wxString::Format( _( "Could not find IBIS pin '%s' in component '%s'" ),
93 ibisPinName,
94 ibisCompName ) );
95 }
96
97 if( !kpin->m_valid )
98 {
99 THROW_IO_ERROR( wxString::Format( _( "Invalid IBIS pin '%s' in component '%s'" ),
100 ibisPinName,
101 ibisCompName ) );
102 }
103
104 KIBIS_MODEL* kmodel = kibis.GetModel( ibisModelName );
105
106 if( !kmodel )
107 THROW_IO_ERROR( wxString::Format( _( "Could not find IBIS model '%s'" ), ibisModelName ) );
108
109 if( !kmodel->m_valid )
110 THROW_IO_ERROR( wxString::Format( _( "Invalid IBIS model '%s'" ), ibisModelName ) );
111
112 KIBIS_PARAMETER kparams;
113
114 if( const SIM_MODEL::PARAM* vcc = m_model.FindParam( "vcc" ) )
115 kparams.SetCornerFromString( kparams.m_supply, vcc->value );
116
117 if( const SIM_MODEL::PARAM* rpin = m_model.FindParam( "rpin" ) )
118 kparams.SetCornerFromString( kparams.m_Rpin, rpin->value );
119
120 if( const SIM_MODEL::PARAM* lpin = m_model.FindParam( "lpin" ) )
121 kparams.SetCornerFromString( kparams.m_Lpin, lpin->value );
122
123 if( const SIM_MODEL::PARAM* cpin = m_model.FindParam( "cpin" ) )
124 kparams.SetCornerFromString( kparams.m_Cpin, cpin->value );
125
126 //kparams.SetCornerFromString( kparams.m_Ccomp, FindParam( "ccomp" )->value );
127
128 std::string result;
129
130 switch( m_model.GetType() )
131 {
132 case SIM_MODEL::TYPE::KIBIS_DEVICE:
133 if( diffMode )
134 kpin->writeSpiceDiffDevice( result, aItem.modelName, *kmodel, kparams );
135 else
136 kpin->writeSpiceDevice( result, aItem.modelName, *kmodel, kparams );
137 break;
138
139 case SIM_MODEL::TYPE::KIBIS_DRIVER_DC:
140 {
141 std::string paramValue = "";
142
143 if( const SIM_MODEL::PARAM* dc = m_model.FindParam( "dc" ) )
144 paramValue = dc->value;
145
146 if( paramValue == "hi-Z" )
147 {
148 kparams.m_waveform = new KIBIS_WAVEFORM_HIGH_Z( kibis );
149 }
150 else if( paramValue == "low" )
151 {
152 kparams.m_waveform = new KIBIS_WAVEFORM_STUCK_LOW( kibis );
153 }
154 else if( paramValue == "high" )
155 {
156 kparams.m_waveform = new KIBIS_WAVEFORM_STUCK_HIGH( kibis );
157 }
158
159 if( diffMode )
160 kpin->writeSpiceDiffDriver( result, aItem.modelName, *kmodel, kparams );
161 else
162 kpin->writeSpiceDriver( result, aItem.modelName, *kmodel, kparams );
163 break;
164 }
165
166 case SIM_MODEL::TYPE::KIBIS_DRIVER_RECT:
167 {
169
170 if( const SIM_MODEL::PARAM* ton = m_model.FindParam( "ton" ) )
171 waveform->m_ton = SIM_VALUE::ToDouble( ton->value, 0 );
172
173 if( const SIM_MODEL::PARAM* toff = m_model.FindParam( "toff" ) )
174 waveform->m_toff = SIM_VALUE::ToDouble( toff->value, 0 );
175
176 if( const SIM_MODEL::PARAM* td = m_model.FindParam( "td" ) )
177 waveform->m_delay = SIM_VALUE::ToDouble( td->value, 0 );
178
179 if( const SIM_MODEL::PARAM* n = m_model.FindParam( "n" ) )
180 waveform->m_cycles = SIM_VALUE::ToInt( n->value, 1 );
181
182 kparams.m_waveform = waveform;
183
184 if( diffMode )
185 kpin->writeSpiceDiffDriver( result, aItem.modelName, *kmodel, kparams );
186 else
187 kpin->writeSpiceDriver( result, aItem.modelName, *kmodel, kparams );
188 break;
189 }
190
191 case SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS:
192 {
193 KIBIS_WAVEFORM_PRBS* waveform = new KIBIS_WAVEFORM_PRBS( kibis );
194
195 if( const SIM_MODEL::PARAM* f0 = m_model.FindParam( "f0" ) )
196 waveform->m_bitrate = SIM_VALUE::ToDouble( f0->value, 0 );
197
198 if( const SIM_MODEL::PARAM* td = m_model.FindParam( "td" ) )
199 waveform->m_delay = SIM_VALUE::ToDouble( td->value, 0 );
200
201 if( const SIM_MODEL::PARAM* n = m_model.FindParam( "n" ) )
202 waveform->SetBits( SIM_VALUE::ToInt( n->value, 0 ) );
203
204 kparams.m_waveform = waveform;
205
206 if( diffMode )
207 kpin->writeSpiceDiffDriver( result, aItem.modelName, *kmodel, kparams );
208 else
209 kpin->writeSpiceDriver( result, aItem.modelName, *kmodel, kparams );
210 break;
211 }
212
213 default:
214 wxFAIL_MSG( "Unknown IBIS model type" );
215 return "";
216 }
217
218 return result;
219}
220
221
223 SIM_MODEL( aType, std::make_unique<SPICE_GENERATOR_IBIS>( *this ) ),
224 m_enableDiff( false ),
225 m_sourceModel( nullptr )
226{
227 static std::vector<PARAM::INFO> device = makeParamInfos( TYPE::KIBIS_DEVICE );
228 static std::vector<PARAM::INFO> dcDriver = makeParamInfos( TYPE::KIBIS_DRIVER_DC );
229 static std::vector<PARAM::INFO> rectDriver = makeParamInfos( TYPE::KIBIS_DRIVER_RECT );
230 static std::vector<PARAM::INFO> prbsDriver = makeParamInfos( TYPE::KIBIS_DRIVER_PRBS );
231
232 std::vector<PARAM::INFO>* paramInfos = nullptr;
233
234 switch( aType )
235 {
236 case SIM_MODEL::TYPE::KIBIS_DEVICE: paramInfos = &device; break;
237 case SIM_MODEL::TYPE::KIBIS_DRIVER_DC: paramInfos = &dcDriver; break;
238 case SIM_MODEL::TYPE::KIBIS_DRIVER_RECT: paramInfos = &rectDriver; break;
239 case SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS: paramInfos = &prbsDriver; break;
240
241 default:
242 wxFAIL;
243 return;
244 }
245
246 for( const PARAM::INFO& paramInfo : *paramInfos )
247 AddParam( paramInfo );
248
249 SwitchSingleEndedDiff( false );
250}
251
252
254{
255 ClearPins();
256
257 if( aDiff )
258 {
259 AddPin( { "GND", "1" } );
260 AddPin( { "+", "2" } );
261 AddPin( { "-", "3" } );
262 }
263 else
264 {
265 AddPin( { "GND", "1" } );
266 AddPin( { "IN/OUT", "2" } );
267 }
268}
269
271 SIM_MODEL_IBIS( aType )
272{
273 for( PARAM& param1 : m_params )
274 {
275 for( int ii = 0; ii < aSource.GetParamCount(); ++ii )
276 {
277 const PARAM& param2 = aSource.GetParam( ii );
278
279 if( param1.info.name == param2.info.name )
280 param1.value = param2.value;
281 }
282 }
283
285
286 m_ibisPins = aSource.GetIbisPins();
287 m_ibisModels = aSource.GetIbisModels();
288
289 m_enableDiff = aSource.CanDifferential();
290}
291
292
293bool SIM_MODEL_IBIS::ChangePin( const SIM_LIBRARY_IBIS& aLib, const std::string& aPinNumber )
294{
295 KIBIS_COMPONENT* kcomp = aLib.m_kibis.GetComponent( std::string( GetComponentName() ) );
296
297 if( !kcomp )
298 return false;
299
300 KIBIS_PIN* kpin = kcomp->GetPin( aPinNumber );
301
302 if( !kpin )
303 return false;
304
305 m_ibisModels.clear();
306
307 for( KIBIS_MODEL* kmodel : kpin->m_models )
308 m_ibisModels.push_back( kmodel->m_name );
309
310 return true;
311}
312
313
315{
316 // Actual base models can only be of the same type, which is not the case here, as in addition
317 // to IBIS device model type we have multiple types of drivers available for the same sourced
318 // model. And we don't want to inherit the default values anyway. So we just store these models
319 // and use the only for Spice code generation.
320 m_sourceModel = dynamic_cast<const SIM_MODEL_IBIS*>( &aBaseModel );
321}
322
323
324std::vector<SIM_MODEL::PARAM::INFO> SIM_MODEL_IBIS::makeParamInfos( TYPE aType )
325{
326 std::vector<PARAM::INFO> paramInfos;
327 PARAM::INFO paramInfo;
328
329 paramInfo.name = "vcc";
330 paramInfo.type = SIM_VALUE::TYPE_STRING;
331 paramInfo.unit = "";
333 paramInfo.defaultValue = "typ";
334 paramInfo.description = _( "Power supply" );
335 paramInfo.spiceModelName = "";
336 paramInfo.enumValues = { "typ", "min", "max" };
337 paramInfos.push_back( paramInfo );
338
339 paramInfo.name = "rpin";
340 paramInfo.type = SIM_VALUE::TYPE_STRING;
341 paramInfo.unit = "";
343 paramInfo.defaultValue = "typ";
344 paramInfo.description = _( "Parasitic pin resistance" );
345 paramInfo.spiceModelName = "";
346 paramInfo.enumValues = { "typ", "min", "max" };
347 paramInfos.push_back( paramInfo );
348
349 paramInfo.name = "lpin";
350 paramInfo.type = SIM_VALUE::TYPE_STRING;
351 paramInfo.unit = "";
353 paramInfo.defaultValue = "typ";
354 paramInfo.description = _( "Parasitic pin inductance" );
355 paramInfo.spiceModelName = "";
356 paramInfo.enumValues = { "typ", "min", "max" };
357 paramInfos.push_back( paramInfo );
358
359 paramInfo.name = "cpin";
360 paramInfo.type = SIM_VALUE::TYPE_STRING;
361 paramInfo.unit = "";
363 paramInfo.defaultValue = "typ";
364 paramInfo.description = _( "Parasitic pin capacitance" );
365 paramInfo.spiceModelName = "";
366 paramInfo.enumValues = { "typ", "min", "max" };
367 paramInfos.push_back( paramInfo );
368
369 std::vector<PARAM::INFO> dc = makeDcWaveformParamInfos();
370 std::vector<PARAM::INFO> rect = makeRectWaveformParamInfos();
371 std::vector<PARAM::INFO> prbs = makePrbsWaveformParamInfos();
372
373 switch( aType )
374 {
375 case TYPE::KIBIS_DRIVER_DC:
376 for( const PARAM::INFO& param : makeDcWaveformParamInfos() )
377 paramInfos.push_back( param );
378 break;
379
380 case TYPE::KIBIS_DRIVER_RECT:
381 for( const PARAM::INFO& param : makeRectWaveformParamInfos() )
382 paramInfos.push_back( param );
383 break;
384
385 case TYPE::KIBIS_DRIVER_PRBS:
386 for( const PARAM::INFO& param : makePrbsWaveformParamInfos() )
387 paramInfos.push_back( param );
388 break;
389
390 default:
391 break;
392 }
393
394 return paramInfos;
395}
396
397
398std::vector<SIM_MODEL::PARAM::INFO> SIM_MODEL_IBIS::makeDcWaveformParamInfos()
399{
400 std::vector<PARAM::INFO> paramInfos;
401 PARAM::INFO paramInfo;
402
403 paramInfo.name = "dc";
404 paramInfo.type = SIM_VALUE::TYPE_STRING;
405 paramInfo.unit = "";
407 paramInfo.defaultValue = "hi-Z";
408 paramInfo.description = _( "DC Value" );
409 paramInfo.enumValues = { "hi-Z", "low", "high" };
410 paramInfos.push_back( paramInfo );
411
412 return paramInfos;
413}
414
415
416std::vector<SIM_MODEL::PARAM::INFO> SIM_MODEL_IBIS::makeRectWaveformParamInfos()
417{
418 std::vector<PARAM::INFO> paramInfos;
419 PARAM::INFO paramInfo;
420
421 paramInfo.name = "ton";
422 paramInfo.type = SIM_VALUE::TYPE_FLOAT;
423 paramInfo.unit = "s";
425 paramInfo.defaultValue = "";
426 paramInfo.description = _( "ON time" );
427 paramInfos.push_back( paramInfo );
428
429 paramInfo.name = "toff";
430 paramInfo.type = SIM_VALUE::TYPE_FLOAT;
431 paramInfo.unit = "s";
433 paramInfo.defaultValue = "";
434 paramInfo.description = _( "OFF time" );
435 paramInfos.push_back( paramInfo );
436
437 paramInfo.name = "td";
438 paramInfo.type = SIM_VALUE::TYPE_FLOAT;
439 paramInfo.unit = "s";
441 paramInfo.defaultValue = "0";
442 paramInfo.description = _( "Delay" );
443 paramInfos.push_back( paramInfo );
444
445 paramInfo.name = "n";
446 paramInfo.type = SIM_VALUE::TYPE_INT;
447 paramInfo.unit = "";
449 paramInfo.defaultValue = "1";
450 paramInfo.description = _( "Number of cycles" );
451 paramInfos.push_back( paramInfo );
452
453 return paramInfos;
454}
455
456
457std::vector<SIM_MODEL::PARAM::INFO> SIM_MODEL_IBIS::makePrbsWaveformParamInfos()
458{
459 std::vector<PARAM::INFO> paramInfos;
460 PARAM::INFO paramInfo;
461
462 paramInfo.name = "f0";
463 paramInfo.type = SIM_VALUE::TYPE_FLOAT;
464 paramInfo.unit = "Hz";
466 paramInfo.defaultValue = "";
467 paramInfo.description = _( "Bitrate" );
468 paramInfos.push_back( paramInfo );
469
470 paramInfo.name = "td";
471 paramInfo.type = SIM_VALUE::TYPE_FLOAT;
472 paramInfo.unit = "s";
474 paramInfo.defaultValue = "";
475 paramInfo.description = _( "Delay" );
476 paramInfos.push_back( paramInfo );
477
478 paramInfo.name = "n";
479 paramInfo.type = SIM_VALUE::TYPE_INT;
480 paramInfo.unit = "";
482 paramInfo.defaultValue = "";
483 paramInfo.description = _( "Number of bits" );
484 paramInfos.push_back( paramInfo );
485
486 return paramInfos;
487}
488
REPORTER * m_Reporter
Definition: ibis_parser.h:74
bool m_valid
Definition: kibis.h:57
KIBIS_PIN * GetPin(const std::string &aPinNumber)
Get a pin by its number ( 1, 2, A1, A2, ... )
Definition: kibis.cpp:330
std::string m_name
Definition: kibis.h:250
IBIS_CORNER m_supply
Definition: kibis.h:220
IBIS_CORNER m_Cpin
Definition: kibis.h:218
IBIS_CORNER m_Lpin
Definition: kibis.h:217
IBIS_CORNER m_Rpin
Definition: kibis.h:216
void SetCornerFromString(IBIS_CORNER &aCorner, const std::string &aString)
Definition: kibis.cpp:1377
KIBIS_WAVEFORM * m_waveform
Definition: kibis.h:221
bool writeSpiceDiffDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
Definition: kibis.cpp:1286
bool writeSpiceDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
Definition: kibis.cpp:1233
std::vector< KIBIS_MODEL * > m_models
Definition: kibis.h:365
bool writeSpiceDiffDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
Definition: kibis.cpp:1323
bool writeSpiceDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
Definition: kibis.cpp:1118
double m_delay
Definition: kibis.h:139
void SetBits(int aBits)
Definition: kibis.h:146
double m_bitrate
Definition: kibis.h:138
Definition: kibis.h:467
KIBIS_MODEL * GetModel(const std::string &aName)
Return the model with name aName .
Definition: kibis.cpp:1353
KIBIS_COMPONENT * GetComponent(const std::string &aName)
Return the component with name aName .
Definition: kibis.cpp:1365
std::string m_cacheDir
Absolute path of the directory that will be used for caching.
Definition: kibis.h:482
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:73
Holds all the data relating to one schematic.
Definition: schematic.h:69
PROJECT & Prj() const
Return a reference to the project this schematic is part of.
Definition: schematic.h:84
static constexpr auto MODEL_FIELD
static constexpr auto PIN_FIELD
static constexpr auto DIFF_FIELD
static constexpr auto LIBRARY_FIELD
Definition: sim_library.h:35
static constexpr auto NAME_FIELD
Definition: sim_library.h:36
wxString ResolveLibraryPath(const wxString &aLibraryPath, REPORTER &aReporter)
Definition: sim_lib_mgr.cpp:59
SIM_MODEL_IBIS(TYPE aType)
static std::vector< PARAM::INFO > makeDcWaveformParamInfos()
std::vector< std::pair< std::string, std::string > > m_ibisPins
std::vector< std::string > m_ibisModels
static std::vector< PARAM::INFO > makeRectWaveformParamInfos()
const PARAM & GetParam(unsigned aParamIndex) const override
static std::vector< PARAM::INFO > makePrbsWaveformParamInfos()
std::vector< std::pair< std::string, std::string > > GetIbisPins() const
void SwitchSingleEndedDiff(bool aDiff) override
const SIM_MODEL_IBIS * m_sourceModel
bool CanDifferential() const
std::vector< std::string > GetIbisModels() const
std::string m_componentName
void SetBaseModel(const SIM_MODEL &aBaseModel) override
bool ChangePin(const SIM_LIBRARY_IBIS &aLib, const std::string &aPinNumber)
update the list of available models based on the pin number.
static std::vector< PARAM::INFO > makeParamInfos(TYPE aType)
std::string GetComponentName() const
void AddParam(const PARAM::INFO &aInfo)
Definition: sim_model.cpp:666
void ClearPins()
Definition: sim_model.cpp:648
void AddPin(const SIM_MODEL_PIN &aPin)
Definition: sim_model.cpp:642
int GetParamCount() const
Definition: sim_model.h:474
const PARAM * FindParam(const std::string &aParamName) const
Definition: sim_model.cpp:753
std::vector< PARAM > m_params
Definition: sim_model.h:531
TYPE GetType() const
Definition: sim_model.h:457
@ TYPE_INT
Definition: sim_value.h:68
@ TYPE_FLOAT
Definition: sim_value.h:69
@ TYPE_STRING
Definition: sim_value.h:71
static double ToDouble(const std::string &aString, double aDefault=NAN)
Definition: sim_value.cpp:442
static int ToInt(const std::string &aString, int aDefault=-1)
Definition: sim_value.cpp:467
std::string IbisDevice(const SPICE_ITEM &aItem, SCHEMATIC *aSchematic, const wxString &aCacheDir, REPORTER &aReporter) const
std::vector< std::string > CurrentNames(const SPICE_ITEM &aItem) const override
std::string ModelLine(const SPICE_ITEM &aItem) const override
std::string ModelName(const SPICE_ITEM &aItem) const override
virtual std::string ItemName(const SPICE_ITEM &aItem) const
virtual std::vector< std::reference_wrapper< const SIM_MODEL_PIN > > GetPins() const
const SIM_MODEL & m_model
A wrapper for reporting to a wxString object.
Definition: reporter.h:190
bool HasMessage() const override
Returns true if the reporter client is non-empty.
Definition: reporter.cpp:96
const wxString & GetMessages() const
Definition: reporter.cpp:83
#define _(s)
#define THROW_IO_ERROR(msg)
Definition: ki_exception.h:39
STL namespace.
wxString GetFieldValue(const std::vector< SCH_FIELD > *aFields, FIELD_T aFieldType)
Definition: sch_field.h:406
SIM_MODEL::TYPE TYPE
Definition: sim_model.cpp:57
std::string spiceModelName
Definition: sim_model.h:386
std::vector< std::string > enumValues
Definition: sim_model.h:388
SIM_VALUE::TYPE type
Definition: sim_model.h:379
std::string defaultValue
Definition: sim_model.h:382
std::string description
Definition: sim_model.h:383
std::string value
Definition: sim_model.h:400
const INFO & info
Definition: sim_model.h:401
std::string refName
std::vector< SCH_FIELD > fields
std::string modelName
std::string baseModelName