50std::vector<std::pair<int, double>>
53 std::vector<std::pair<int, double>>
result;
56 for(
const std::pair<int, double>& bit : bits )
58 if( prevbit != bit.first )
104 status &=
m_file.Init( parser );
118 pin.m_parent = &kComponent;
184 if( !std::isnan( aPin.
m_Rpin ) )
186 m_Rpin.value[IBIS_CORNER::TYP] = aPin.m_Rpin;
187 m_Rpin.value[IBIS_CORNER::MIN] = aPin.m_Rpin;
188 m_Rpin.value[IBIS_CORNER::MAX] = aPin.m_Rpin;
191 if( !std::isnan( aPin.
m_Lpin ) )
193 m_Lpin.value[IBIS_CORNER::TYP] = aPin.m_Lpin;
194 m_Lpin.value[IBIS_CORNER::MIN] = aPin.m_Lpin;
195 m_Lpin.value[IBIS_CORNER::MAX] = aPin.m_Lpin;
198 if( !std::isnan( aPin.
m_Cpin ) )
200 m_Cpin.value[IBIS_CORNER::TYP] = aPin.m_Cpin;
201 m_Cpin.value[IBIS_CORNER::MIN] = aPin.m_Cpin;
202 m_Cpin.value[IBIS_CORNER::MAX] = aPin.m_Cpin;
205 bool modelSelected =
false;
206 std::vector<std::string> listOfModels;
210 if( !strcmp( modelSelector.m_name.c_str(), aPin.m_modelName.c_str() ) )
212 for( const IbisModelSelectorEntry& model : modelSelector.m_models )
213 listOfModels.push_back( model.m_modelName );
215 modelSelected = true;
221 listOfModels.push_back( aPin.m_modelName );
223 for(
const std::string& modelName : listOfModels )
225 for( KIBIS_MODEL& model : aModels )
227 if( !strcmp( model.m_name.c_str(), modelName.c_str() ) )
228 m_models.push_back( &model );
380 KIBIS_PIN kPin( aTopLevel, iPin, aSource.m_package, aParser, nullptr,
381 m_topLevel->m_models );
382 status &= kPin.m_valid;
383 m_pins.push_back( kPin );
394 if(
pin.m_pinNumber == aPinNumber )
403 std::vector<std::pair<IbisWaveform*, IbisWaveform*>> pairs;
419 pairs.emplace_back( wf1, wf2 );
432 std::string GC_GND =
"GC_GND";
433 std::string PC_PWR =
"PC_PWR";
434 std::string PU_PWR =
"PU_PWR";
435 std::string PD_GND =
"PD_GND";
436 std::string DIE =
"DIE";
437 std::string DIEBUFF =
"DIEBUFF";
442 GC_GND += std::to_string( aIndex );
443 PC_PWR += std::to_string( aIndex );
444 PU_PWR += std::to_string( aIndex );
445 PD_GND += std::to_string( aIndex );
446 DIE += std::to_string( aIndex );
447 DIEBUFF += std::to_string( aIndex );
450 std::string GC =
"GC";
451 std::string PC =
"PC";
452 std::string PU =
"PU";
453 std::string PD =
"PD";
455 GC += std::to_string( aIndex );
456 PC += std::to_string( aIndex );
457 PU += std::to_string( aIndex );
458 PD += std::to_string( aIndex );
461 result +=
"VPWR POWER GND ";
464 result +=
"CCPOMP " + DIE +
" GND ";
470 result +=
m_GNDClamp.Spice( aIndex * 4 + 1, DIE, GC_GND,
false, GC, supply );
471 result +=
"Vmeas" + GC +
" GND " + GC_GND +
" 0\n";
477 result +=
"Vmeas" + PC +
" POWER " + PC_PWR +
" 0\n";
482 result +=
m_pulldown.Spice( aIndex * 4 + 3, DIEBUFF, PD_GND,
false, PD, supply );
483 result +=
"VmeasPD GND " + PD_GND +
" 0\n";
484 result +=
"BKD GND " + DIE +
" i=( i(VmeasPD) * v(KD) )\n";
489 result +=
m_pullup.Spice( aIndex * 4 + 4, PU_PWR, DIEBUFF,
true, PU, supply );
490 result +=
"VmeasPU POWER " + PU_PWR +
" 0\n";
491 result +=
"BKU POWER " + DIE +
" i=( -i(VmeasPU) * v(KU) )\n";
495 result +=
"BDIEBUFF " + DIEBUFF +
" GND v=v(" + DIE +
")\n";
507 GC_GND =
"GC_GND" + std::to_string( aIndex );
508 PC_PWR =
"PC_PWR" + std::to_string( aIndex );
510 GC =
"GC" + std::to_string( aIndex );
511 PC =
"PC" + std::to_string( aIndex );
513 if( submodel.HasGNDClamp() )
515 result += submodel.m_GNDClamp.Spice( aIndex * 4 + 1, DIE, GC_GND,
false, GC, supply );
516 result +=
"Vmeas" + GC +
" GND " + GC_GND +
" 0\n";
519 if( submodel.HasPOWERClamp() )
521 result += submodel.m_POWERClamp.Spice( aIndex * 4 + 2, PC_PWR, DIE,
true, PC, supply );
522 result +=
"Vmeas" + PC +
" POWER " + PC_PWR +
" 0\n";
551 for(
int i = 0; i < nbPoints; i++ )
556 outEntry.
t = inEntry.
t;
574 return m_pullup.m_entries.size() > 0;
591 const std::vector<std::pair<int, double>>& aBits,
592 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
597 std::vector<int> stimuliIndex;
609 double delta = deltaR + deltaF;
615 for(
const std::pair<int, double>& bit : aBits )
618 double timing = bit.second;
621 if ( bit.first != prevBit )
628 stimuliIndex.push_back( i );
631 simul += std::to_string( i );
633 simul += std::to_string( i );
636 simul +=
" pwl ( \n+";
643 double deltaT = entry1.
t - entry0.
t;
672 for(
int ii: stimuliIndex )
674 simul +=
" v( stimuli";
675 simul += std::to_string( ii );
681 if( ( aBits.size() > 0 ) && ( aBits[0].first == 0 ) )
682 simul +=
doubleToString( aPair.second->m_table.m_entries.at( 0 ).V.value[supply] );
684 simul +=
doubleToString( aPair.first->m_table.m_entries.at( 0 ).V.value[supply] );
696 std::string GC_GND =
"GC_GND";
697 std::string PC_PWR =
"PC_PWR";
698 std::string PU_PWR =
"PU_PWR";
699 std::string PD_GND =
"PD_GND";
700 std::string DIE =
"DIE";
702 GC_GND += std::to_string( aIndex );
703 PC_PWR += std::to_string( aIndex );
704 PU_PWR += std::to_string( aIndex );
705 PD_GND += std::to_string( aIndex );
706 DIE += std::to_string( aIndex );
709 std::string GC =
"GC";
710 std::string PC =
"PC";
711 std::string PU =
"PU";
712 std::string PD =
"PD";
714 GC += std::to_string( aIndex );
715 PC += std::to_string( aIndex );
716 PU += std::to_string( aIndex );
717 PD += std::to_string( aIndex );
720 simul += aModel.
m_GNDClamp.
Spice( aIndex * 4 + 1, DIE, GC_GND,
false, GC, supply );
723 simul += aModel.
m_POWERClamp.
Spice( aIndex * 4 + 2, PC_PWR, DIE,
true, PC, supply );
726 simul += aModel.
m_pulldown.
Spice( aIndex * 4 + 3, DIE, PD_GND,
false, PD, supply );
729 simul += aModel.
m_pullup.
Spice( aIndex * 4 + 4, PU_PWR, DIE,
true, PU, supply );
737 const std::string outputFileName =
m_topLevel->m_cacheDir +
"temp_output.spice";
739 if( std::remove( outputFileName.c_str() ) )
745 throw std::runtime_error(
"Could not create simulator instance" );
748 ng->LoadNetlist( aSimul );
750 std::ifstream KuKdfile;
751 KuKdfile.open( outputFileName );
753 std::vector<double>
ku, kd, t;
758 bool valuesTagFound =
false;
760 while( std::getline( KuKdfile, line ) )
762 if( line.find(
"Values:" ) != std::string::npos )
764 valuesTagFound =
true;
769 if( !valuesTagFound )
775 double t_v, ku_v, kd_v;
781 std::getline( KuKdfile, line );
789 line = line.substr( line.find_first_of(
"\t" ) + 1 );
790 t_v = std::stod( line );
792 case 1: ku_v = std::stod( line );
break;
794 kd_v = std::stod( line );
795 ku.push_back( ku_v );
796 kd.push_back( kd_v );
805 catch(
const std::exception& )
810 std::getline( KuKdfile, line );
817 if( std::remove( outputFileName.c_str() ) )
823 m_Kd = std::move( kd );
824 m_t = std::move( t );
829 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
836 std::string simul =
"";
838 simul +=
"*THIS IS NOT A VALID SPICE MODEL.\n";
839 simul +=
"*This part is intended to be executed by Kibis internally.\n";
840 simul +=
"*You should not be able to read this.\n\n";
842 simul +=
".SUBCKT DRIVER";
843 simul += std::to_string( aIndex );
844 simul +=
" POWER GND PIN \n";
846 simul +=
"Vdummy 2 PIN 0\n";
848 if( ( aPair.first->m_R_dut != 0 ) || ( aPair.first->m_L_dut != 0 )
849 || ( aPair.first->m_C_dut != 0 ) )
851 Report(
_(
"Kibis does not support DUT values yet. "
852 "https://ibis.org/summits/nov16a/chen.pdf" ),
857 simul +=
"CCPOMP 2 GND ";
869 wave->
Check( risingWF, fallingWF );
878 simul +=
"Vsig DIE0 GND ";
886 simul +=
"Vsig DIE0 GND ";
897 simul +=
addDie( aModel, aParam, 0 );
899 simul +=
"\n.ENDS DRIVER\n\n";
905 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
911 std::string simul =
"";
919 std::vector<double>
ku, kd, t;
924 m_Kd = std::move( kd );
925 m_t = std::move( t );
929 simul +=
KuKdDriver( aModel, aPair, aParam, 0 );
930 simul +=
"\n x1 3 0 1 DRIVER0 \n";
936 simul +=
"Lfixture 1 4 ";
939 simul +=
"Rfixture 4 5 ";
942 simul +=
"Cfixture 4 0 ";
945 simul +=
"Vfixture 5 0 ";
948 simul +=
"VmeasIout x1.DIE0 x1.2 0\n";
949 simul +=
"VmeasPD 0 x1.PD_GND0 0\n";
950 simul +=
"VmeasPU x1.PU_PWR0 3 0\n";
951 simul +=
"VmeasPC x1.PC_PWR0 3 0\n";
952 simul +=
"VmeasGC 0 x1.GC_GND0 0\n";
956 Report(
_(
"Model has only one waveform pair, reduced accuracy" ),
958 simul +=
"Bku KU 0 v=( (i(VmeasIout)-i(VmeasPC)-i(VmeasGC)-i(VmeasPD) "
959 ")/(i(VmeasPU)-i(VmeasPD)))\n";
960 simul +=
"Bkd KD 0 v=(1-v(KU))\n";
965 simul +=
"Bku KD 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPD)))\n";
966 simul +=
"Bkd KU 0 v=0\n";
971 simul +=
"Bku KU 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPU)))\n";
972 simul +=
"Bkd KD 0 v=0\n";
985 simul +=
".tran 0.1n ";
994 simul +=
".tran 0.5 1 \n";
998 simul +=
".control run \n";
999 simul +=
"set filetype=ascii\n";
1004 std::string outputFileName =
m_topLevel->m_cacheDir +
"temp_output.spice";
1005 simul +=
"write '" + outputFileName +
"' v(KU) v(KD)\n";
1007 simul +=
".endc \n";
1017 std::vector<double>
ku, kd, t;
1033 for(
const std::pair<int, double>& bit : bits )
1035 ku.push_back( bit.first ? 0 : 1 );
1036 kd.push_back( bit.first ? 1 : 0 );
1037 t.push_back( bit.second );
1038 ku.push_back( bit.first ? 1 : 0 );
1039 kd.push_back( bit.first ? 0 : 1 );
1040 t.push_back( bit.second
1051 kd.push_back( wave->
inverted ? 1 : 0 );
1058 kd.push_back( wave->
inverted ? 0 : 1 );
1071 m_Kd = std::move( kd );
1072 m_t = std::move( t );
1077 const std::pair<IbisWaveform*, IbisWaveform*>& aPair1,
1078 const std::pair<IbisWaveform*, IbisWaveform*>& aPair2,
1081 std::string simul =
"";
1091 std::vector<double>
ku, kd, t;
1096 m_Kd = std::move( kd );
1097 m_t = std::move( t );
1101 simul +=
KuKdDriver( aModel, aPair1, aParam, 0 );
1102 simul +=
KuKdDriver( aModel, aPair2, aParam, 1 );
1103 simul +=
"\n x1 3 0 1 DRIVER0 \n";
1105 simul +=
"VCC 3 0 ";
1109 simul +=
"Lfixture0 1 4 ";
1112 simul +=
"Rfixture0 4 5 ";
1115 simul +=
"Cfixture0 4 0 ";
1118 simul +=
"Vfixture0 5 0 ";
1121 simul +=
"VmeasIout0 x1.2 x1.DIE0 0\n";
1122 simul +=
"VmeasPD0 0 x1.PD_GND0 0\n";
1123 simul +=
"VmeasPU0 x1.PU_PWR0 3 0\n";
1124 simul +=
"VmeasPC0 x1.PC_PWR0 3 0\n";
1125 simul +=
"VmeasGC0 0 x1.GC_GND0 0\n";
1128 simul +=
"\n x2 3 0 7 DRIVER1 \n";
1130 simul +=
"Lfixture1 7 8 ";
1133 simul +=
"Rfixture1 8 9 ";
1136 simul +=
"Cfixture1 8 0 ";
1139 simul +=
"Vfixture1 9 0 ";
1142 simul +=
"VmeasIout1 x2.2 x2.DIE0 0\n";
1143 simul +=
"VmeasPD1 0 x2.PD_GND0 0\n";
1144 simul +=
"VmeasPU1 x2.PU_PWR0 3 0\n";
1145 simul +=
"VmeasPC1 x2.PC_PWR0 3 0\n";
1146 simul +=
"VmeasGC1 0 x2.GC_GND0 0\n";
1151 "Bku KU 0 v=( ( i(VmeasPD1) * ( i(VmeasIout0) + i(VmeasPC0) + i(VmeasGC0) ) - "
1152 "i(VmeasPD0) * ( i(VmeasIout1) + i(VmeasPC1) + i(VmeasGC1) ) )/ ( i(VmeasPU1) "
1154 "i(VmeasPD0) - i(VmeasPU0) * i(VmeasPD1) ) )\n";
1156 "Bkd KD 0 v=( ( i(VmeasPU1) * ( i(VmeasIout0) + i(VmeasPC0) + i(VmeasGC0) ) - "
1157 "i(VmeasPU0) * ( i(VmeasIout1) + i(VmeasPC1) + i(VmeasGC1) ) )/ ( i(VmeasPD1) "
1159 "i(VmeasPU0) - i(VmeasPD0) * i(VmeasPU1) ) )\n";
1165 Report(
_(
"There are two waveform pairs, but only one transistor. More equations than "
1168 simul +=
"Bku KD 0 v=( ( i(VmeasIout0)+i(VmeasPC0)+i(VmeasGC0) )/(i(VmeasPD0)))\n";
1169 simul +=
"Bkd KU 0 v=0\n";
1174 Report(
_(
"There are two waveform pairs, but only one transistor. More equations than "
1177 simul +=
"Bku KU 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPU)))\n";
1178 simul +=
"Bkd KD 0 v=0\n";
1191 simul +=
".tran 0.1n ";
1200 simul +=
".tran 0.5 1 \n";
1204 simul +=
".control run \n";
1205 simul +=
"set filetype=ascii\n";
1207 simul +=
"plot v(KU) v(KD)\n";
1209 std::string outputFileName =
m_topLevel->m_cacheDir +
"temp_output.spice";
1210 simul +=
"write '" + outputFileName +
"' v(KU) v(KD)\n";
1212 simul +=
".endc \n";
1243 result =
"\n*Driver model generated by Kicad using Ibis data. ";
1245 result +=
"\n*Pin number: ";
1247 result +=
"\n*Signal name: ";
1259 result +=
"LPIN DIE0 1 ";
1262 result +=
"CPIN PIN GND ";
1266 std::vector<std::pair<IbisWaveform*, IbisWaveform*>> wfPairs = aModel.
waveformPairs();
1273 Report(
_(
"Model has no waveform pair, using [Ramp] instead, poor accuracy" ),
1287 Report(
_(
"Model has more than 2 waveform pairs, using the first two." ),
1294 result +=
"Vku KU GND pwl ( ";
1296 for(
size_t i = 0; i <
m_t.size(); i++ )
1307 result +=
"Vkd KD GND pwl ( ";
1309 for(
size_t i = 0; i <
m_t.size(); i++ )
1321 result +=
"\n.ENDS DRIVER\n\n";
1352 result =
"*Device model generated by Kicad using Ibis data.";
1361 result +=
"LPIN DIE0 1 ";
1364 result +=
"CPIN PIN GND ";
1370 result +=
"\n.ENDS DEVICE\n\n";
1372 aDest = std::move(
result );
1394 result =
"\n*Differential driver model generated by Kicad using Ibis data. ";
1398 result +=
" GND PIN_P PIN_N\n";
1408 result +=
"x1 GND PIN_P " + aName +
"_P \n";
1409 result +=
"x2 GND PIN_N " + aName +
"_N \n";
1412 result +=
"\n.ENDS " + aName +
"\n\n";
1427 result =
"\n*Differential device model generated by Kicad using Ibis data. ";
1431 result +=
" GND PIN_P PIN_N\n";
1438 result +=
"x1 GND PIN_P " + aName +
"_P \n";
1439 result +=
"x2 GND PIN_N " + aName +
"_N \n";
1442 result +=
"\n.ENDS " + aName +
"\n\n";
1455 if(
model.m_name == aName )
1467 if( cmp.m_name == aName )
1477 if( aString ==
"MIN" )
1479 else if( aString ==
"MAX" )
1488 std::vector<std::pair<int, double>> bits;
1489 std::pair<int, double> bit;
1498 std::vector<std::pair<int, double>> bits;
1499 std::pair<int, double> bit;
1507 std::vector<std::pair<int, double>> bits;
1513 std::vector<std::pair<int, double>> bits;
1515 for(
int i = 0; i <
m_cycles; i++ )
1517 std::pair<int, double> bit;
1520 bits.push_back( bit );
1524 bits.push_back( bit );
1533 std::vector<std::pair<int, double>> bitSequence;
1534 uint8_t polynomial = 0b1100000;
1538 uint8_t seed = 0x12;
1539 uint8_t lfsr = seed;
1553 uint8_t lsb = lfsr & 0x01;
1554 bitSequence.emplace_back( (
static_cast<uint8_t
>(
inverted ) ^ lsb ? 1 : 0 ), t );
1562 }
while ( ++bits <
m_bits );
1608 status &= aRisingWf && aFallingWf;
1706 if(
m_bitrate && aRisingWf && aFallingWf
void Report(const std::string &aMsg, SEVERITY aSeverity=RPT_SEVERITY_INFO) const
Print a message.
IBIS_BASE(REPORTER *aReporter)
static std::string doubleToString(double aNumber)
Convert a double to string using scientific notation.
std::string Spice(int aN, const std::string &aPort1, const std::string &aPort2, bool aNegateI, const std::string &aModelName, IBIS_CORNER aCorner) const
Interpolate the IV table.
std::string m_manufacturer
std::vector< IbisComponentPin > m_pins
std::vector< IbisDiffPinEntry > m_entries
std::vector< IbisComponent > m_components
std::map< std::string, IbisSubmodel > m_submodels
std::vector< IbisModel > m_models
std::vector< IbisModelSelector > m_modelSelectors
std::string m_modelDescription
std::vector< IbisModelSelectorEntry > m_models
TypMinMaxValue m_C_comp_pullup
TypMinMaxValue m_C_comp_power_clamp
TypMinMaxValue m_pullupReference
TypMinMaxValue m_C_comp_pulldown
TypMinMaxValue m_C_comp_gnd_clamp
std::vector< IbisSubmodelMode > m_submodels
std::vector< IbisWaveform * > m_risingWaveforms
TypMinMaxValue m_POWERClampReference
IBIS_MODEL_POLARITY m_polarity
IBIS_MODEL_ENABLE m_enable
TypMinMaxValue m_temperatureRange
std::vector< IbisWaveform * > m_fallingWaveforms
TypMinMaxValue m_pulldownReference
TypMinMaxValue m_GNDClampReference
TypMinMaxValue m_voltageRange
bool ParseFile(const std::string &aFileName)
Parse a file.
IBIS_SUBMODEL_MODE m_mode
TypMinMaxValue m_VtriggerR
IBIS_SUBMODEL_TYPE m_type
TypMinMaxValue m_VtriggerF
KIBIS_BASE(KIBIS *aTopLevel)
KIBIS_COMPONENT(KIBIS &aToplevel, const IbisComponent &aSource, IbisParser &aParser)
std::vector< KIBIS_PIN > m_pins
std::string m_manufacturer
Name of the manufacturer.
std::string m_name
Name of the component.
KIBIS_PIN * GetPin(const std::string &aPinNumber)
Get a pin by its number ( 1, 2, A1, A2, ... )
KIBIS_FILE(KIBIS &aTopLevel)
bool Init(const IbisParser &aParser)
std::vector< IbisWaveform * > m_fallingWaveforms
IbisWaveform TrimWaveform(const IbisWaveform &aIn) const
Copy a waveform, and substract the first value to all samples.
IBIS_MODEL_ENABLE m_enable
bool HasPOWERClamp() const
Return true if the model has a clamp diode to the power net.
std::vector< IbisWaveform * > m_risingWaveforms
bool HasPullup() const
Return true if the model has a pullup transistor.
bool HasGNDClamp() const
Return true if the model has a clamp diode to the gnd net.
std::string SpiceDie(const KIBIS_PARAMETER &aParam, int aIndex, bool aDriver) const
Generate the spice directive to simulate the die.
TypMinMaxValue m_pulldownReference
TypMinMaxValue m_GNDClampReference
bool HasPulldown() const
Return true if the model has a pulldown transistor.
std::vector< KIBIS_SUBMODEL > m_submodels
IBIS_MODEL_POLARITY m_polarity
std::string generateSquareWave(const std::string &aNode1, const std::string &aNode2, const std::vector< std::pair< int, double > > &aBits, const std::pair< IbisWaveform *, IbisWaveform * > &aPair, const KIBIS_PARAMETER &aParam)
Generate a square waveform.
TypMinMaxValue m_temperatureRange
TypMinMaxValue m_voltageRange
std::string m_description
KIBIS_MODEL(KIBIS &aTopLevel, const IbisModel &aSource, IbisParser &aParser)
TypMinMaxValue m_pullupReference
std::vector< std::pair< IbisWaveform *, IbisWaveform * > > waveformPairs()
Create waveform pairs.
TypMinMaxValue m_POWERClampReference
KIBIS_ACCURACY m_accuracy
void SetCornerFromString(IBIS_CORNER &aCorner, const std::string &aString)
KIBIS_WAVEFORM * m_waveform
TypMinMaxValue m_Rpin
Resistance from die to pin.
bool writeSpiceDiffDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
TypMinMaxValue m_Lpin
Inductance from die to pin.
void getKuKdFromFile(const std::string &aSimul)
Update m_Ku, m_Kd using with two waveform inputs.
KIBIS_COMPONENT * m_parent
std::vector< double > m_Ku
std::string m_pinNumber
Pin Number Examples : 1, 2, 3 ( or for BGA ), A1, A2, A3, etc...
std::string addDie(KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam, int aIndex)
Generate the spice directive to simulate the die for Ku/Kd estimation.
bool writeSpiceDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
std::vector< double > m_t
TypMinMaxValue m_Cpin
Capacitance from pin to GND.
std::string m_signalName
Name of the pin Examples : "VCC", "GPIOA", "CLK", etc...
void getKuKdTwoWaveforms(KIBIS_MODEL &aModel, const std::pair< IbisWaveform *, IbisWaveform * > &aPair1, const std::pair< IbisWaveform *, IbisWaveform * > &aPair2, const KIBIS_PARAMETER &aParam)
Update m_Ku, m_Kd using with two waveform inputs.
void getKuKdOneWaveform(KIBIS_MODEL &aModel, const std::pair< IbisWaveform *, IbisWaveform * > &aPair, const KIBIS_PARAMETER &aParam)
Update m_Ku, m_Kd using with a single waveform input.
bool writeSpiceDiffDevice(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
std::string KuKdDriver(KIBIS_MODEL &aModel, const std::pair< IbisWaveform *, IbisWaveform * > &aPair, const KIBIS_PARAMETER &aParam, int aIndex)
Update m_Ku, m_Kd using with two waveform inputs.
KIBIS_PIN(KIBIS &aTopLevel, const IbisComponentPin &aPin, const IbisComponentPackage &aPackage, IbisParser &aParser, KIBIS_COMPONENT *aParent, std::vector< KIBIS_MODEL > &aModels)
std::vector< double > m_Kd
bool writeSpiceDriver(std::string &aDest, const std::string &aName, KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
KIBIS_PIN * m_complementaryPin
void getKuKdNoWaveform(KIBIS_MODEL &aModel, const KIBIS_PARAMETER &aParam)
Update m_Ku, m_Kd using no falling / rising waveform inputs ( low accuracy )
KIBIS_SUBMODEL(KIBIS &aTopLevel, const IbisSubmodel &aSource, IBIS_SUBMODEL_MODE aMode)
bool HasPOWERClamp() const
Return true if the model has a clamp diode to the power net.
IBIS_SUBMODEL_MODE m_mode
bool HasGNDClamp() const
Return true if the model has a clamp diode to the gnd net.
IBIS_SUBMODEL_TYPE m_type
std::vector< KIBIS_MODEL > m_models
KIBIS()
Constructor for unitialized KIBIS members.
std::vector< KIBIS_COMPONENT > m_components
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 .
A pure virtual class used to derive REPORTER objects from.
static std::shared_ptr< SPICE_SIMULATOR > CreateInstance(const std::string &aName)
std::vector< VTtableEntry > m_entries
std::vector< std::pair< int, double > > SimplifyBitSequence(const std::vector< std::pair< int, double > > &bits)
IBIS_CORNER ReverseLogic(IBIS_CORNER aIn)
KIBIS_ACCURACY
Accuracy level.
wxString result
Test unit parsing edge cases and error handling.