00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00038 #ifndef __Schwarzschild_HPP
00039 #define __Schwarzschild_HPP "Created 27.02.2001 21:42:27 by werner"
00040
00041 #include "Geodesic.hpp"
00042 #include <eagle/STA.hpp>
00043
00044 namespace Traum
00045 {
00046 using namespace Eagle;
00047
00051 struct Schwarzschild : Chart<STA::SphericalChart4D>
00052 {
00053 typedef Chart<STA::SphericalChart4D> Polar4Dd;
00054
00055 using Polar4Dd::Point_t;
00056 using Polar4Dd::Scalar_t;
00057 using Polar4Dd::Vector_t;
00058 using Polar4Dd::Metric;
00059 using Polar4Dd::Christoffel;
00060
00061 enum
00062 {
00063 t = Polar4Dd::T,
00064 h = Polar4Dd::THETA,
00065 p = Polar4Dd::PHI,
00066 r = Polar4Dd::R
00067 };
00068
00069 Scalar_t m;
00070
00071 Schwarzschild(const Scalar_t&mass)
00072 : m(mass)
00073 {}
00074
00075 void getMetric(Metric&g, const Point_t&P) const
00076 {
00077 Scalar_t sinTheta = sin(P[h]);
00078
00079 g.set(0);
00080 g(t,t) = 1 - 2*m/P[r];
00081 g(r,r) = -1/g(t,t);
00082 g(h,h) = -P[r]*P[r];
00083 g(p,p) = g(h,h)*sinTheta*sinTheta ;
00084 }
00085
00086 void getChristoffel(Christoffel_t&G, const Point_t&P) const
00087 {
00088 Scalar_t sinTheta = sin(P[h]);
00089 G.set(0.0);
00090 G(t,t,r) = G(t,r,r) = m/P[r]/(P[r] - 2*m);
00091 G(r,t,t) = m*(1 - 2*m/P[r]) / (P[r] * P[r] );
00092 G(r,r,r) = -G(t,t,r);
00093 G(r,h,h) = 2*m - P[r];
00094 G(r,p,p) = G(r,h,h)*sinTheta*sinTheta;
00095 G(h,r,h) = G(h,h,r)= 1/P[r];
00096 G(h,p,p) = -sinTheta*cos( P[h] );
00097 G(p,r,p) = G(p,p,r) = G(h,r,h);
00098 G(p,h,p) = G(p,p,h) = 1/tan( P[h] );
00099 }
00100 };
00101
00102 }
00103
00104 #endif