Sim Ltspice compat: Narrow ignoring undocumented parameters

This commit is contained in:
Mikolaj Wielgus 2022-10-20 02:56:28 +02:00
parent 5878749ed2
commit 7ad927671d
1 changed files with 3 additions and 0 deletions

View File

@ -187,7 +187,10 @@ bool SIM_MODEL_NGSPICE::canSilentlyIgnoreParam( const std::string& aParamName )
// Ignore the purely informative LTspice-specific parameters "icrating" and "vceo".
if( aParamName == "icrating" || aParamName == "vceo" )
return true;
}
if( GetType() == TYPE::NPN_GUMMELPOON || GetType() == TYPE::PNP_GUMMELPOON )
{
// Ignore unused parameters.
if( aParamName == "bvcbo"
|| aParamName == "nbvcbo"