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
|
/*
* Copyright (c) 2003 Eric Gourgoulhon & Jerome Novak
*
* Copyright (c) 2000-2001 Philippe Grandclement (for preceding Cmp version)
*
* 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
*
*/
char scalar_raccord_C[] = "$Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_raccord.C,v 1.4 2014/10/13 08:53:47 j_novak Exp $" ;
/*
* $Id: scalar_raccord.C,v 1.4 2014/10/13 08:53:47 j_novak Exp $
* $Log: scalar_raccord.C,v $
* Revision 1.4 2014/10/13 08:53:47 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.3 2014/10/06 15:16:16 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.2 2003/10/01 13:04:44 e_gourgoulhon
* The method Tensor::get_mp() returns now a reference (and not
* a pointer) onto a mapping.
*
* Revision 1.1 2003/09/25 08:58:10 e_gourgoulhon
* First version.
*
*
* $Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_raccord.C,v 1.4 2014/10/13 08:53:47 j_novak Exp $
*
*/
//standard
#include <cstdlib>
// LORENE
#include "tensor.h"
#include "proto.h"
#include "matrice.h"
namespace Lorene {
Matrice matrice_raccord_pair (int cont, double alpha_kernel) ;
Matrice matrice_raccord_impair (int cont, double alpha_kernel) ;
Tbl sec_membre_raccord (Tbl coef, int cont, double alpha_shell) ;
Tbl regularise (Tbl coef, int nr, int base_r) ;
void Scalar::raccord (int aux) {
assert (etat != ETATNONDEF) ;
assert (aux >=0) ;
int cont = aux+1 ;
const Map_af* mapping = dynamic_cast<const Map_af*>( mp ) ;
if (mapping == 0x0) {
cout <<
"Scalar::raccord : The mapping does not belong to the class Map_af !"
<< endl ;
abort() ;
}
assert (mapping->get_mg()->get_type_r(1) == FIN) ;
assert (mapping->get_mg()->get_type_r(0) == RARE) ;
// On passe en Ylm et vire tout dans la zone interne...
va.coef() ;
va.ylm() ;
va.set_etat_cf_qcq() ;
va.c_cf->t[0]->annule_hard() ;
// Confort :
int nz = mapping->get_mg()->get_nzone() ;
int nbrer_kernel = mapping->get_mg()->get_nr(0) ;
int nbrer_shell = mapping->get_mg()->get_nr(1) ;
int nbret_kernel = mapping->get_mg()->get_nt(0) ;
int nbret_shell = mapping->get_mg()->get_nt(1) ;
int nbrep_kernel = mapping->get_mg()->get_np(0) ;
int nbrep_shell = mapping->get_mg()->get_np(1) ;
double alpha_kernel = mapping->get_alpha()[0] ;
double alpha_shell = mapping->get_alpha()[1] ;
int base_r, m_quant, l_quant ;
for (int k=0 ; k<nbrep_kernel+1 ; k++)
for (int j=0 ; j<nbret_kernel ; j++)
if (nullite_plm(j, nbret_kernel, k,nbrep_kernel, va.base) == 1)
if (nullite_plm(j, nbret_shell, k, nbrep_shell, va.base) == 1)
{
// calcul des nombres quantiques :
donne_lm(nz, 0, j, k, va.base, m_quant, l_quant, base_r) ;
assert ((base_r == R_CHEBP) || (base_r == R_CHEBI)) ;
Matrice systeme(cont, cont) ;
Tbl facteur (nbrer_kernel) ;
facteur.annule_hard() ;
for (int i=0 ; i<nbrer_shell ; i++)
if (i<nbrer_kernel)
facteur.set(i) = (*va.c_cf)(1, k, j, i) ;
Tbl sec_membre (sec_membre_raccord (facteur, cont, alpha_shell)) ;
if (base_r == R_CHEBP)
systeme = matrice_raccord_pair (cont, alpha_kernel) ;
else
systeme = matrice_raccord_impair (cont, alpha_kernel) ;
Tbl soluce (systeme.inverse(sec_membre)) ;
Tbl regulier (nbrer_kernel) ;
if (l_quant == 0)
for (int i=0 ; i<cont ; i++)
va.c_cf->set(0, k, j, i) = soluce(i) ;
else {
if (l_quant %2 == 0)
regulier = regularise (soluce, nbrer_kernel, R_CHEBP) ;
else
regulier = regularise (soluce, nbrer_kernel, R_CHEBI) ;
for (int i=0 ; i<nbrer_kernel ; i++)
va.c_cf->set(0, k, j, i) = regulier(i) ;
}
}
va.ylm_i() ;
}
}
|