Line data Source code
1 0 : // Distributed under the MIT License. 2 : // See LICENSE.txt for details. 3 : 4 : #pragma once 5 : 6 : #include "Evolution/Systems/Ccz4/Ccz4WrappedGr.hpp" 7 : #include "PointwiseFunctions/AnalyticSolutions/GeneralRelativity/KerrSchild.hpp" 8 : #include "PointwiseFunctions/AnalyticSolutions/GeneralRelativity/Minkowski.hpp" 9 : #include "PointwiseFunctions/AnalyticSolutions/GeneralRelativity/TrumpetSchwarzschild.hpp" 10 : #include "Utilities/TMPL.hpp" 11 : 12 : namespace Ccz4::Solutions { 13 : /// \brief List of all Ccz4 analytic solutions 14 : /// Right now it only makes sense to do TrumpetSchwarzschild or time-independent 15 : /// solutions because we can either use 1+log slicing with Gamma-driver 16 : /// or not evolve the lapse and shift at all. We will allow analytic 17 : /// lapse and shift in the future. 18 1 : using all_solutions = 19 : tmpl::list<Ccz4WrappedGr<gr::Solutions::KerrSchild>, 20 : Ccz4WrappedGr<gr::Solutions::Minkowski<3>>, 21 : Ccz4WrappedGr<gr::Solutions::TrumpetSchwarzschild>>; 22 : } // namespace Ccz4::Solutions