eisgenerator 1.0.x
paralellseriel.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 <vector>
23#include <complex>
24#include "componant.h"
25
26namespace eis
27{
28
29class Parallel: public Componant
30{
31public:
32 std::vector<Componant*> componants;
33
34 Parallel(std::vector<Componant*> componantsIn = std::vector<Componant*>());
35 Parallel(const Parallel& in);
36 void operator=(const Parallel& in);
37 ~Parallel();
38 virtual std::complex<fvalue> execute(fvalue omaga) override;
39 virtual char getComponantChar() const override;
40 virtual std::string getComponantString(bool currentValue = true) const override;
41 static constexpr char staticGetComponantChar(){return 'd';}
42 virtual std::string componantName() const override {return "Parallel";}
43 virtual bool compileable() override;
44 virtual std::string getCode(std::vector<std::string>& parameters) override;
45 virtual std::string getTorchScript(std::vector<std::string>& parameters) override;
46};
47
48class Serial: public Componant
49{
50public:
51 std::vector<Componant*> componants;
52
53 Serial(std::vector<Componant*> componantsIn = std::vector<Componant*>());
54 Serial(const Serial& in);
55 void operator=(const Serial& in);
56 ~Serial();
57 virtual std::complex<fvalue> execute(fvalue omaga) override;
58 virtual char getComponantChar() const override;
59 virtual std::string getComponantString(bool currentValue = true) const override;
60 static constexpr char staticGetComponantChar(){return 's';}
61 virtual std::string componantName() const override {return "Serial";}
62 virtual bool compileable() override;
63 virtual std::string getCode(std::vector<std::string>& parameters) override;
64 virtual std::string getTorchScript(std::vector<std::string>& parameters) override;
65};
66
67}
Definition componant.h:33
Definition paralellseriel.h:30
Definition paralellseriel.h:49
eisgenerator Copyright (C) 2021 Carl Klemm
Definition basicmath.h:26