mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Don't serialize parameters in certain models for default values. Infer models from Value field for some kinds of models. Resolve synonyms when loading models from Spice libraries.
207 lines
6.7 KiB
C++
207 lines
6.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2022 Mikolaj Wielgus
|
|
* Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* https://www.gnu.org/licenses/gpl-3.0.html
|
|
* or you may search the http://www.gnu.org website for the version 3 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <sim/sim_model_passive.h>
|
|
|
|
using PARAM = SIM_MODEL::PARAM;
|
|
|
|
|
|
SIM_MODEL_PASSIVE::SIM_MODEL_PASSIVE( TYPE aType )
|
|
: SIM_MODEL( aType )
|
|
{
|
|
static std::vector<PARAM::INFO> resistor = makeParamInfos( "r", "Resistance", "ohm" );
|
|
static std::vector<PARAM::INFO> capacitor = makeParamInfos( "c", "Capacitance", "F" );
|
|
static std::vector<PARAM::INFO> inductor = makeParamInfos( "l", "Inductance", "H" );
|
|
|
|
switch( aType )
|
|
{
|
|
case TYPE::R_ADV:
|
|
for( const PARAM::INFO& paramInfo : resistor )
|
|
AddParam( paramInfo );
|
|
break;
|
|
|
|
case TYPE::C_ADV:
|
|
for( const PARAM::INFO& paramInfo : capacitor )
|
|
AddParam( paramInfo );
|
|
break;
|
|
|
|
case TYPE::L_ADV:
|
|
for( const PARAM::INFO& paramInfo : inductor )
|
|
AddParam( paramInfo );
|
|
break;
|
|
|
|
default:
|
|
wxFAIL_MSG( "Unhandled SIM_MODEL type in SIM_MODEL_PASSIVE" );
|
|
}
|
|
}
|
|
|
|
|
|
wxString SIM_MODEL_PASSIVE::GenerateSpiceItemLine( const wxString& aRefName,
|
|
const wxString& aModelName,
|
|
const std::vector<wxString>& aPinNetNames ) const
|
|
{
|
|
wxString result = "";
|
|
result << GenerateSpiceItemName( aRefName ) << " ";
|
|
|
|
for( const PIN& pin : GetPins() )
|
|
{
|
|
for( unsigned i = 0; i < aPinNetNames.size(); ++i )
|
|
{
|
|
unsigned symbolPinNumber = i + 1;
|
|
|
|
if( symbolPinNumber == pin.symbolPinNumber )
|
|
result << aPinNetNames[i] << " ";
|
|
}
|
|
}
|
|
|
|
// The model name is preceded by the principal value for resistors.
|
|
//if( GetType() == TYPE::R_ADV )
|
|
//result << GetParam( 0 ).value->ToString( SIM_VALUE::NOTATION::SPICE ) << " ";
|
|
|
|
result << aModelName << " ";
|
|
|
|
for( const PARAM& param : GetParams() )
|
|
{
|
|
if( param.info.isInstanceParam )
|
|
result << param.info.name << "=" << param.value->ToString() << " ";
|
|
}
|
|
|
|
result << "\n";
|
|
return result;
|
|
}
|
|
|
|
|
|
bool SIM_MODEL_PASSIVE::SetParamFromSpiceCode( const wxString& aParamName,
|
|
const wxString& aParamValue,
|
|
SIM_VALUE_GRAMMAR::NOTATION aNotation )
|
|
{
|
|
if( aParamName.Lower() == "tc" )
|
|
return SetParamFromSpiceCode( "tc1", aParamValue, aNotation );
|
|
|
|
switch( GetType() )
|
|
{
|
|
case TYPE::R_ADV:
|
|
if( aParamName.Lower() == "tc1r" )
|
|
return SIM_MODEL::SetParamFromSpiceCode( "tc1", aParamValue, aNotation );
|
|
|
|
if( aParamName.Lower() == "tc2r" )
|
|
return SIM_MODEL::SetParamFromSpiceCode( "tc2", aParamValue, aNotation );
|
|
|
|
if( aParamName.Lower() == "res" )
|
|
return SIM_MODEL::SetParamFromSpiceCode( "r", aParamValue, aNotation );
|
|
|
|
break;
|
|
|
|
case TYPE::C_ADV:
|
|
if( aParamName.Lower() == "cap" )
|
|
return SIM_MODEL::SetParamFromSpiceCode( "c", aParamValue, aNotation );
|
|
|
|
break;
|
|
|
|
case TYPE::L_ADV:
|
|
if( aParamName.Lower() == "ind" )
|
|
return SIM_MODEL::SetParamFromSpiceCode( "l", aParamValue, aNotation );
|
|
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return SIM_MODEL::SetParamFromSpiceCode( aParamName, aParamValue, aNotation );
|
|
}
|
|
|
|
|
|
std::vector<PARAM::INFO> SIM_MODEL_PASSIVE::makeParamInfos( wxString aName,
|
|
wxString aDescription,
|
|
wxString aUnit )
|
|
{
|
|
std::vector<PARAM::INFO> paramInfos;
|
|
PARAM::INFO paramInfo = {};
|
|
|
|
paramInfo.name = aName;
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = aUnit;
|
|
paramInfo.category = PARAM::CATEGORY::PRINCIPAL;
|
|
paramInfo.defaultValue = "";
|
|
paramInfo.description = aDescription;
|
|
paramInfos.push_back( paramInfo );
|
|
|
|
paramInfo.name = "temp";
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = "deg C";
|
|
paramInfo.category = PARAM::CATEGORY::PRINCIPAL;
|
|
paramInfo.defaultValue = "27";
|
|
paramInfo.description = "Temperature";
|
|
paramInfos.push_back( paramInfo );
|
|
|
|
paramInfo.name = "tnom";
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = "deg C";
|
|
paramInfo.category = PARAM::CATEGORY::TEMPERATURE;
|
|
paramInfo.defaultValue = "27";
|
|
paramInfo.description = "Nominal temperature";
|
|
paramInfos.push_back( paramInfo );
|
|
|
|
paramInfo.name = "tc1";
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = aUnit;
|
|
paramInfo.category = PARAM::CATEGORY::TEMPERATURE;
|
|
paramInfo.defaultValue = "0";
|
|
paramInfo.description = "1st order temperature coefficient";
|
|
paramInfos.push_back( paramInfo );
|
|
|
|
paramInfo.name = "tc2";
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = aUnit;
|
|
paramInfo.category = PARAM::CATEGORY::TEMPERATURE;
|
|
paramInfo.defaultValue = "0";
|
|
paramInfo.description = "2nd order temperature coefficient";
|
|
paramInfos.push_back( paramInfo );
|
|
|
|
/*if( aName != "l" )
|
|
{
|
|
paramInfo.name = "bv_max";
|
|
paramInfo.type = SIM_VALUE::TYPE::FLOAT;
|
|
paramInfo.unit = aUnit;
|
|
paramInfo.category = PARAM::CATEGORY::LIMITING_VALUES;
|
|
paramInfo.defaultValue = "";
|
|
paramInfo.description = "Max. safe operating voltage";
|
|
paramInfos.push_back( paramInfo );
|
|
}*/
|
|
|
|
if( aName == "r" )
|
|
{
|
|
paramInfo.name = "noisy";
|
|
paramInfo.type = SIM_VALUE::TYPE::BOOL;
|
|
paramInfo.unit = "";
|
|
paramInfo.category = PARAM::CATEGORY::NOISE;
|
|
paramInfo.defaultValue = "True";
|
|
paramInfo.description = "Enable thermal noise";
|
|
paramInfos.push_back( paramInfo );
|
|
}
|
|
|
|
return paramInfos;
|
|
}
|