KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sim_library_kibis.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2022-2023 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * https://www.gnu.org/licenses/gpl-3.0.html
19 * or you may search the http://www.gnu.org website for the version 3 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef SIM_LIBRARY_KIBIS_H
25#define SIM_LIBRARY_KIBIS_H
26
27#include <sim/kibis/kibis.h>
28#include <sim/sim_library.h>
29#include <sim/sim_model_kibis.h>
30
32{
33 friend class SIM_MODEL_KIBIS;
34
35public:
36 static constexpr auto PIN_FIELD = "Sim.Ibis.Pin";
37 static constexpr auto MODEL_FIELD = "Sim.Ibis.Model";
38 static constexpr auto DIFF_FIELD = "Sim.Ibis.Diff";
39
40 // @copydoc SIM_LIBRARY::ReadFile()
41 void ReadFile( const wxString& aFilePath, REPORTER& aReporter ) override;
42
43 bool InitModel( SIM_MODEL_KIBIS& aModel, wxString aCompName );
44 bool isPinDiff( const std::string& aComp, const std::string& aPinNumber ) const;
45
46protected:
47 mutable KIBIS m_kibis;
48 std::vector<std::pair<std::string, std::string>> m_diffPins;
49};
50
51#endif // SIM_LIBRARY_SPICE_H
Definition: kibis.h:433
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:71
bool isPinDiff(const std::string &aComp, const std::string &aPinNumber) const
bool InitModel(SIM_MODEL_KIBIS &aModel, wxString aCompName)
static constexpr auto DIFF_FIELD
static constexpr auto MODEL_FIELD
static constexpr auto PIN_FIELD
std::vector< std::pair< std::string, std::string > > m_diffPins
void ReadFile(const wxString &aFilePath, REPORTER &aReporter) override
Read library from a source file.