1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/*
* Definition of class Ortho_poly
*/
/*
* Copyright (c) 2005 Eric Gourgoulhon
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/*
* $Id: ortho_poly.C,v 1.3 2014/10/06 15:09:48 j_novak Exp $
* $Log: ortho_poly.C,v $
* Revision 1.3 2014/10/06 15:09:48 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.2 2005/11/14 14:12:10 e_gourgoulhon
* Added include <assert.h>
*
* Revision 1.1 2005/11/14 01:57:00 e_gourgoulhon
* First version
*
*
* $Header: /cvsroot/Lorene/School05/Monday/ortho_poly.C,v 1.3 2014/10/06 15:09:48 j_novak Exp $
*
*/
#include <iostream>
using namespace std ;
#include <cstdlib>
#include <cmath>
#include <cassert>
#include "ortho_poly.h"
#include "grid.h"
//--------------------//
// Copy constructor //
//--------------------//
Ortho_poly::Ortho_poly(const Ortho_poly& pp) : nn(pp.nn) {
// Initialization of the pointers of the derived quantities to 0x0
p_gauss_nodes = 0x0 ;
p_gauss_weights = 0x0 ;
p_gauss_gamma = 0x0 ;
p_gauss_lobatto_nodes = 0x0 ;
p_gauss_lobatto_weights = 0x0 ;
p_gauss_lobatto_gamma = 0x0 ;
}
//---------------------------------//
// Constructor for derived classes //
//---------------------------------//
Ortho_poly::Ortho_poly(int ni) : nn(ni) {
assert(ni >= 0) ;
// Initialization of the pointers of the derived quantities to 0x0
p_gauss_nodes = 0x0 ;
p_gauss_weights = 0x0 ;
p_gauss_gamma = 0x0 ;
p_gauss_lobatto_nodes = 0x0 ;
p_gauss_lobatto_weights = 0x0 ;
p_gauss_lobatto_gamma = 0x0 ;
}
//--------------//
// Destructor //
//--------------//
Ortho_poly::~Ortho_poly() {
if (p_gauss_nodes != 0x0) delete p_gauss_nodes ;
if (p_gauss_weights != 0x0) delete [] p_gauss_weights ;
if (p_gauss_gamma != 0x0) delete [] p_gauss_gamma ;
if (p_gauss_lobatto_nodes != 0x0) delete p_gauss_lobatto_nodes ;
if (p_gauss_lobatto_weights != 0x0) delete [] p_gauss_lobatto_weights ;
if (p_gauss_lobatto_gamma != 0x0) delete [] p_gauss_lobatto_gamma ;
}
//--------------//
// Assignment //
//--------------//
void Ortho_poly::operator=(const Ortho_poly& ) {
cerr << "Ortho_poly::operator= not implemented !" << endl ;
abort() ;
}
//-------------//
// Accessors //
//-------------//
int Ortho_poly::n() const {
return nn ;
}
//-------------------------------------------------//
// Coefficients of Gauss interpolant polynomial //
//-------------------------------------------------//
void Ortho_poly::coef_interpolant_Gauss(double (*f)(double),
double* cf) const {
// Values of the function at the Gauss nodes
double* ff = new double[nn+1] ;
for (int i=0; i<=nn; i++) ff[i] = f( gauss_nodes()(i) ) ;
// Computation of the coefficients
for (int i=0; i<=nn; i++) {
double sum = 0 ;
for (int j=0; j<=nn; j++) {
sum += ff[j] * operator()(i, gauss_nodes()(j) )
* gauss_weight(j) ;
}
cf[i] = sum / gauss_gamma(i) ;
}
delete [] ff ;
}
//--------------------------------------------------------//
// Coefficients of Gauss-Lobatto interpolant polynomial //
//--------------------------------------------------------//
void Ortho_poly::coef_interpolant_GL(double (*f)(double),
double* cf) const {
// Values of the function at the Gauss-Lobatto nodes
double* ff = new double[nn+1] ;
for (int i=0; i<=nn; i++) ff[i] = f( gauss_lobatto_nodes()(i) ) ;
// Computation of the coefficients
for (int i=0; i<=nn; i++) {
double sum = 0 ;
for (int j=0; j<=nn; j++) {
sum += ff[j] * operator()(i, gauss_lobatto_nodes()(j) )
* gauss_lobatto_weight(j) ;
}
cf[i] = sum / gauss_lobatto_gamma(i) ;
}
delete [] ff ;
}
//----------------------------------------//
// Values of the interpolant polynomial //
//----------------------------------------//
double Ortho_poly::series(const double* a, double x) const {
double sum = 0 ;
for (int i=0; i<=nn; i++) {
sum += a[i] * operator()(i, x) ;
}
return sum ;
}
|