KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sim_model_raw_spice.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 Mikolaj Wielgus
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef SIM_MODEL_RAW_SPICE_H
22#define SIM_MODEL_RAW_SPICE_H
23
24#include <sim/sim_model_spice.h>
25#include <sim/spice_generator.h>
26
27
29{
30public:
32
33 std::string ModelLine( const SPICE_ITEM& aItem ) const override;
34
35 std::string ItemName( const SPICE_ITEM& aItem ) const override;
36 std::string ItemPins( const SPICE_ITEM& aItem ) const override;
37 std::string ItemModelName( const SPICE_ITEM& aItem ) const override;
38 std::string ItemParams() const override;
39
40 std::string Preview( const SPICE_ITEM& aItem ) const override;
41};
42
43
45{
46public:
48
50 TYPE,
51 MODEL,
52 LIB
53 )
54
55 SIM_MODEL_RAW_SPICE( const std::string& aSpiceSource = "" );
56
57 void SetSource( const std::string& aSpiceSource ) { m_spiceCode = aSpiceSource; }
58
59 std::string GetSource() const
60 {
61 if( m_baseModel )
62 return static_cast<const SIM_MODEL_RAW_SPICE*>( m_baseModel )->GetSource();
63
64 return m_spiceCode;
65 }
66
67 void AssignSymbolPinNumberToModelPin( const std::string& aModelPinName,
68 const wxString& aSymbolPinNumber ) override;
69
70private:
71 static std::vector<PARAM::INFO> makeParamInfos();
72 bool requiresSpiceModelLine( const SPICE_ITEM& aItem ) const override { return false; }
73
74private:
75 std::string m_spiceCode;
76};
77
78#endif // SIM_MODEL_RAW_SPICE_H
friend class SPICE_GENERATOR_RAW_SPICE
std::string GetSource() const
DEFINE_ENUM_CLASS_WITH_ITERATOR(SPICE_PARAM, TYPE, MODEL, LIB) SIM_MODEL_RAW_SPICE(const std void SetSource(const std::string &aSpiceSource)
void AssignSymbolPinNumberToModelPin(const std::string &aModelPinName, const wxString &aSymbolPinNumber) override
static std::vector< PARAM::INFO > makeParamInfos()
bool requiresSpiceModelLine(const SPICE_ITEM &aItem) const override
SIM_MODEL()=delete
const SIM_MODEL * m_baseModel
Definition sim_model.h:534
std::string ModelLine(const SPICE_ITEM &aItem) const override
std::string ItemPins(const SPICE_ITEM &aItem) const override
std::string ItemModelName(const SPICE_ITEM &aItem) const override
std::string ItemParams() const override
std::string Preview(const SPICE_ITEM &aItem) const override
SPICE_GENERATOR(const SIM_MODEL &aModel)
std::string ItemName(const SPICE_ITEM &aItem) const override
SPICE_GENERATOR(const SIM_MODEL &aModel)
#define DEFINE_ENUM_CLASS_WITH_ITERATOR(enumName, beginVal,...)
Macro to create const vectors containing enum class values to enable easy iteration.
Definition enum_vector.h:69
SIM_MODEL::TYPE TYPE
Definition sim_model.cpp:54