eisdrt 1.0.x
eisdrt.h
1/* * libeisdrt - A library to calculate EIS Drts
2 * Copyright (C) 2023 Carl Klemm <carl@uvos.xyz>
3 *
4 * This file is part of libeisdrt.
5 *
6 * libeisdrt is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * libeisdrt 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 Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with libeisdrt. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <eisgenerator/eistype.h>
21#include <vector>
22
23#include "types.h"
24
43std::vector<fvalue> calcDrt(const std::vector<eis::DataPoint>& data, const std::vector<fvalue>& omegaVector, FitMetrics& fm,
44 const FitParameters& fp, fvalue* rSeries = nullptr);
45
55std::vector<fvalue> calcDrt(const std::vector<eis::DataPoint>& data, FitMetrics& fm, const FitParameters& fp, fvalue* rSeries = nullptr);
56
65std::vector<eis::DataPoint> calcImpedance(const std::vector<fvalue>& drt, fvalue rSeries, const std::vector<fvalue>& omegaVector);
66
75std::vector<eis::DataPoint> calcImpedance(const std::vector<fvalue>& drt, fvalue rSeries, const eis::Range& omegaRange);
76
std::vector< eis::DataPoint > calcImpedance(const std::vector< fvalue > &drt, fvalue rSeries, const std::vector< fvalue > &omegaVector)
Calculate impedance from drt using eisgenerator datatypes.
std::vector< fvalue > calcDrt(const std::vector< eis::DataPoint > &data, const std::vector< fvalue > &omegaVector, FitMetrics &fm, const FitParameters &fp, fvalue *rSeries=nullptr)
Calculates a drt on eisgenerator types.
This is used to return information on a fit.
Definition types.h:51
Definition types.h:58