eisgenerator 1.0.x
resistor.h
1//SPDX-License-Identifier: LGPL-3.0-or-later
2/* * eisgenerator - a shared libary and application to generate EIS spectra
3 * Copyright (C) 2022-2024 Carl Philipp Klemm <carl@uvos.xyz>
4 *
5 * This file is part of eisgenerator.
6 *
7 * eisgenerator is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * eisgenerator 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 Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with eisgenerator. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22#include "componant.h"
23#include <string>
24
25namespace eis
26{
27
28class Resistor: public Componant
29{
30public:
31 Resistor(fvalue r);
32 Resistor(std::string paramStr, size_t count = 10, bool defaultToRange = false);
33 virtual std::complex<fvalue> execute(fvalue omega) override;
34 virtual size_t paramCount() const override;
35 virtual char getComponantChar() const override;
36 static constexpr char staticGetComponantChar(){return 'r';}
37 virtual std::string componantName() const override {return "Resistor";}
38 virtual std::string getCode(std::vector<std::string>& parameters) override;
39 virtual std::vector<eis::Range> getDefaultParameters(bool range = true) const override;
40 virtual std::string getTorchScript(std::vector<std::string>& parameters) override;
41 virtual ~Resistor() = default;
42};
43
44}
Definition componant.h:33
Definition resistor.h:29
eisgenerator Copyright (C) 2021 Carl Klemm
Definition basicmath.h:26