2016-08-11 12:41:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-12-05 20:01:36 +00:00
|
|
|
* Copyright (C) 2016-2022 CERN
|
2023-01-12 12:46:52 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.TXT for contributors.
|
2022-12-05 20:01:36 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2021-04-14 07:54:29 +00:00
|
|
|
*
|
2016-08-11 12:41:30 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2016-08-11 12:41:43 +00:00
|
|
|
* as published by the Free Software Foundation; either version 3
|
2016-08-11 12:41:30 +00:00
|
|
|
* 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:
|
2016-08-11 12:41:43 +00:00
|
|
|
* https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 3 license,
|
2016-08-11 12:41:30 +00:00
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2022-12-07 00:23:18 +00:00
|
|
|
#include "ngspice_circuit_model.h"
|
2021-04-14 07:54:29 +00:00
|
|
|
#include <macros.h> // for TO_UTF8 def
|
2020-04-15 01:51:58 +00:00
|
|
|
#include <wx/regex.h>
|
2019-05-27 22:13:00 +00:00
|
|
|
#include <wx/tokenzr.h>
|
2022-04-12 14:37:06 +00:00
|
|
|
#include <locale_io.h>
|
2016-08-11 12:41:52 +00:00
|
|
|
|
|
|
|
|
2023-01-29 16:01:03 +00:00
|
|
|
SIM_TRACE_TYPE NGSPICE_CIRCUIT_MODEL::VectorToSignal( const std::string& aVector,
|
|
|
|
wxString& aSignal ) const
|
2020-04-15 01:51:58 +00:00
|
|
|
{
|
2023-02-05 20:47:27 +00:00
|
|
|
static wxString BRANCH( wxS( "#branch" ) );
|
2020-04-15 01:51:58 +00:00
|
|
|
// See ngspice manual chapt. 31.1 "Accessing internal device parameters"
|
2023-02-05 20:47:27 +00:00
|
|
|
static wxRegEx internalDevParameter( wxS( "^@(\\w*[\\.\\w+]*)\\[(\\w*)\\]$" ), wxRE_ADVANCED );
|
|
|
|
|
2020-04-15 01:51:58 +00:00
|
|
|
wxString vector( aVector );
|
|
|
|
|
|
|
|
if( !internalDevParameter.Matches( vector ) )
|
|
|
|
{
|
2023-02-05 20:47:27 +00:00
|
|
|
if( vector.EndsWith( BRANCH ) )
|
|
|
|
{
|
|
|
|
aSignal = wxT( "I(" ) + vector.Left( vector.Length() - BRANCH.Length() ) + wxT( ")" );
|
|
|
|
return SPT_CURRENT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aSignal = wxT( "V(" ) + vector + wxT( ")" );
|
|
|
|
return SPT_VOLTAGE;
|
|
|
|
}
|
2020-04-15 01:51:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxString paramType = internalDevParameter.GetMatch( vector, 2 );
|
|
|
|
|
|
|
|
if( paramType.Lower()[0] == 'i' )
|
|
|
|
{
|
|
|
|
// this is a branch current
|
|
|
|
paramType[0] = 'I';
|
2022-10-25 23:31:48 +00:00
|
|
|
aSignal = paramType + wxT( "(" );
|
|
|
|
aSignal += internalDevParameter.GetMatch( vector, 1 ).Upper() + wxT( ")" );
|
2020-04-15 01:51:58 +00:00
|
|
|
return SPT_CURRENT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return SPT_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-02-11 23:25:32 +00:00
|
|
|
wxString NGSPICE_CIRCUIT_MODEL::GetSchTextSimCommand()
|
2016-08-11 12:41:30 +00:00
|
|
|
{
|
2022-10-25 23:31:48 +00:00
|
|
|
wxString simCmd;
|
2016-08-11 12:41:30 +00:00
|
|
|
|
2023-01-12 12:46:52 +00:00
|
|
|
ReadDirectives( 0 );
|
2016-08-11 12:41:30 +00:00
|
|
|
|
2023-01-14 00:17:33 +00:00
|
|
|
for( const wxString& directive : GetDirectives() )
|
2016-08-11 12:41:30 +00:00
|
|
|
{
|
2022-04-12 14:37:06 +00:00
|
|
|
if( IsSimCommand( directive ) )
|
2022-10-25 23:31:48 +00:00
|
|
|
simCmd += wxString::Format( wxT( "%s\r\n" ), directive );
|
2016-08-11 12:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return simCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-05 23:49:25 +00:00
|
|
|
SIM_TYPE NGSPICE_CIRCUIT_MODEL::GetSimType()
|
2016-08-11 12:41:34 +00:00
|
|
|
{
|
2022-06-12 03:39:13 +00:00
|
|
|
return CommandToSimType( GetSimCommand() );
|
2016-08-11 12:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-05 23:49:25 +00:00
|
|
|
SIM_TYPE NGSPICE_CIRCUIT_MODEL::CommandToSimType( const wxString& aCmd )
|
2016-08-11 12:41:34 +00:00
|
|
|
{
|
2020-04-15 01:51:58 +00:00
|
|
|
const std::vector<std::pair<wxString, SIM_TYPE>> simCmds = {
|
2022-10-25 23:31:48 +00:00
|
|
|
{ wxT( "^.ac\\M.*" ), ST_AC },
|
|
|
|
{ wxT( "^.dc\\M.*" ), ST_DC },
|
|
|
|
{ wxT( "^.tran\\M.*" ), ST_TRANSIENT },
|
|
|
|
{ wxT( "^.op\\M.*" ), ST_OP },
|
|
|
|
{ wxT( "^.disto\\M.*" ), ST_DISTORTION },
|
|
|
|
{ wxT( "^.noise\\M.*" ), ST_NOISE },
|
|
|
|
{ wxT( "^.pz\\M.*" ), ST_POLE_ZERO },
|
|
|
|
{ wxT( "^.sens\\M.*" ), ST_SENSITIVITY },
|
|
|
|
{ wxT( "^.tf\\M.*" ), ST_TRANS_FUNC } };
|
2020-04-15 01:51:58 +00:00
|
|
|
wxRegEx simCmd;
|
2016-08-11 12:41:34 +00:00
|
|
|
|
2022-10-25 23:31:48 +00:00
|
|
|
for( const std::pair<wxString, SIM_TYPE>& c : simCmds )
|
2016-08-11 12:41:34 +00:00
|
|
|
{
|
2020-04-15 01:51:58 +00:00
|
|
|
simCmd.Compile( c.first, wxRE_ADVANCED | wxRE_NOSUB | wxRE_ICASE );
|
|
|
|
|
|
|
|
if( simCmd.Matches( aCmd ) )
|
2016-08-11 12:41:34 +00:00
|
|
|
return c.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ST_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-05 23:49:25 +00:00
|
|
|
bool NGSPICE_CIRCUIT_MODEL::ParseDCCommand( const wxString& aCmd, SPICE_DC_PARAMS* aSource1,
|
2022-06-12 03:39:13 +00:00
|
|
|
SPICE_DC_PARAMS* aSource2 )
|
2019-05-27 22:13:00 +00:00
|
|
|
{
|
|
|
|
if( !aCmd.Lower().StartsWith( ".dc" ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
wxString cmd = aCmd.Mid( 3 ).Trim().Trim( false );
|
|
|
|
|
|
|
|
wxStringTokenizer tokens( cmd );
|
|
|
|
|
|
|
|
size_t num = tokens.CountTokens();
|
|
|
|
|
|
|
|
if( num != 4 && num != 8 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aSource1->m_source = tokens.GetNextToken();
|
|
|
|
aSource1->m_vstart = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
aSource1->m_vend = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
aSource1->m_vincrement = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
|
|
|
|
if( num == 8 )
|
|
|
|
{
|
|
|
|
aSource2->m_source = tokens.GetNextToken();
|
|
|
|
aSource2->m_vstart = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
aSource2->m_vend = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
aSource2->m_vincrement = SPICE_VALUE( tokens.GetNextToken() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2022-05-31 02:55:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
void NGSPICE_CIRCUIT_MODEL::WriteDirectives( OUTPUTFORMATTER& aFormatter,
|
|
|
|
unsigned aNetlistOptions ) const
|
|
|
|
{
|
2022-12-07 00:23:18 +00:00
|
|
|
if( GetSimCommandOverride().IsEmpty() )
|
|
|
|
aNetlistOptions |= OPTION_SIM_COMMAND;
|
|
|
|
|
2022-05-31 02:55:48 +00:00
|
|
|
NETLIST_EXPORTER_SPICE::WriteDirectives( aFormatter, aNetlistOptions );
|
2022-06-12 03:39:13 +00:00
|
|
|
|
2022-12-07 00:23:18 +00:00
|
|
|
if( !GetSimCommandOverride().IsEmpty() )
|
2022-12-05 20:01:36 +00:00
|
|
|
aFormatter.Print( 0, "%s\n", TO_UTF8( GetSimCommandOverride() ) );
|
2022-05-31 02:55:48 +00:00
|
|
|
}
|