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 199 200 201
|
/*
* Methods of class Time_slice to access the various fields
*
* (see file time_slice.h for documentation).
*
*/
/*
* Copyright (c) 2004 Eric Gourgoulhon, Jose Luis Jaramillo & Jerome Novak
*
* 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 version 2
* as published by the Free Software Foundation.
*
* 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 time_slice_access_C[] = "$Header: /cvsroot/Lorene/C++/Source/Time_slice/time_slice_access.C,v 1.9 2014/10/13 08:53:47 j_novak Exp $" ;
/*
* $Id: time_slice_access.C,v 1.9 2014/10/13 08:53:47 j_novak Exp $
* $Log: time_slice_access.C,v $
* Revision 1.9 2014/10/13 08:53:47 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.8 2014/10/06 15:13:21 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.7 2008/12/02 15:02:22 j_novak
* Implementation of the new constrained formalism, following Cordero et al. 2009
* paper. The evolution eqs. are solved as a first-order system. Not tested yet!
*
* Revision 1.6 2004/05/12 15:24:20 e_gourgoulhon
* Reorganized the #include 's, taking into account that
* time_slice.h contains now an #include "metric.h".
*
* Revision 1.5 2004/04/05 11:52:36 j_novak
* First operational (but not tested!) version of checks of Eintein equation.
*
* Revision 1.4 2004/04/01 16:09:02 j_novak
* Trace of K_ij is now member of Time_slice (it was member of Time_slice_conf).
* Added new methods for checking 3+1 Einstein equations (preliminary).
*
* Revision 1.3 2004/03/29 12:00:16 e_gourgoulhon
* Computation of extrinsic curvature now performed via new methods
* Vector::ope_killing.
*
* Revision 1.2 2004/03/28 21:29:45 e_gourgoulhon
* Evolution_std's renamed with suffix "_evol"
* Method gam() modified
* Added special constructor for derived classes.
*
* Revision 1.1 2004/03/26 13:33:02 j_novak
* New methods for accessing/updating members (nn(), beta(), gam_uu(), k_uu(), ...)
*
*
*
* $Header: /cvsroot/Lorene/C++/Source/Time_slice/time_slice_access.C,v 1.9 2014/10/13 08:53:47 j_novak Exp $
*
*/
// C headers
#include <cassert>
// Lorene headers
#include "time_slice.h"
namespace Lorene {
const Scalar& Time_slice::nn() const {
assert( n_evol.is_known(jtime) ) ;
return n_evol[jtime] ;
}
const Vector& Time_slice::beta() const {
assert( beta_evol.is_known(jtime) ) ;
return beta_evol[jtime] ;
}
const Metric& Time_slice::gam() const {
if (p_gamma == 0x0) {
gam_dd() ; // may force the computation of p_gamma
if (p_gamma == 0x0) p_gamma = new Metric( gam_dd() ) ;
}
return *p_gamma ;
}
const Sym_tensor& Time_slice::gam_dd() const {
if (!( gam_dd_evol.is_known(jtime)) ) {
assert( gam_uu_evol.is_known(jtime) ) ;
if (p_gamma == 0x0) {
p_gamma = new Metric( gam_uu_evol[jtime] ) ;
}
gam_dd_evol.update(p_gamma->cov(), jtime, the_time[jtime] ) ;
}
return gam_dd_evol[jtime] ;
}
const Sym_tensor& Time_slice::gam_uu() const {
if (!( gam_uu_evol.is_known(jtime)) ) {
assert( gam_dd_evol.is_known(jtime) ) ;
gam_uu_evol.update(gam().con(), jtime, the_time[jtime] ) ;
}
return gam_uu_evol[jtime] ;
}
const Sym_tensor& Time_slice::k_dd() const {
if ( ! (k_dd_evol.is_known(jtime)) ) {
Vector beta_d = beta().down(0, gam()) ;
gam_dd() ; // to make sure that gam_dd is up to date before taking its
// time derivative
Sym_tensor resu = beta_d.ope_killing(gam())
- gam_dd_evol.time_derive(jtime, scheme_order) ;
resu = resu / (2*nn()) ;
k_dd_evol.update(resu, jtime, the_time[jtime]) ;
}
return k_dd_evol[jtime] ;
}
const Sym_tensor& Time_slice::k_uu() const {
if ( ! (k_uu_evol.is_known(jtime)) ) {
gam_uu() ; // to make sure that gam_uu is up to date before taking its
// time derivative
Sym_tensor resu = beta().ope_killing(gam())
+ gam_uu_evol.time_derive(jtime, scheme_order) ;
resu = resu / (2*nn()) ;
k_uu_evol.update(resu, jtime, the_time[jtime]) ;
}
return k_uu_evol[jtime] ;
}
const Scalar& Time_slice::trk() const {
if ( ! (trk_evol.is_known(jtime)) ) {
if ( k_uu_evol.is_known(jtime) )
trk_evol.update( k_uu().trace(gam()), jtime, the_time[jtime] ) ;
else
trk_evol.update( k_dd().trace(gam()), jtime, the_time[jtime] ) ;
}
return trk_evol[jtime] ;
}
}
|