28#include <wx/filename.h>
46 std::vector<std::string> currentNames;
49 currentNames.push_back( fmt::format(
"I({}:{})",
ItemName( aItem ),
pin.modelPinName ) );
56 const wxString& aCacheDir,
72 KIBIS kibis( std::string(
path.c_str() ) );
73 kibis.
m_cacheDir = std::string( aCacheDir.c_str() );
77 THROW_IO_ERROR( wxString::Format(
_(
"Invalid IBIS file '%s'" ), ibisLibFilename ) );
82 THROW_IO_ERROR( wxString::Format(
_(
"Could not find IBIS component '%s'" ), ibisCompName ) );
88 THROW_IO_ERROR( wxString::Format(
_(
"Invalid IBIS component '%s'" ), ibisCompName ) );
92 THROW_IO_ERROR( wxString::Format(
_(
"Could not find IBIS pin '%s' in component '%s'" ),
99 THROW_IO_ERROR( wxString::Format(
_(
"Invalid IBIS pin '%s' in component '%s'" ),
107 THROW_IO_ERROR( wxString::Format(
_(
"Could not find IBIS model '%s'" ), ibisModelName ) );
110 THROW_IO_ERROR( wxString::Format(
_(
"Invalid IBIS model '%s'" ), ibisModelName ) );
132 case SIM_MODEL::TYPE::KIBIS_DEVICE:
139 case SIM_MODEL::TYPE::KIBIS_DRIVER_DC:
141 std::string paramValue =
"";
144 paramValue = dc->value;
146 if( paramValue ==
"hi-Z" )
150 else if( paramValue ==
"low" )
154 else if( paramValue ==
"high" )
166 case SIM_MODEL::TYPE::KIBIS_DRIVER_RECT:
191 case SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS:
214 wxFAIL_MSG(
"Unknown IBIS model type" );
224 m_enableDiff( false ),
225 m_sourceModel( nullptr )
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 );
232 std::vector<PARAM::INFO>* paramInfos =
nullptr;
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;
266 AddPin( {
"IN/OUT",
"2" } );
279 if( param1.info.name == param2.
info.
name )
326 std::vector<PARAM::INFO> paramInfos;
329 paramInfo.
name =
"vcc";
336 paramInfo.
enumValues = {
"typ",
"min",
"max" };
337 paramInfos.push_back( paramInfo );
339 paramInfo.
name =
"rpin";
344 paramInfo.
description =
_(
"Parasitic pin resistance" );
346 paramInfo.
enumValues = {
"typ",
"min",
"max" };
347 paramInfos.push_back( paramInfo );
349 paramInfo.
name =
"lpin";
354 paramInfo.
description =
_(
"Parasitic pin inductance" );
356 paramInfo.
enumValues = {
"typ",
"min",
"max" };
357 paramInfos.push_back( paramInfo );
359 paramInfo.
name =
"cpin";
364 paramInfo.
description =
_(
"Parasitic pin capacitance" );
366 paramInfo.
enumValues = {
"typ",
"min",
"max" };
367 paramInfos.push_back( paramInfo );
375 case TYPE::KIBIS_DRIVER_DC:
377 paramInfos.push_back( param );
380 case TYPE::KIBIS_DRIVER_RECT:
382 paramInfos.push_back( param );
385 case TYPE::KIBIS_DRIVER_PRBS:
387 paramInfos.push_back( param );
400 std::vector<PARAM::INFO> paramInfos;
403 paramInfo.
name =
"dc";
409 paramInfo.
enumValues = {
"hi-Z",
"low",
"high" };
410 paramInfos.push_back( paramInfo );
418 std::vector<PARAM::INFO> paramInfos;
421 paramInfo.
name =
"ton";
423 paramInfo.
unit =
"s";
427 paramInfos.push_back( paramInfo );
429 paramInfo.
name =
"toff";
431 paramInfo.
unit =
"s";
435 paramInfos.push_back( paramInfo );
437 paramInfo.
name =
"td";
439 paramInfo.
unit =
"s";
443 paramInfos.push_back( paramInfo );
445 paramInfo.
name =
"n";
451 paramInfos.push_back( paramInfo );
459 std::vector<PARAM::INFO> paramInfos;
462 paramInfo.
name =
"f0";
464 paramInfo.
unit =
"Hz";
468 paramInfos.push_back( paramInfo );
470 paramInfo.
name =
"td";
472 paramInfo.
unit =
"s";
476 paramInfos.push_back( paramInfo );
478 paramInfo.
name =
"n";
484 paramInfos.push_back( paramInfo );
KIBIS_PIN * GetPin(const std::string &aPinNumber)
Get a pin by its number ( 1, 2, A1, A2, ... )
void SetCornerFromString(IBIS_CORNER &aCorner, const std::string &aString)
KIBIS_WAVEFORM * m_waveform
bool writeSpiceDiffDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
bool writeSpiceDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
std::vector< KIBIS_MODEL * > m_models
bool writeSpiceDiffDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
bool writeSpiceDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
KIBIS_MODEL * GetModel(const std::string &aName)
Return the model with name aName .
KIBIS_COMPONENT * GetComponent(const std::string &aName)
Return the component with name aName .
std::string m_cacheDir
Absolute path of the directory that will be used for caching.
A pure virtual class used to derive REPORTER objects from.
Holds all the data relating to one schematic.
PROJECT & Prj() const
Return a reference to the project this schematic is part of.
static constexpr auto MODEL_FIELD
static constexpr auto PIN_FIELD
static constexpr auto DIFF_FIELD
static constexpr auto LIBRARY_FIELD
static constexpr auto NAME_FIELD
wxString ResolveLibraryPath(const wxString &aLibraryPath, REPORTER &aReporter)
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)
void AddPin(const SIM_MODEL_PIN &aPin)
int GetParamCount() const
const PARAM * FindParam(const std::string &aParamName) const
std::vector< PARAM > m_params
static double ToDouble(const std::string &aString, double aDefault=NAN)
static int ToInt(const std::string &aString, int aDefault=-1)
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.
bool HasMessage() const override
Returns true if the reporter client is non-empty.
const wxString & GetMessages() const
#define THROW_IO_ERROR(msg)
wxString GetFieldValue(const std::vector< SCH_FIELD > *aFields, FIELD_T aFieldType)
std::string spiceModelName
std::vector< std::string > enumValues
std::vector< SCH_FIELD > fields
std::string baseModelName