Files
solver/OndselSolver/GeneralSpline.cpp
John Dupuy 87ed8700e2 modify code to suppress or fix warnings in gcc and clang (#41)
* first fix to start branch PR

* explicit conversion from sizet to int

* Array.h and DiagonalMatrix.h

* many sizet to int conversions

* removed some unused variables and added expl overrides

* removed many unused parameters

* more typing

* even more

* last of the easy changes
2023-12-08 10:00:00 -07:00

262 lines
6.5 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <functional>
#include "GeneralSpline.h"
#include "CREATE.h"
#include "GESpMatParPvMarkoFast.h"
#include "DifferentiatedGeneralSpline.h"
using namespace MbD;
MbD::GeneralSpline::GeneralSpline(Symsptr arg) : AnyGeneralSpline(arg)
{
}
double MbD::GeneralSpline::getValue()
{
return y(xx->getValue());
}
Symsptr MbD::GeneralSpline::differentiateWRTx()
{
auto self = clonesptr();
auto& arg = std::static_pointer_cast<GeneralSpline>(self)->xx;
auto deriv = std::make_shared<DifferentiatedGeneralSpline>(arg, self, 1);
return deriv;
}
void MbD::GeneralSpline::arguments(Symsptr args)
{
auto array = args->getTerms();
auto& arg = array->at(0);
int order = (int)array->at(1)->getValue();
int n = ((int)array->size() - 2) / 2;
auto xarray = std::make_shared<std::vector<double>>(n);
auto yarray = std::make_shared<std::vector<double>>(n);
for (int i = 0; i < n; i++)
{
int ii = 2 * ((int)i + 1);
xarray->at(i) = array->at(ii)->getValue();
yarray->at(i) = array->at(ii + 1)->getValue();
}
initxdegreexsys(arg, order, xarray, yarray);
}
void MbD::GeneralSpline::initxdegreexsys(Symsptr arg, int order, std::shared_ptr<std::vector<double>> xarr, std::shared_ptr<std::vector<double>> yarr)
{
xx = arg;
degree = order;
xs = xarr;
ys = yarr;
if (!Numeric::isIncreasingVector(xs.get())) throw std::runtime_error("x must be increasing.");
computeDerivatives();
}
void MbD::GeneralSpline::computeDerivatives()
{
//"See derivation in MbDTheory 9spline.fodt."
if (degree == 0) throw std::runtime_error("ToDo: Use ZeroDegreeSpline");
auto n = (int)xs->size();
auto p = degree;
auto np = n * p;
auto matrix = std::make_shared<SparseMatrix<double>>(np, np);
auto bvector = std::make_shared<FullColumn<double>>(np, 0.0);
auto hs = std::make_shared<FullColumn<double>>(n - 1);
double hmax = 0.0;
for (int i = 0; i < n - 1; i++)
{
double h = xs->at((int)i + 1) - xs->at(i);
hmax = std::max(hmax, std::abs(h));
hs->atiput(i, h);
}
for (int i = 0; i < n - 1; i++)
{
auto offset = i * p;
double hbar = hs->at(i) / hmax;
for (int j = 1; j < p; j++)
{
matrix->atijput(offset + j, offset + j - 1, 1.0);
matrix->atijput(offset + j, offset + j - 1 + p, -1.0);
}
double dum = 1.0;
for (int j = 0; j < p; j++)
{
dum = dum * hbar / (j + 1);
for (int k = j; k < p; k++)
{
matrix->atijput(offset + k - j, offset + k, dum);
}
}
bvector->atiput(offset, ys->at((int)i + 1) - ys->at(i));
}
if (isCyclic()) {
for (int j = 1; j < p + 1; j++)
{
matrix->atijput(np - j, np - j, 1.0);
matrix->atijput(np - j, p - j, -1.0);
}
}
else {
//"Zero out higher derivatives at node n and node 1 to get the p end equations."
auto count = 0;
auto npass = 0;
while (count < p) {
matrix->atijput(np - count, np - npass, 1.0);
count++;
if (count < p) {
matrix->atijput(np - count, p - npass, 1.0);
count++;
}
}
npass = npass + 1;
}
auto solver = CREATE<GESpMatParPvMarkoFast>::With();
auto derivsVector = solver->solvewithsaveOriginal(matrix, bvector, false);
derivs = std::make_shared<FullMatrix<double>>(n, p);
auto hmaxpowers = std::make_shared<FullColumn<double>>(p);
for (int j = 0; j < p; j++)
{
hmaxpowers->atiput(j, std::pow(hmax, j + 1));
}
for (int i = 0; i < n; i++)
{
auto& derivsi = derivs->at(i);
derivsi->equalArrayAt(derivsVector, (i - 1) * p + 1);
for (int j = 0; j < p; j++)
{
derivsi->atiput(j, derivsi->at(j) / hmaxpowers->at(j));
}
}
}
bool MbD::GeneralSpline::isCyclic()
{
return (ys->size() > 3) && (ys->front() == ys->back());
}
double MbD::GeneralSpline::derivativeAt(int n, double xxx)
{
//"dydx(x) := dydxi + d2ydx2i*hi + d3ydx3i*hi^2/2! +"
//"d2ydx2(x) := d2ydx2i + d3ydx3i*hi + d4ydx4i*hi^2/2! +"
if (n > degree) return 0.0;
calcIndexAndDeltaFor(xxx);
auto& derivsi = derivs->at(index);
double sum = 0.0;
for (int j = degree; j >= n + 1; j--)
{
sum = (sum + derivsi->at((int)j - 1)) * delta / (j - n);
}
return derivsi->at((int)n - 1) + sum;
}
void MbD::GeneralSpline::calcIndexAndDeltaFor(double xxx)
{
xvalue = xxx;
if (isCyclic()) {
calcCyclicIndexAndDelta();
}
else {
calcNonCyclicIndexAndDelta();
}
}
void MbD::GeneralSpline::calcCyclicIndexAndDelta()
{
double xFirst = xs->front();
double xLast = xs->back();
xvalue = std::fmod(xvalue - xFirst, xLast - xFirst) + xFirst;
calcIndexAndDelta();
}
void MbD::GeneralSpline::calcNonCyclicIndexAndDelta()
{
double xFirst = xs->front();
double xLast = xs->back();
if (xvalue <= xFirst) {
index = 0;
delta = xvalue - xFirst;
}
else {
if (xvalue >= xLast) {
index = (int)xs->size() - 1;
delta = xvalue - xLast;
}
else {
calcIndexAndDelta();
}
}
}
void MbD::GeneralSpline::calcIndexAndDelta()
{
if (!(index < (int)xs->size() - 1) || !(xs->at(index) <= xvalue) || !(xvalue < xs->at((int)index + 1))) {
searchIndexFromto(0, (int)xs->size()); //Using range.
}
delta = xvalue - xs->at(index);
}
void MbD::GeneralSpline::searchIndexFromto(int first, int last)
{
//"Assume xs(first) <= xvalue < xs(last)."
if (first + 1 == last) {
index = first;
}
else {
auto middle = (int)std::floor((first + last) / 2);
if (xvalue < xs->at(middle)) {
searchIndexFromto(first, middle);
}
else {
searchIndexFromto(middle, last);
}
}
}
Symsptr MbD::GeneralSpline::clonesptr()
{
return std::make_shared<GeneralSpline>(*this);
}
double MbD::GeneralSpline::y(double xxx)
{
//"y(x) := yi + dydxi*hi + d2ydx2i*hi^2/2! + d3ydx3i*hi^3/3! +"
calcIndexAndDeltaFor(xxx);
auto& derivsi = derivs->at(index);
double sum = 0.0;
for (int j = degree; j >= 1; j--)
{
sum = (sum + derivsi->at((int)j - 1)) * delta / j;
}
return ys->at(index) + sum;
}
std::ostream& MbD::GeneralSpline::printOn(std::ostream& s) const
{
s << "Spline(";
s << *xx << ", ";
s << degree << ", " << std::endl;
s << "xs{";
s << xs->at(0);
for (int i = 1; i < (int)xs->size(); i++)
{
s << ", " << xs->at(i);
}
s << "}, " << std::endl;
s << "ys{";
s << ys->at(0);
for (int i = 1; i < (int)ys->size(); i++)
{
s << ", " << ys->at(i);
}
s << "})" << std::endl;
return s;
}