eisgenerator 1.0.x
warburg.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 <complex>
23#include <string>
24#include <vector>
25#include "componant.h"
26
27namespace eis
28{
29
30class Warburg: public Componant
31{
32public:
33 Warburg(std::string paramStr, size_t count = 10, bool defaultToRange = false);
34 Warburg(fvalue a = 2e4);
35 virtual std::complex<fvalue> execute(fvalue omega) override;
36 virtual size_t paramCount() const override;
37 virtual char getComponantChar() const override;
38 static constexpr char staticGetComponantChar(){return 'w';}
39 virtual std::string componantName() const override {return "Warburg";}
40 virtual std::string getCode(std::vector<std::string>& parameters) override;
41 virtual std::vector<eis::Range> getDefaultParameters(bool range = true) const override;
42 virtual std::string getTorchScript(std::vector<std::string>& parameters) override;
43 virtual ~Warburg() = default;
44};
45
46}
Definition componant.h:33
Definition warburg.h:31
eisgenerator Copyright (C) 2021 Carl Klemm
Definition basicmath.h:26