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 )
59 result.push_back( bit );
76 m_topLevel( aTopLevel ),
118 pin.m_parent = &kComponent;
166 m_Rpin( aTopLevel.m_Reporter ),
167 m_Lpin( aTopLevel.m_Reporter ),
168 m_Cpin( aTopLevel.m_Reporter )
184 if( !std::isnan( aPin.
m_Rpin ) )
191 if( !std::isnan( aPin.
m_Lpin ) )
198 if( !std::isnan( aPin.
m_Cpin ) )
205 bool modelSelected =
false;
206 std::vector<std::string> listOfModels;
215 modelSelected =
true;
223 for(
const std::string& modelName : listOfModels )
227 if( !strcmp( model.m_name.c_str(), modelName.c_str() ) )
238 m_C_comp( aTopLevel.m_Reporter ),
239 m_voltageRange( aTopLevel.m_Reporter ),
240 m_temperatureRange( aTopLevel.m_Reporter ),
241 m_pullupReference( aTopLevel.m_Reporter ),
242 m_pulldownReference( aTopLevel.m_Reporter ),
243 m_GNDClampReference( aTopLevel.m_Reporter ),
244 m_POWERClampReference( aTopLevel.m_Reporter ),
245 m_Rgnd( aTopLevel.m_Reporter ),
246 m_Rpower( aTopLevel.m_Reporter ),
247 m_Rac( aTopLevel.m_Reporter ),
248 m_Cac( aTopLevel.m_Reporter ),
249 m_GNDClamp( aTopLevel.m_Reporter ),
250 m_POWERClamp( aTopLevel.m_Reporter ),
251 m_pullup( aTopLevel.m_Reporter ),
252 m_pulldown( aTopLevel.m_Reporter ),
253 m_ramp( aTopLevel.m_Reporter )
334 if(
pin.m_pinNumber == aPinNumber )
343 std::vector<std::pair<IbisWaveform*, IbisWaveform*>> pairs;
359 pairs.emplace_back( wf1, wf2 );
372 std::string GC_GND =
"GC_GND";
373 std::string PC_PWR =
"PC_PWR";
374 std::string PU_PWR =
"PU_PWR";
375 std::string PD_GND =
"PD_GND";
376 std::string DIE =
"DIE";
377 std::string DIEBUFF =
"DIEBUFF";
382 GC_GND += std::to_string( aIndex );
383 PC_PWR += std::to_string( aIndex );
384 PU_PWR += std::to_string( aIndex );
385 PD_GND += std::to_string( aIndex );
386 DIE += std::to_string( aIndex );
387 DIEBUFF += std::to_string( aIndex );
390 std::string GC =
"GC";
391 std::string PC =
"PC";
392 std::string PU =
"PU";
393 std::string PD =
"PD";
395 GC += std::to_string( aIndex );
396 PC += std::to_string( aIndex );
397 PU += std::to_string( aIndex );
398 PD += std::to_string( aIndex );
401 result +=
"VPWR POWER GND ";
404 result +=
"CCPOMP " + DIE +
" GND ";
411 result +=
"VmeasGC GND " + GC_GND +
" 0\n";
417 result +=
"VmeasPC POWER " + PC_PWR +
" 0\n";
422 result +=
m_pulldown.
Spice( aIndex * 4 + 3, DIEBUFF, PD_GND, PD, supply );
423 result +=
"VmeasPD GND " + PD_GND +
" 0\n";
424 result +=
"BKD GND " + DIE +
" i=( i(VmeasPD) * v(KD) )\n";
429 result +=
m_pullup.
Spice( aIndex * 4 + 4, PU_PWR, DIEBUFF, PU, supply );
430 result +=
"VmeasPU POWER " + PU_PWR +
" 0\n";
431 result +=
"BKU POWER " + DIE +
" i=( -i(VmeasPU) * v(KU) )\n";
435 result +=
"BDIEBUFF " + DIEBUFF +
" GND v=v(" + DIE +
")\n";
462 for(
int i = 0; i < nbPoints; i++ )
467 outEntry.
t = inEntry.
t;
468 outEntry.
V.
value[IBIS_CORNER::TYP] = inEntry.
V.
value[IBIS_CORNER::TYP] - DCtyp;
469 outEntry.
V.
value[IBIS_CORNER::MIN] = inEntry.
V.
value[IBIS_CORNER::MIN] - DCmin;
470 outEntry.
V.
value[IBIS_CORNER::MAX] = inEntry.
V.
value[IBIS_CORNER::MAX] - DCmax;
502 const std::vector<std::pair<int, double>>& aBits,
503 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
508 std::vector<int> stimuliIndex;
520 double delta = deltaR + deltaF;
526 for(
const std::pair<int, double>& bit : aBits )
529 double timing = bit.second;
532 if ( bit.first != prevBit )
539 stimuliIndex.push_back( i );
542 simul += std::to_string( i );
544 simul += std::to_string( i );
547 simul +=
" pwl ( \n+";
554 double deltaT = entry1.
t - entry0.
t;
583 for(
int ii: stimuliIndex )
585 simul +=
" v( stimuli";
586 simul += std::to_string( ii );
592 if( ( aBits.size() > 0 ) && ( aBits[0].first == 0 ) )
593 simul +=
doubleToString( aPair.second->m_table.m_entries.at( 0 ).V.value[supply] );
595 simul +=
doubleToString( aPair.first->m_table.m_entries.at( 0 ).V.value[supply] );
607 std::string GC_GND =
"GC_GND";
608 std::string PC_PWR =
"PC_PWR";
609 std::string PU_PWR =
"PU_PWR";
610 std::string PD_GND =
"PD_GND";
611 std::string DIE =
"DIE";
613 GC_GND += std::to_string( aIndex );
614 PC_PWR += std::to_string( aIndex );
615 PU_PWR += std::to_string( aIndex );
616 PD_GND += std::to_string( aIndex );
617 DIE += std::to_string( aIndex );
620 std::string GC =
"GC";
621 std::string PC =
"PC";
622 std::string PU =
"PU";
623 std::string PD =
"PD";
625 GC += std::to_string( aIndex );
626 PC += std::to_string( aIndex );
627 PU += std::to_string( aIndex );
628 PD += std::to_string( aIndex );
631 simul += aModel.
m_GNDClamp.
Spice( aIndex * 4 + 1, DIE, GC_GND, GC, supply );
637 simul += aModel.
m_pulldown.
Spice( aIndex * 4 + 3, DIE, PD_GND, PD, supply );
640 simul += aModel.
m_pullup.
Spice( aIndex * 4 + 4, PU_PWR, DIE, PU, supply );
650 if( std::remove( outputFileName.c_str() ) )
656 throw std::runtime_error(
"Could not create simulator instance" );
659 ng->LoadNetlist( aSimul );
661 std::ifstream KuKdfile;
662 KuKdfile.open( outputFileName );
664 std::vector<double>
ku, kd, t;
670 for(
int i = 0; i < 11; i++ )
671 std::getline( KuKdfile, line );
674 double t_v, ku_v, kd_v;
678 std::getline( KuKdfile, line );
686 line = line.substr( line.find_first_of(
"\t" ) + 1 );
687 t_v = std::stod( line );
689 case 1: ku_v = std::stod( line );
break;
691 kd_v = std::stod( line );
692 ku.push_back( ku_v );
693 kd.push_back( kd_v );
703 std::getline( KuKdfile, line );
710 if( std::remove( outputFileName.c_str() ) )
722 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
729 std::string simul =
"";
731 simul +=
"*THIS IS NOT A VALID SPICE MODEL.\n";
732 simul +=
"*This part is intended to be executed by Kibis internally.\n";
733 simul +=
"*You should not be able to read this.\n\n";
735 simul +=
".SUBCKT DRIVER";
736 simul += std::to_string( aIndex );
737 simul +=
" POWER GND PIN \n";
739 simul +=
"Vdummy 2 PIN 0\n";
741 if( ( aPair.first->m_R_dut != 0 ) || ( aPair.first->m_L_dut != 0 )
742 || ( aPair.first->m_C_dut != 0 ) )
744 Report(
_(
"Kibis does not support DUT values yet. "
745 "https://ibis.org/summits/nov16a/chen.pdf" ),
750 simul +=
"CCPOMP 2 GND ";
759 case KIBIS_WAVEFORM_TYPE::RECTANGULAR:
760 case KIBIS_WAVEFORM_TYPE::PRBS:
762 wave->
Check( risingWF, fallingWF );
768 case KIBIS_WAVEFORM_TYPE::STUCK_HIGH:
771 simul +=
"Vsig DIE0 GND ";
776 case KIBIS_WAVEFORM_TYPE::STUCK_LOW:
779 simul +=
"Vsig DIE0 GND ";
784 case KIBIS_WAVEFORM_TYPE::NONE:
785 case KIBIS_WAVEFORM_TYPE::HIGH_Z:
790 simul +=
addDie( aModel, aParam, 0 );
792 simul +=
"\n.ENDS DRIVER\n\n";
798 const std::pair<IbisWaveform*, IbisWaveform*>& aPair,
804 std::string simul =
"";
809 if( wave->
GetType() == KIBIS_WAVEFORM_TYPE::NONE )
812 std::vector<double>
ku, kd, t;
822 simul +=
KuKdDriver( aModel, aPair, aParam, 0 );
823 simul +=
"\n x1 3 0 1 DRIVER0 \n";
829 simul +=
"Lfixture 1 4 ";
832 simul +=
"Rfixture 4 5 ";
835 simul +=
"Cfixture 4 0 ";
838 simul +=
"Vfixture 5 0 ";
841 simul +=
"VmeasIout x1.DIE0 x1.2 0\n";
842 simul +=
"VmeasPD 0 x1.PD_GND0 0\n";
843 simul +=
"VmeasPU x1.PU_PWR0 3 0\n";
844 simul +=
"VmeasPC x1.PC_PWR0 3 0\n";
845 simul +=
"VmeasGC 0 x1.GC_GND0 0\n";
849 Report(
_(
"Model has only one waveform pair, reduced accuracy" ),
851 simul +=
"Bku KU 0 v=( (i(VmeasIout)-i(VmeasPC)-i(VmeasGC)-i(VmeasPD) "
852 ")/(i(VmeasPU)-i(VmeasPD)))\n";
853 simul +=
"Bkd KD 0 v=(1-v(KU))\n";
858 simul +=
"Bku KD 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPD)))\n";
859 simul +=
"Bkd KU 0 v=0\n";
864 simul +=
"Bku KU 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPU)))\n";
865 simul +=
"Bkd KD 0 v=0\n";
874 case KIBIS_WAVEFORM_TYPE::PRBS:
875 case KIBIS_WAVEFORM_TYPE::RECTANGULAR:
878 simul +=
".tran 0.1n ";
883 case KIBIS_WAVEFORM_TYPE::HIGH_Z:
884 case KIBIS_WAVEFORM_TYPE::STUCK_LOW:
885 case KIBIS_WAVEFORM_TYPE::STUCK_HIGH:
887 simul +=
".tran 0.5 1 \n";
891 simul +=
".control run \n";
892 simul +=
"set filetype=ascii\n";
898 simul +=
"write '" + outputFileName +
"' v(KU) v(KD)\n";
910 std::vector<double>
ku, kd, t;
919 case KIBIS_WAVEFORM_TYPE::RECTANGULAR:
920 case KIBIS_WAVEFORM_TYPE::PRBS:
926 for(
const std::pair<int, double>& bit : bits )
928 ku.push_back( bit.first ? 0 : 1 );
929 kd.push_back( bit.first ? 1 : 0 );
930 t.push_back( bit.second );
931 ku.push_back( bit.first ? 1 : 0 );
932 kd.push_back( bit.first ? 0 : 1 );
933 t.push_back( bit.second
941 case KIBIS_WAVEFORM_TYPE::STUCK_HIGH:
944 kd.push_back( wave->
inverted ? 1 : 0 );
948 case KIBIS_WAVEFORM_TYPE::STUCK_LOW:
951 kd.push_back( wave->
inverted ? 0 : 1 );
955 case KIBIS_WAVEFORM_TYPE::HIGH_Z:
956 case KIBIS_WAVEFORM_TYPE::NONE:
970 const std::pair<IbisWaveform*, IbisWaveform*>& aPair1,
971 const std::pair<IbisWaveform*, IbisWaveform*>& aPair2,
974 std::string simul =
"";
981 if( wave->
GetType() == KIBIS_WAVEFORM_TYPE::NONE )
984 std::vector<double>
ku, kd, t;
994 simul +=
KuKdDriver( aModel, aPair1, aParam, 0 );
995 simul +=
KuKdDriver( aModel, aPair2, aParam, 1 );
996 simul +=
"\n x1 3 0 1 DRIVER0 \n";
1002 simul +=
"Lfixture0 1 4 ";
1005 simul +=
"Rfixture0 4 5 ";
1008 simul +=
"Cfixture0 4 0 ";
1011 simul +=
"Vfixture0 5 0 ";
1014 simul +=
"VmeasIout0 x1.2 x1.DIE0 0\n";
1015 simul +=
"VmeasPD0 0 x1.PD_GND0 0\n";
1016 simul +=
"VmeasPU0 x1.PU_PWR0 3 0\n";
1017 simul +=
"VmeasPC0 x1.PC_PWR0 3 0\n";
1018 simul +=
"VmeasGC0 0 x1.GC_GND0 0\n";
1021 simul +=
"\n x2 3 0 7 DRIVER1 \n";
1023 simul +=
"Lfixture1 7 8 ";
1026 simul +=
"Rfixture1 8 9 ";
1029 simul +=
"Cfixture1 8 0 ";
1032 simul +=
"Vfixture1 9 0 ";
1035 simul +=
"VmeasIout1 x2.2 x2.DIE0 0\n";
1036 simul +=
"VmeasPD1 0 x2.PD_GND0 0\n";
1037 simul +=
"VmeasPU1 x2.PU_PWR0 3 0\n";
1038 simul +=
"VmeasPC1 x2.PC_PWR0 3 0\n";
1039 simul +=
"VmeasGC1 0 x2.GC_GND0 0\n";
1044 "Bku KU 0 v=( ( i(VmeasPD1) * ( i(VmeasIout0) + i(VmeasPC0) + i(VmeasGC0) ) - "
1045 "i(VmeasPD0) * ( i(VmeasIout1) + i(VmeasPC1) + i(VmeasGC1) ) )/ ( i(VmeasPU1) "
1047 "i(VmeasPD0) - i(VmeasPU0) * i(VmeasPD1) ) )\n";
1049 "Bkd KD 0 v=( ( i(VmeasPU1) * ( i(VmeasIout0) + i(VmeasPC0) + i(VmeasGC0) ) - "
1050 "i(VmeasPU0) * ( i(VmeasIout1) + i(VmeasPC1) + i(VmeasGC1) ) )/ ( i(VmeasPD1) "
1052 "i(VmeasPU0) - i(VmeasPD0) * i(VmeasPU1) ) )\n";
1058 Report(
_(
"There are two waveform pairs, but only one transistor. More equations than "
1061 simul +=
"Bku KD 0 v=( ( i(VmeasIout0)+i(VmeasPC0)+i(VmeasGC0) )/(i(VmeasPD0)))\n";
1062 simul +=
"Bkd KU 0 v=0\n";
1067 Report(
_(
"There are two waveform pairs, but only one transistor. More equations than "
1070 simul +=
"Bku KU 0 v=( ( i(VmeasIout)+i(VmeasPC)+i(VmeasGC) )/(i(VmeasPU)))\n";
1071 simul +=
"Bkd KD 0 v=0\n";
1080 case KIBIS_WAVEFORM_TYPE::RECTANGULAR:
1081 case KIBIS_WAVEFORM_TYPE::PRBS:
1084 simul +=
".tran 0.1n ";
1089 case KIBIS_WAVEFORM_TYPE::HIGH_Z:
1090 case KIBIS_WAVEFORM_TYPE::STUCK_LOW:
1091 case KIBIS_WAVEFORM_TYPE::STUCK_HIGH:
1093 simul +=
".tran 0.5 1 \n";
1097 simul +=
".control run \n";
1098 simul +=
"set filetype=ascii\n";
1100 simul +=
"plot v(KU) v(KD)\n";
1103 simul +=
"write '" + outputFileName +
"' v(KU) v(KD)\n";
1105 simul +=
".endc \n";
1120 case IBIS_MODEL_TYPE::OUTPUT:
1121 case IBIS_MODEL_TYPE::IO:
1122 case IBIS_MODEL_TYPE::THREE_STATE:
1123 case IBIS_MODEL_TYPE::OPEN_DRAIN:
1124 case IBIS_MODEL_TYPE::IO_OPEN_DRAIN:
1125 case IBIS_MODEL_TYPE::OPEN_SINK:
1126 case IBIS_MODEL_TYPE::IO_OPEN_SINK:
1127 case IBIS_MODEL_TYPE::OPEN_SOURCE:
1128 case IBIS_MODEL_TYPE::IO_OPEN_SOURCE:
1129 case IBIS_MODEL_TYPE::OUTPUT_ECL:
1130 case IBIS_MODEL_TYPE::IO_ECL:
1131 case IBIS_MODEL_TYPE::THREE_STATE_ECL:
1136 result =
"\n*Driver model generated by Kicad using Ibis data. ";
1138 result +=
"\n*Pin number: ";
1140 result +=
"\n*Signal name: ";
1142 result +=
"\n*Model: ";
1144 result +=
"\n.SUBCKT ";
1146 result +=
" GND PIN \n";
1149 result +=
"RPIN 1 PIN ";
1152 result +=
"LPIN DIE0 1 ";
1155 result +=
"CPIN PIN GND ";
1159 std::vector<std::pair<IbisWaveform*, IbisWaveform*>> wfPairs = aModel.
waveformPairs();
1162 if( wfPairs.size() < 1 || accuracy <= KIBIS_ACCURACY::LEVEL_0 )
1164 if( accuracy > KIBIS_ACCURACY::LEVEL_0 )
1166 Report(
_(
"Model has no waveform pair, using [Ramp] instead, poor accuracy" ),
1172 else if( wfPairs.size() == 1 || accuracy <= KIBIS_ACCURACY::LEVEL_1 )
1178 if( wfPairs.size() > 2 || accuracy <= KIBIS_ACCURACY::LEVEL_2 )
1180 Report(
_(
"Model has more than 2 waveform pairs, using the first two." ),
1187 result +=
"Vku KU GND pwl ( ";
1189 for(
size_t i = 0; i <
m_t.size(); i++ )
1200 result +=
"Vkd KD GND pwl ( ";
1202 for(
size_t i = 0; i <
m_t.size(); i++ )
1212 result += aModel.
SpiceDie( aParam, 0 );
1214 result +=
"\n.ENDS DRIVER\n\n";
1235 case IBIS_MODEL_TYPE::INPUT_STD:
1236 case IBIS_MODEL_TYPE::IO:
1237 case IBIS_MODEL_TYPE::IO_OPEN_DRAIN:
1238 case IBIS_MODEL_TYPE::IO_OPEN_SINK:
1239 case IBIS_MODEL_TYPE::IO_OPEN_SOURCE:
1240 case IBIS_MODEL_TYPE::IO_ECL:
1245 result =
"*Device model generated by Kicad using Ibis data.";
1246 result +=
"\n.SUBCKT ";
1248 result +=
" GND PIN\n";
1251 result +=
"RPIN 1 PIN ";
1254 result +=
"LPIN DIE0 1 ";
1257 result +=
"CPIN PIN GND ";
1262 result +=
"Vku KU GND pwl ( 0 0 )\n";
1263 result +=
"Vkd KD GND pwl ( 0 0 )\n";
1265 result += aModel.
SpiceDie( aParam, 0 );
1267 result +=
"\n.ENDS DRIVER\n\n";
1269 aDest = std::move( result );
1291 result =
"\n*Differential driver model generated by Kicad using Ibis data. ";
1293 result +=
"\n.SUBCKT ";
1295 result +=
" GND PIN_P PIN_N\n";
1305 result +=
"x1 GND PIN_P " + aName +
"_P \n";
1306 result +=
"x2 GND PIN_N " + aName +
"_N \n";
1309 result +=
"\n.ENDS " + aName +
"\n\n";
1324 result =
"\n*Differential device model generated by Kicad using Ibis data. ";
1326 result +=
"\n.SUBCKT ";
1328 result +=
" GND PIN_P PIN_N\n";
1335 result +=
"x1 GND PIN_P " + aName +
"_P \n";
1336 result +=
"x2 GND PIN_N " + aName +
"_N \n";
1339 result +=
"\n.ENDS " + aName +
"\n\n";
1352 if( model.m_name == aName )
1364 if( cmp.m_name == aName )
1374 if( aString ==
"MIN" )
1375 aCorner = IBIS_CORNER::MIN;
1376 else if( aString ==
"MAX" )
1377 aCorner = IBIS_CORNER::MAX;
1379 aCorner = IBIS_CORNER::TYP;
1385 std::vector<std::pair<int, double>> bits;
1386 std::pair<int, double> bit;
1395 std::vector<std::pair<int, double>> bits;
1396 std::pair<int, double> bit;
1404 std::vector<std::pair<int, double>> bits;
1410 std::vector<std::pair<int, double>> bits;
1412 for(
int i = 0; i <
m_cycles; i++ )
1414 std::pair<int, double> bit;
1417 bits.push_back( bit );
1421 bits.push_back( bit );
1430 std::vector<std::pair<int, double>> bitSequence;
1431 uint8_t polynomial = 0b1100000;
1435 uint8_t seed = 0x12;
1436 uint8_t lfsr = seed;
1450 uint8_t lsb = lfsr & 0x01;
1451 bitSequence.emplace_back( (
static_cast<uint8_t
>(
inverted ) ^ lsb ? 1 : 0 ), t );
1459 }
while ( ++bits <
m_bits );
1489 if( m_ton < aRisingWf->m_table.m_entries.back().t )
1498 if( m_toff < aFallingWf->m_table.m_entries.back().t )
1505 status &= aRisingWf && aFallingWf;
1573 + aFallingRp.
value[IBIS_CORNER::TYP].
m_dt / 0.6 ) )
1575 + aFallingRp.
value[IBIS_CORNER::TYP].
m_dt / 0.6 ) )
1577 + aFallingRp.
value[IBIS_CORNER::TYP].
m_dt / 0.6 ) ) )
1603 if(
m_bitrate && aRisingWf && aFallingWf
void Report(const std::string &aMsg, SEVERITY aSeverity=RPT_SEVERITY_INFO) const
Print a message.
static std::string doubleToString(double aNumber)
Convert a double to string using scientific notation.
std::vector< IVtableEntry > m_entries
std::string Spice(int aN, const std::string &aPort1, const std::string &aPort2, const std::string &aModelName, IBIS_CORNER aCorner) const
Interpolate the IV table.
std::string m_manufacturer
IbisComponentPackage m_package
std::vector< IbisComponentPin > m_pins
std::vector< IbisDiffPinEntry > m_entries
std::vector< IbisComponent > m_components
std::vector< IbisModel > m_models
std::vector< IbisModelSelector > m_modelSelectors
std::string m_modelDescription
std::vector< IbisModelSelectorEntry > m_models
TypMinMaxValue m_pullupReference
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.
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.
TypMinMaxValue m_pulldownReference
TypMinMaxValue m_GNDClampReference
bool HasPulldown() const
Return true if the model has a pulldown transistor.
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
std::string SpiceDie(const KIBIS_PARAMETER &aParam, int aIndex) const
Generate the spice directive to simulate the die.
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< KIBIS_MODEL * > m_models
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 )
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 .
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.
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.