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
|
/*
* Computation of Legendre Gauss-Lobatto nodes and weights
*/
/*
* Copyright (c) 2005 Philippe Grandclment
*
* 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: legendre_nodes.C,v 1.2 2014/10/06 15:09:48 j_novak Exp $
* $Log: legendre_nodes.C,v $
* Revision 1.2 2014/10/06 15:09:48 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.1 2005/11/14 01:56:59 e_gourgoulhon
* First version
*
*
* $Header: /cvsroot/Lorene/School05/Monday/legendre_nodes.C,v 1.2 2014/10/06 15:09:48 j_novak Exp $
*
*/
#include <iostream>
using namespace std ;
#include<cmath>
#include<cstdlib>
void legendre_poly_der(int n, double& poly, double& pder, double& polym1,
double& pderm1, double& polym2, double& pderm2, double x) {
if (n==0) {
poly = 1 ;
pder = 0 ;
}
else
if (n==1) {
polym1 = 1 ;
pderm1 = 0 ;
poly = x ;
pder = 1 ;
}
else {
polym1 = 1 ;
pderm1 = 0 ;
poly = x ;
pder = 1 ;
for (int i=1 ; i<n ; i++) {
polym2 = polym1 ;
pderm2 = pderm1 ;
polym1 = poly ;
pderm1 = pder ;
poly = ((2*i+1)*x*polym1 - i*polym2)/(i+1) ;
pder = ((2*i+1)*polym1+(2*i+1)*x*pderm1-i*pderm2)/(i+1) ;
}
}
}
void legendre_nodes_weight_GL(int n, double* coloc, double* weight, double prec,
int itemax) {
double x_plus = 1 ;
double x_moins = -1 ;
double p_plus, dp_plus, p_plus_m1, dp_plus_m1, p_plus_m2, dp_plus_m2 ;
double p_moins, dp_moins, p_moins_m1, dp_moins_m1, p_moins_m2, dp_moins_m2 ;
double p, dp, p_m1, dp_m1, p_m2, dp_m2 ;
legendre_poly_der(n, p_plus, dp_plus, p_plus_m1, dp_plus_m1, p_plus_m2,
dp_plus_m2, x_plus) ;
legendre_poly_der(n, p_moins, dp_moins, p_moins_m1, dp_moins_m1,
p_moins_m2, dp_moins_m2, x_moins) ;
double det = p_plus_m1*p_moins_m2 - p_moins_m1*p_plus_m2 ;
double r_plus = -p_plus ;
double r_moins = -p_moins ;
double a = (r_plus*p_moins_m2 - r_moins*p_plus_m2)/det ;
double b = (r_moins*p_plus_m1 - r_plus*p_moins_m1)/det ;
coloc[n-1] = 1 ;
double dth = M_PI/(2*n+1) ;
double cd = cos (2*dth) ;
double sd = sin (2*dth) ;
double cs = cos(dth) ;
double ss = sin(dth) ;
int borne_sup = (n%2==0) ?
n/2 : (n+1)/2 ;
for (int j=1 ; j<borne_sup ; j++) {
double x = cs ;
bool loop = true ;
int ite = 0 ;
while (loop) {
legendre_poly_der(n, p, dp, p_m1, dp_m1, p_m2, dp_m2, x) ;
double poly = p + a*p_m1 + b*p_m2 ;
double pder = dp + a * dp_m1 + b*dp_m2 ;
double sum = 0 ;
for (int i=0 ; i<j ; i++)
sum += 1./(x-coloc[n-i-1]) ;
double increm = -poly/(pder-sum*poly) ;
x += increm ;
ite ++ ;
if ((fabs(increm) < prec) || (ite >itemax))
loop = false ;
}
if (ite > itemax) {
cout << "legendre_poly_der: too many iterations !..." << endl ;
abort() ;
}
coloc[n-j-1] = x ;
double auxi = cs*cd-ss*sd ;
ss = cs*sd+ss*cd ;
cs = auxi ;
}
if (n%2==1)
coloc[(n-1)/2] = 0 ;
// Copy of the symetric ones :
for (int i=0 ; i<borne_sup ; i++)
coloc[i] = - coloc[n-i-1] ;
for (int i=0 ; i<n ; i++) {
legendre_poly_der(n-1, p, dp, p_m1, dp_m1, p_m2, dp_m2, coloc[i]) ;
weight[i] = 2./(n-1)/n/p/p ;
}
}
|