Line data Source code
1 0 : // Distributed under the MIT License.
2 : // See LICENSE.txt for details.
3 :
4 : #pragma once
5 :
6 : #include <cstdint>
7 : #include <optional>
8 : #include <vector>
9 :
10 : #include "ControlSystem/Actions/InitializeMeasurements.hpp"
11 : #include "ControlSystem/Actions/LimitTimeStep.hpp"
12 : #include "ControlSystem/CleanFunctionsOfTime.hpp"
13 : #include "ControlSystem/Component.hpp"
14 : #include "ControlSystem/ControlErrors/Size/Factory.hpp"
15 : #include "ControlSystem/ControlErrors/Size/State.hpp"
16 : #include "ControlSystem/Measurements/BothHorizons.hpp"
17 : #include "ControlSystem/Metafunctions.hpp"
18 : #include "ControlSystem/Systems/Expansion.hpp"
19 : #include "ControlSystem/Systems/Rotation.hpp"
20 : #include "ControlSystem/Systems/Shape.hpp"
21 : #include "ControlSystem/Systems/Size.hpp"
22 : #include "ControlSystem/Systems/Skew.hpp"
23 : #include "ControlSystem/Systems/Translation.hpp"
24 : #include "ControlSystem/Trigger.hpp"
25 : #include "DataStructures/DataBox/PrefixHelpers.hpp"
26 : #include "DataStructures/DataBox/Tag.hpp"
27 : #include "DataStructures/LinkedMessageId.hpp"
28 : #include "DataStructures/Tensor/EagerMath/RaiseOrLowerIndex.hpp"
29 : #include "Domain/Creators/BinaryCompactObject.hpp"
30 : #include "Domain/Creators/CylindricalBinaryCompactObject.hpp"
31 : #include "Domain/Structure/ObjectLabel.hpp"
32 : #include "Domain/Tags.hpp"
33 : #include "Domain/TagsCharacteristicSpeeds.hpp"
34 : #include "Evolution/Actions/RunEventsAndDenseTriggers.hpp"
35 : #include "Evolution/Actions/RunEventsAndTriggers.hpp"
36 : #include "Evolution/BoundaryCorrection.hpp"
37 : #include "Evolution/ComputeTags.hpp"
38 : #include "Evolution/DiscontinuousGalerkin/Actions/ApplyBoundaryCorrections.hpp"
39 : #include "Evolution/DiscontinuousGalerkin/Actions/ComputeTimeDerivative.hpp"
40 : #include "Evolution/DiscontinuousGalerkin/CleanMortarHistory.hpp"
41 : #include "Evolution/DiscontinuousGalerkin/DgElementArray.hpp"
42 : #include "Evolution/DiscontinuousGalerkin/EqualRateLts/ChangeFixedLtsRatio.hpp"
43 : #include "Evolution/DiscontinuousGalerkin/EqualRateLts/FixedLtsRatio.hpp"
44 : #include "Evolution/DiscontinuousGalerkin/EqualRateLts/NonconformingEqualRateRegions.hpp"
45 : #include "Evolution/DiscontinuousGalerkin/Initialization/Mortars.hpp"
46 : #include "Evolution/DiscontinuousGalerkin/Initialization/ProjectSpectralFilters.hpp"
47 : #include "Evolution/DiscontinuousGalerkin/Initialization/SetupEqualRateRegions.hpp"
48 : #include "Evolution/DiscontinuousGalerkin/Initialization/SpectralFilters.hpp"
49 : #include "Evolution/Executables/GeneralizedHarmonic/Deadlock.hpp"
50 : #include "Evolution/Initialization/DgDomain.hpp"
51 : #include "Evolution/Initialization/Evolution.hpp"
52 : #include "Evolution/Initialization/NonconservativeSystem.hpp"
53 : #include "Evolution/Systems/Cce/Callbacks/DumpBondiSachsOnWorldtube.hpp"
54 : #include "Evolution/Systems/GeneralizedHarmonic/Actions/SetInitialData.hpp"
55 : #include "Evolution/Systems/GeneralizedHarmonic/Bbh/Callbacks/UpdateCompletionCriteria.hpp"
56 : #include "Evolution/Systems/GeneralizedHarmonic/Bbh/CompletionCriteria.hpp"
57 : #include "Evolution/Systems/GeneralizedHarmonic/Bbh/CompletionSingleton.hpp"
58 : #include "Evolution/Systems/GeneralizedHarmonic/Bbh/Events/CheckConstraintThresholds.hpp"
59 : #include "Evolution/Systems/GeneralizedHarmonic/Bbh/PhaseControl/CheckpointAndExitIfComplete.hpp"
60 : #include "Evolution/Systems/GeneralizedHarmonic/BoundaryConditions/Bjorhus.hpp"
61 : #include "Evolution/Systems/GeneralizedHarmonic/BoundaryConditions/DemandOutgoingCharSpeeds.hpp"
62 : #include "Evolution/Systems/GeneralizedHarmonic/BoundaryConditions/DirichletMinkowski.hpp"
63 : #include "Evolution/Systems/GeneralizedHarmonic/BoundaryConditions/Factory.hpp"
64 : #include "Evolution/Systems/GeneralizedHarmonic/BoundaryCorrections/Factory.hpp"
65 : #include "Evolution/Systems/GeneralizedHarmonic/Characteristics.hpp"
66 : #include "Evolution/Systems/GeneralizedHarmonic/Equations.hpp"
67 : #include "Evolution/Systems/GeneralizedHarmonic/GaugeSourceFunctions/Factory.hpp"
68 : #include "Evolution/Systems/GeneralizedHarmonic/GaugeSourceFunctions/Gauges.hpp"
69 : #include "Evolution/Systems/GeneralizedHarmonic/GaugeSourceFunctions/SetPiAndPhiFromConstraints.hpp"
70 : #include "Evolution/Systems/GeneralizedHarmonic/GaugeSourceFunctions/Tags/GaugeCondition.hpp"
71 : #include "Evolution/Systems/GeneralizedHarmonic/Initialize.hpp"
72 : #include "Evolution/Systems/GeneralizedHarmonic/SpectralFilter.hpp"
73 : #include "Evolution/Systems/GeneralizedHarmonic/System.hpp"
74 : #include "Evolution/Systems/GeneralizedHarmonic/Tags.hpp"
75 : #include "Evolution/Triggers/SeparationLessThan.hpp"
76 : #include "Evolution/TypeTraits.hpp"
77 : #include "IO/Importers/Actions/RegisterWithElementDataReader.hpp"
78 : #include "IO/Importers/ElementDataReader.hpp"
79 : #include "IO/Observer/Actions/ObserverRegistration.hpp"
80 : #include "IO/Observer/Actions/RegisterEvents.hpp"
81 : #include "IO/Observer/Helpers.hpp"
82 : #include "IO/Observer/ObserverComponent.hpp"
83 : #include "IO/Observer/Tags.hpp"
84 : #include "NumericalAlgorithms/DiscontinuousGalerkin/Tags.hpp"
85 : #include "NumericalAlgorithms/LinearOperators/Filters/Factory.hpp"
86 : #include "NumericalAlgorithms/LinearOperators/Filters/Tag.hpp"
87 : #include "NumericalAlgorithms/Strahlkorper/IO/InitialShapeFromFile.hpp"
88 : #include "NumericalAlgorithms/Strahlkorper/InitialShape.hpp"
89 : #include "Options/Options.hpp"
90 : #include "Options/ParseOptions.hpp"
91 : #include "Options/Protocols/FactoryCreation.hpp"
92 : #include "Options/String.hpp"
93 : #include "Parallel/Algorithms/AlgorithmSingleton.hpp"
94 : #include "Parallel/ArrayCollection/DgElementCollection.hpp"
95 : #include "Parallel/ArrayCollection/SimpleActionOnElement.hpp"
96 : #include "Parallel/GlobalCache.hpp"
97 : #include "Parallel/Invoke.hpp"
98 : #include "Parallel/Local.hpp"
99 : #include "Parallel/MemoryMonitor/MemoryMonitor.hpp"
100 : #include "Parallel/Phase.hpp"
101 : #include "Parallel/PhaseControl/CheckpointAndExitAfterWallclock.hpp"
102 : #include "Parallel/PhaseControl/ExecutePhaseChange.hpp"
103 : #include "Parallel/PhaseControl/Factory.hpp"
104 : #include "Parallel/PhaseControl/VisitAndReturn.hpp"
105 : #include "Parallel/PhaseDependentActionList.hpp"
106 : #include "Parallel/Protocols/RegistrationMetavariables.hpp"
107 : #include "Parallel/Reduction.hpp"
108 : #include "ParallelAlgorithms/Actions/AddComputeTags.hpp"
109 : #include "ParallelAlgorithms/Actions/FunctionsOfTimeAreReady.hpp"
110 : #include "ParallelAlgorithms/Actions/InitializeItems.hpp"
111 : #include "ParallelAlgorithms/Actions/MemoryMonitor/ContributeMemoryData.hpp"
112 : #include "ParallelAlgorithms/Actions/MutateApply.hpp"
113 : #include "ParallelAlgorithms/Actions/SpectralFilter.hpp"
114 : #include "ParallelAlgorithms/Actions/TerminatePhase.hpp"
115 : #include "ParallelAlgorithms/Amr/Actions/CollectDataFromChildren.hpp"
116 : #include "ParallelAlgorithms/Amr/Actions/Component.hpp"
117 : #include "ParallelAlgorithms/Amr/Actions/CreateChild.hpp"
118 : #include "ParallelAlgorithms/Amr/Actions/Initialize.hpp"
119 : #include "ParallelAlgorithms/Amr/Actions/SendAmrDiagnostics.hpp"
120 : #include "ParallelAlgorithms/Amr/Criteria/Constraints.hpp"
121 : #include "ParallelAlgorithms/Amr/Criteria/Criterion.hpp"
122 : #include "ParallelAlgorithms/Amr/Criteria/Factory.hpp"
123 : #include "ParallelAlgorithms/Amr/Events/ObserveAmrCriteria.hpp"
124 : #include "ParallelAlgorithms/Amr/Events/ObserveAmrStats.hpp"
125 : #include "ParallelAlgorithms/Amr/Events/RefineMesh.hpp"
126 : #include "ParallelAlgorithms/Amr/Projectors/CopyFromCreatorOrLeaveAsIs.hpp"
127 : #include "ParallelAlgorithms/Amr/Projectors/DefaultInitialize.hpp"
128 : #include "ParallelAlgorithms/Amr/Projectors/Tensors.hpp"
129 : #include "ParallelAlgorithms/Amr/Projectors/Variables.hpp"
130 : #include "ParallelAlgorithms/Amr/Protocols/AmrMetavariables.hpp"
131 : #include "ParallelAlgorithms/ApparentHorizonFinder/Callbacks/FailedHorizonFind.hpp"
132 : #include "ParallelAlgorithms/ApparentHorizonFinder/Callbacks/ObserveCenters.hpp"
133 : #include "ParallelAlgorithms/ApparentHorizonFinder/Callbacks/ObserveFieldsOnHorizon.hpp"
134 : #include "ParallelAlgorithms/ApparentHorizonFinder/Callbacks/ObserveTimeSeriesOnHorizon.hpp"
135 : #include "ParallelAlgorithms/ApparentHorizonFinder/Callbacks/SendDependencyToObserverWriter.hpp"
136 : #include "ParallelAlgorithms/ApparentHorizonFinder/Component.hpp"
137 : #include "ParallelAlgorithms/ApparentHorizonFinder/Criteria/Criterion.hpp"
138 : #include "ParallelAlgorithms/ApparentHorizonFinder/Criteria/Factory.hpp"
139 : #include "ParallelAlgorithms/ApparentHorizonFinder/Destination.hpp"
140 : #include "ParallelAlgorithms/ApparentHorizonFinder/Events/FindApparentHorizon.hpp"
141 : #include "ParallelAlgorithms/ApparentHorizonFinder/Events/FindCommonHorizon.hpp"
142 : #include "ParallelAlgorithms/ApparentHorizonFinder/HorizonAliases.hpp"
143 : #include "ParallelAlgorithms/ApparentHorizonFinder/KerrSchild.hpp"
144 : #include "ParallelAlgorithms/ApparentHorizonFinder/Protocols/HorizonMetavars.hpp"
145 : #include "ParallelAlgorithms/ApparentHorizonFinder/Tags.hpp"
146 : #include "ParallelAlgorithms/Events/ChangeFixedLtsRatio.hpp"
147 : #include "ParallelAlgorithms/Events/Completion.hpp"
148 : #include "ParallelAlgorithms/Events/Factory.hpp"
149 : #include "ParallelAlgorithms/Events/MonitorMemory.hpp"
150 : #include "ParallelAlgorithms/Events/ObserveTimeStepVolume.hpp"
151 : #include "ParallelAlgorithms/EventsAndDenseTriggers/DenseTrigger.hpp"
152 : #include "ParallelAlgorithms/EventsAndDenseTriggers/DenseTriggers/Factory.hpp"
153 : #include "ParallelAlgorithms/EventsAndTriggers/Actions/RunEventsOnFailure.hpp"
154 : #include "ParallelAlgorithms/EventsAndTriggers/Event.hpp"
155 : #include "ParallelAlgorithms/EventsAndTriggers/EventsAndTriggers.hpp"
156 : #include "ParallelAlgorithms/EventsAndTriggers/LogicalTriggers.hpp"
157 : #include "ParallelAlgorithms/EventsAndTriggers/Trigger.hpp"
158 : #include "ParallelAlgorithms/Interpolation/Actions/ElementInitInterpPoints.hpp"
159 : #include "ParallelAlgorithms/Interpolation/Actions/InitializeInterpolationTarget.hpp"
160 : #include "ParallelAlgorithms/Interpolation/Callbacks/ObserveSurfaceData.hpp"
161 : #include "ParallelAlgorithms/Interpolation/Callbacks/ObserveTimeSeriesOnSurface.hpp"
162 : #include "ParallelAlgorithms/Interpolation/ComputeExcisionBoundaryVolumeQuantities.hpp"
163 : #include "ParallelAlgorithms/Interpolation/ComputeExcisionBoundaryVolumeQuantities.tpp"
164 : #include "ParallelAlgorithms/Interpolation/Events/InterpolateWithoutInterpComponent.hpp"
165 : #include "ParallelAlgorithms/Interpolation/InterpolationTarget.hpp"
166 : #include "ParallelAlgorithms/Interpolation/Protocols/InterpolationTargetTag.hpp"
167 : #include "ParallelAlgorithms/Interpolation/Tags.hpp"
168 : #include "ParallelAlgorithms/Interpolation/Targets/Sphere.hpp"
169 : #include "PointwiseFunctions/GeneralRelativity/Christoffel.hpp"
170 : #include "PointwiseFunctions/GeneralRelativity/DerivativeSpatialMetric.hpp"
171 : #include "PointwiseFunctions/GeneralRelativity/DetAndInverseSpatialMetric.hpp"
172 : #include "PointwiseFunctions/GeneralRelativity/GeneralizedHarmonic/ConstraintGammas.hpp"
173 : #include "PointwiseFunctions/GeneralRelativity/GeneralizedHarmonic/DerivSpatialMetric.hpp"
174 : #include "PointwiseFunctions/GeneralRelativity/GeneralizedHarmonic/ExtrinsicCurvature.hpp"
175 : #include "PointwiseFunctions/GeneralRelativity/GeneralizedHarmonic/SpatialDerivOfLapse.hpp"
176 : #include "PointwiseFunctions/GeneralRelativity/GeneralizedHarmonic/SpatialDerivOfShift.hpp"
177 : #include "PointwiseFunctions/GeneralRelativity/Psi4Real.hpp"
178 : #include "PointwiseFunctions/GeneralRelativity/Ricci.hpp"
179 : #include "PointwiseFunctions/GeneralRelativity/Surfaces/Tags.hpp"
180 : #include "PointwiseFunctions/GeneralRelativity/Tags.hpp"
181 : #include "PointwiseFunctions/GeneralRelativity/WeylElectric.hpp"
182 : #include "PointwiseFunctions/GeneralRelativity/WeylTypeD1.hpp"
183 : #include "PointwiseFunctions/InitialDataUtilities/InitialData.hpp"
184 : #include "PointwiseFunctions/MathFunctions/Factory.hpp"
185 : #include "PointwiseFunctions/MathFunctions/MathFunction.hpp"
186 : #include "Time/Actions/SelfStartActions.hpp"
187 : #include "Time/AdvanceTime.hpp"
188 : #include "Time/ChangeSlabSize/Action.hpp"
189 : #include "Time/ChangeSlabSize/Tags.hpp"
190 : #include "Time/ChangeTimeStepperOrder.hpp"
191 : #include "Time/CleanHistory.hpp"
192 : #include "Time/RecordTimeStepperData.hpp"
193 : #include "Time/StepChoosers/Factory.hpp"
194 : #include "Time/StepChoosers/StepChooser.hpp"
195 : #include "Time/Tags/StepperErrors.hpp"
196 : #include "Time/Tags/Time.hpp"
197 : #include "Time/Tags/TimeStepId.hpp"
198 : #include "Time/TimeSequence.hpp"
199 : #include "Time/TimeSteppers/Factory.hpp"
200 : #include "Time/TimeSteppers/TimeStepper.hpp"
201 : #include "Time/Triggers/TimeTriggers.hpp"
202 : #include "Time/UpdateU.hpp"
203 : #include "Utilities/Algorithm.hpp"
204 : #include "Utilities/ErrorHandling/Error.hpp"
205 : #include "Utilities/Functional.hpp"
206 : #include "Utilities/GetOutput.hpp"
207 : #include "Utilities/NoSuchType.hpp"
208 : #include "Utilities/ProtocolHelpers.hpp"
209 : #include "Utilities/TMPL.hpp"
210 :
211 : // Check if SpEC is linked and therefore we can load SpEC initial data
212 : #ifdef HAS_SPEC_EXPORTER
213 : #include "PointwiseFunctions/AnalyticData/GeneralRelativity/SpecInitialData.hpp"
214 : using SpecInitialData = gr::AnalyticData::SpecInitialData;
215 : #else
216 0 : using SpecInitialData = NoSuchType;
217 : #endif
218 :
219 : /// \cond
220 : namespace Frame {
221 :
222 : struct Inertial;
223 : } // namespace Frame
224 : namespace PUP {
225 : class er;
226 : } // namespace PUP
227 : namespace Parallel {
228 : template <typename Metavariables>
229 : class CProxy_GlobalCache;
230 : } // namespace Parallel
231 : /// \endcond
232 :
233 : // Note: this executable does not use GeneralizedHarmonicBase.hpp, because
234 : // using it would require a number of changes in GeneralizedHarmonicBase.hpp
235 : // that would apply only when evolving binary black holes. This would
236 : // require adding a number of compile-time switches, an outcome we would prefer
237 : // to avoid.
238 : struct EvolutionMetavars {
239 : struct BondiSachs;
240 :
241 : static constexpr size_t volume_dim = 3;
242 0 : static constexpr bool use_damped_harmonic_rollon = false;
243 0 : using system = gh::System<volume_dim>;
244 0 : using temporal_id = Tags::TimeStepId;
245 :
246 : static constexpr bool use_dg_element_collection = false;
247 :
248 0 : using initialize_initial_data_dependent_quantities_actions =
249 : tmpl::list<gh::gauges::SetPiAndPhiFromConstraints<
250 : gh::Solutions::all_solutions<volume_dim>, volume_dim>,
251 : Parallel::Actions::TerminatePhase>;
252 :
253 : // NOLINTNEXTLINE(google-runtime-references)
254 0 : void pup(PUP::er& /*p*/) {}
255 :
256 : template <::domain::ObjectLabel Horizon, typename Frame>
257 0 : struct Ah : tt::ConformsTo<ah::protocols::HorizonMetavars> {
258 0 : static constexpr size_t index = 10 + static_cast<size_t>(Horizon);
259 :
260 0 : using time_tag = ah::Tags::ObservationTime<index>;
261 :
262 0 : using frame = Frame;
263 :
264 0 : using horizon_find_callbacks = tmpl::append<
265 : tmpl::conditional_t<
266 : Horizon == ::domain::ObjectLabel::C,
267 : tmpl::list<ah::callbacks::SendDependencyToObserverWriter<Ah, true>,
268 : gh::bbh::callbacks::UpdateCompletionCriteria<Ah>>,
269 : tmpl::list<>>,
270 : tmpl::list<ah::callbacks::ObserveFieldsOnHorizon<
271 : ::ah::surface_tags_for_observing, Ah>,
272 : ah::callbacks::ObserveTimeSeriesOnHorizon<
273 : ::ah::tags_for_observing<Frame>, Ah>>>;
274 0 : using horizon_find_failure_callbacks = tmpl::append<
275 : // Only ignore errors for AhC
276 : tmpl::list<ah::callbacks::FailedHorizonFind<
277 : Ah, Horizon == ::domain::ObjectLabel::C>>,
278 : tmpl::conditional_t<
279 : Horizon == ::domain::ObjectLabel::C,
280 : tmpl::list<
281 : ah::callbacks::SendDependencyToObserverWriter<Ah, false>>,
282 : tmpl::list<>>>;
283 :
284 0 : using compute_tags_on_element =
285 : tmpl::list<ah::Tags::ObservationTimeCompute<index>>;
286 :
287 0 : static constexpr ah::Destination destination = ah::Destination::Observation;
288 :
289 0 : static std::string name() {
290 : return "ObservationAh" + ::domain::name(Horizon);
291 : }
292 : };
293 :
294 0 : using AhA = Ah<::domain::ObjectLabel::A, ::Frame::Distorted>;
295 0 : using AhB = Ah<::domain::ObjectLabel::B, ::Frame::Distorted>;
296 0 : using AhC = Ah<::domain::ObjectLabel::C, ::Frame::Inertial>;
297 :
298 : template <::domain::ObjectLabel Excision>
299 0 : struct ExcisionBoundary
300 : : tt::ConformsTo<intrp::protocols::InterpolationTargetTag> {
301 0 : using temporal_id = ::Tags::Time;
302 0 : using tags_to_observe =
303 : tmpl::list<gr::Tags::Lapse<DataVector>,
304 : gr::Tags::Shift<DataVector, 3, Frame::Grid>>;
305 0 : using compute_vars_to_interpolate =
306 : intrp::ComputeExcisionBoundaryVolumeQuantities;
307 0 : using vars_to_interpolate_to_target = tags_to_observe;
308 0 : using compute_items_on_source = tmpl::list<>;
309 0 : using compute_items_on_target = tmpl::list<>;
310 0 : using compute_target_points =
311 : intrp::TargetPoints::Sphere<ExcisionBoundary<Excision>, ::Frame::Grid>;
312 0 : using post_interpolation_callbacks =
313 : tmpl::list<intrp::callbacks::ObserveSurfaceData<
314 : tags_to_observe, ExcisionBoundary<Excision>, ::Frame::Grid>>;
315 : // run_callbacks
316 : template <typename metavariables>
317 0 : using interpolating_component = typename metavariables::gh_dg_element_array;
318 0 : static std::string name() {
319 : return "ObservationExcisionBoundary" + ::domain::name(Excision);
320 : }
321 : };
322 :
323 0 : using ExcisionBoundaryA = ExcisionBoundary<::domain::ObjectLabel::A>;
324 0 : using ExcisionBoundaryB = ExcisionBoundary<::domain::ObjectLabel::B>;
325 0 : using both_horizons = control_system::measurements::BothHorizons;
326 0 : using control_systems =
327 : tmpl::list<control_system::Systems::Rotation<3, both_horizons>,
328 : control_system::Systems::Expansion<2, both_horizons>,
329 : control_system::Systems::Translation<2, both_horizons, 2>,
330 : control_system::Systems::Skew<2, both_horizons>,
331 : control_system::Systems::Shape<::domain::ObjectLabel::A, 2,
332 : both_horizons>,
333 : control_system::Systems::Shape<::domain::ObjectLabel::B, 2,
334 : both_horizons>,
335 : control_system::Systems::Size<::domain::ObjectLabel::A, 2>,
336 : control_system::Systems::Size<::domain::ObjectLabel::B, 2>>;
337 :
338 0 : static constexpr bool use_control_systems =
339 : tmpl::size<control_systems>::value > 0;
340 :
341 0 : using source_vars_no_deriv =
342 : tmpl::list<gr::Tags::SpacetimeMetric<DataVector, volume_dim>,
343 : gh::Tags::Pi<DataVector, volume_dim>,
344 : gh::Tags::Phi<DataVector, volume_dim>>;
345 :
346 0 : struct BondiSachs : tt::ConformsTo<intrp::protocols::InterpolationTargetTag> {
347 0 : static std::string name() { return "BondiSachsInterpolation"; }
348 0 : using temporal_id = ::Tags::Time;
349 0 : using vars_to_interpolate_to_target = source_vars_no_deriv;
350 0 : using compute_target_points =
351 : intrp::TargetPoints::Sphere<BondiSachs, ::Frame::Inertial>;
352 0 : using post_interpolation_callbacks =
353 : tmpl::list<intrp::callbacks::DumpBondiSachsOnWorldtube<BondiSachs>>;
354 0 : using compute_items_on_target = tmpl::list<>;
355 : template <typename metavariables>
356 0 : using interpolating_component = typename metavariables::gh_dg_element_array;
357 : };
358 :
359 0 : using interpolation_target_tags = tmpl::push_back<
360 : control_system::metafunctions::interpolation_target_tags<control_systems>,
361 : BondiSachs, ExcisionBoundaryA, ExcisionBoundaryB>;
362 :
363 0 : using observe_fields = tmpl::append<
364 : tmpl::list<
365 : gr::Tags::SpacetimeMetric<DataVector, volume_dim>,
366 : gh::Tags::Pi<DataVector, volume_dim>,
367 : gh::Tags::Phi<DataVector, volume_dim>,
368 : gh::Tags::GaugeH<DataVector, volume_dim>,
369 : gh::Tags::SpacetimeDerivGaugeH<DataVector, volume_dim>,
370 : gr::Tags::Lapse<DataVector>, gr::Tags::Shift<DataVector, volume_dim>,
371 : gr::Tags::SpatialMetric<DataVector, volume_dim>,
372 : gr::Tags::DetSpatialMetric<DataVector>,
373 : gr::Tags::InverseSpatialMetric<DataVector, volume_dim>,
374 : gr::Tags::SqrtDetSpatialMetricCompute<DataVector, volume_dim,
375 : ::Frame::Inertial>,
376 : gr::Tags::SpacetimeNormalOneFormCompute<DataVector, volume_dim,
377 : ::Frame::Inertial>,
378 : gr::Tags::SpacetimeNormalVectorCompute<DataVector, volume_dim,
379 : ::Frame::Inertial>,
380 : gr::Tags::InverseSpacetimeMetricCompute<DataVector, volume_dim,
381 : ::Frame::Inertial>,
382 : gh::Tags::DerivLapseCompute<volume_dim, Frame::Inertial>,
383 : gh::Tags::DerivShiftCompute<volume_dim, Frame::Inertial>,
384 : gh::Tags::DerivSpatialMetricCompute<volume_dim, Frame::Inertial>,
385 : gr::Tags::DerivInverseSpatialMetricCompute<volume_dim,
386 : Frame::Inertial>,
387 : gh::Tags::GaugeConstraintCompute<volume_dim, ::Frame::Inertial>,
388 : gh::Tags::TwoIndexConstraintCompute<volume_dim, ::Frame::Inertial>,
389 : gh::Tags::ThreeIndexConstraintCompute<volume_dim, ::Frame::Inertial>,
390 : gh::Tags::DerivSpatialMetricCompute<volume_dim, ::Frame::Inertial>,
391 : gr::Tags::SpatialChristoffelFirstKindCompute<DataVector, volume_dim,
392 : ::Frame::Inertial>,
393 : gr::Tags::SpatialChristoffelSecondKindCompute<DataVector, volume_dim,
394 : ::Frame::Inertial>,
395 : ::Tags::DerivTensorCompute<
396 : gr::Tags::SpatialChristoffelSecondKind<DataVector, volume_dim>,
397 : ::domain::Tags::InverseJacobian<volume_dim, Frame::ElementLogical,
398 : Frame::Inertial>,
399 : ::domain::Tags::Mesh<volume_dim>>,
400 : gr::Tags::SpatialRicciCompute<DataVector, volume_dim,
401 : ::Frame::Inertial>,
402 : gr::Tags::SpatialRicciScalarCompute<DataVector, volume_dim,
403 : ::Frame::Inertial>,
404 : // observe norms of tensors
405 : ::Tags::PointwiseL2NormCompute<
406 : gr::Tags::Shift<DataVector, volume_dim>>,
407 : ::Tags::PointwiseL2NormCompute<
408 : gr::Tags::SpatialMetric<DataVector, volume_dim>>,
409 : ::Tags::PointwiseL2NormCompute<
410 : gr::Tags::SpacetimeMetric<DataVector, volume_dim>>,
411 : ::Tags::PointwiseL2NormCompute<gh::Tags::Pi<DataVector, volume_dim>>,
412 : ::Tags::PointwiseL2NormCompute<gh::Tags::Phi<DataVector, volume_dim>>,
413 : ::Tags::PointwiseL2NormCompute<
414 : gh::Tags::GaugeH<DataVector, volume_dim>>,
415 : ::Tags::PointwiseL2NormCompute<
416 : gh::Tags::SpacetimeDerivGaugeH<DataVector, volume_dim>>,
417 : // following tags added to observe constraints
418 : ::Tags::PointwiseL2NormCompute<
419 : gh::Tags::GaugeConstraint<DataVector, volume_dim>>,
420 : ::Tags::PointwiseL2NormCompute<
421 : gh::Tags::TwoIndexConstraint<DataVector, volume_dim>>,
422 : ::Tags::PointwiseL2NormCompute<
423 : gh::Tags::ThreeIndexConstraint<DataVector, volume_dim>>,
424 : ::domain::Tags::Coordinates<volume_dim, Frame::Grid>,
425 : ::domain::Tags::Coordinates<volume_dim, Frame::Inertial>>,
426 : // The 4-index constraint is only implemented in 3d
427 : tmpl::conditional_t<
428 : volume_dim == 3,
429 : tmpl::list<
430 : gh::Tags::FourIndexConstraintCompute<3, ::Frame::Inertial>,
431 : gh::Tags::FConstraintCompute<3, ::Frame::Inertial>,
432 : ::Tags::PointwiseL2NormCompute<
433 : gh::Tags::FConstraint<DataVector, 3>>,
434 : ::Tags::PointwiseL2NormCompute<
435 : gh::Tags::FourIndexConstraint<DataVector, 3>>,
436 : gh::Tags::ConstraintEnergyCompute<3, ::Frame::Inertial>,
437 : gh::Tags::NormalizedConstraintEnergyCompute<3, ::Frame::Inertial>,
438 : gh::Tags::ExtrinsicCurvatureCompute<3, ::Frame::Inertial>,
439 : ::Tags::DerivTensorCompute<
440 : gr::Tags::ExtrinsicCurvature<DataVector, 3>,
441 : ::domain::Tags::InverseJacobian<
442 : volume_dim, Frame::ElementLogical, Frame::Inertial>,
443 : ::domain::Tags::Mesh<volume_dim>>,
444 : gr::Tags::WeylElectricCompute<DataVector, 3, Frame::Inertial>,
445 : gr::Tags::WeylElectricScalarCompute<DataVector, 3,
446 : Frame::Inertial>,
447 : gr::Tags::WeylTypeD1Compute<DataVector, 3, Frame::Inertial>,
448 : gr::Tags::WeylTypeD1ScalarCompute<DataVector, 3, Frame::Inertial>,
449 : gr::Tags::Psi4RealCompute<Frame::Inertial>>,
450 : tmpl::list<>>>;
451 0 : using non_tensor_compute_tags = tmpl::list<
452 : ::Events::Tags::ObserverMeshCompute<volume_dim>,
453 : ::Events::Tags::ObserverCoordinatesCompute<volume_dim, Frame::Inertial>,
454 : ::Events::Tags::ObserverInverseJacobianCompute<
455 : volume_dim, Frame::ElementLogical, Frame::Inertial>,
456 : ::Events::Tags::ObserverJacobianCompute<volume_dim, Frame::ElementLogical,
457 : Frame::Inertial>,
458 : ::Events::Tags::ObserverDetInvJacobianCompute<Frame::ElementLogical,
459 : Frame::Inertial>,
460 : ::Events::Tags::ObserverMeshVelocityCompute<volume_dim, Frame::Inertial>,
461 : gh::gauges::Tags::GaugeAndDerivativeCompute<
462 : volume_dim, gh::Solutions::all_solutions<volume_dim>>>;
463 :
464 : struct factory_creation
465 : : tt::ConformsTo<Options::protocols::FactoryCreation> {
466 0 : using factory_classes = tmpl::map<
467 : tmpl::pair<ah::Criterion, ah::Criteria::standard_criteria>,
468 : tmpl::pair<ylm::InitialShape<Frame::Distorted>,
469 : tmpl::list<ylm::InitialShapes::Sphere<Frame::Distorted>,
470 : ylm::InitialShapes::FromFile<Frame::Distorted>,
471 : ah::InitialShapes::KerrSchild<Frame::Distorted>>>,
472 : tmpl::pair<ylm::InitialShape<Frame::Inertial>,
473 : tmpl::list<ylm::InitialShapes::Sphere<Frame::Inertial>,
474 : ylm::InitialShapes::FromFile<Frame::Inertial>,
475 : ah::InitialShapes::KerrSchild<Frame::Inertial>>>,
476 : tmpl::pair<
477 : amr::Criterion,
478 : tmpl::push_back<
479 : amr::Criteria::standard_criteria<
480 : volume_dim, typename system::variables_tag::tags_list>,
481 : amr::Criteria::Constraints<
482 : volume_dim,
483 : tmpl::list<gh::Tags::ThreeIndexConstraintCompute<
484 : volume_dim, Frame::Inertial>>>>>,
485 : tmpl::pair<
486 : evolution::initial_data::InitialData,
487 : tmpl::flatten<tmpl::list<
488 : gh::NumericInitialData,
489 : tmpl::conditional_t<std::is_same_v<SpecInitialData, NoSuchType>,
490 : tmpl::list<>, SpecInitialData>>>>,
491 : tmpl::pair<DenseTrigger,
492 : tmpl::flatten<tmpl::list<
493 : control_system::control_system_triggers<control_systems>,
494 : DenseTriggers::standard_dense_triggers>>>,
495 : tmpl::pair<
496 : DomainCreator<volume_dim>,
497 : tmpl::list<::domain::creators::BinaryCompactObject,
498 : ::domain::creators::CylindricalBinaryCompactObject>>,
499 : tmpl::pair<Event,
500 : tmpl::flatten<tmpl::list<
501 : ah::Events::FindApparentHorizon<AhA>,
502 : ah::Events::FindApparentHorizon<AhB>,
503 : ah::Events::FindCommonHorizon<AhC, observe_fields,
504 : non_tensor_compute_tags>,
505 : gh::bbh::Events::CheckConstraintThresholds,
506 : intrp::Events::InterpolateWithoutInterpComponent<
507 : 3, BondiSachs, source_vars_no_deriv>,
508 : intrp::Events::InterpolateWithoutInterpComponent<
509 : 3, ExcisionBoundaryA, ah::source_vars<3>>,
510 : intrp::Events::InterpolateWithoutInterpComponent<
511 : 3, ExcisionBoundaryB, ah::source_vars<3>>,
512 : Events::MonitorMemory<3>, Events::Completion,
513 : dg::Events::field_observations<
514 : volume_dim, observe_fields, non_tensor_compute_tags>,
515 : control_system::metafunctions::control_system_events<
516 : control_systems>,
517 : control_system::CleanFunctionsOfTime,
518 : Events::time_events<system>,
519 : dg::Events::ObserveTimeStepVolume<system>,
520 : amr::Events::RefineMesh,
521 : amr::Events::ObserveAmrStats<volume_dim>,
522 : amr::Events::ObserveAmrCriteria<EvolutionMetavars>,
523 : dg::Events::ChangeFixedLtsRatio<volume_dim>>>>,
524 : tmpl::pair<
525 : evolution::BoundaryCorrection,
526 : gh::BoundaryCorrections::standard_boundary_corrections<volume_dim>>,
527 : tmpl::pair<control_system::size::State,
528 : control_system::size::States::factory_creatable_states>,
529 : tmpl::pair<
530 : gh::BoundaryConditions::BoundaryCondition<volume_dim>,
531 : tmpl::list<
532 : gh::BoundaryConditions::ConstraintPreservingBjorhus<volume_dim>,
533 : gh::BoundaryConditions::DirichletMinkowski<volume_dim>,
534 : gh::BoundaryConditions::DemandOutgoingCharSpeeds<volume_dim>>>,
535 : tmpl::pair<
536 : gh::gauges::GaugeCondition,
537 : tmpl::list<gh::gauges::DampedHarmonic, gh::gauges::Harmonic>>,
538 : tmpl::pair<MathFunction<1, Frame::Inertial>,
539 : MathFunctions::all_math_functions<1, Frame::Inertial>>,
540 : tmpl::pair<PhaseChange,
541 : tmpl::push_back<
542 : PhaseControl::factory_creatable_classes,
543 : gh::bbh::phase_control::CheckpointAndExitIfComplete>>,
544 : tmpl::pair<StepChooser<StepChooserUse::LtsStep>,
545 : StepChoosers::standard_step_choosers<system>>,
546 : tmpl::pair<StepChooser<StepChooserUse::Slab>,
547 : tmpl::push_back<
548 : StepChoosers::standard_slab_choosers<system>,
549 : evolution::dg::StepChoosers::FixedLtsRatio<volume_dim>>>,
550 : tmpl::pair<TimeSequence<double>,
551 : TimeSequences::all_time_sequences<double>>,
552 : tmpl::pair<TimeSequence<std::uint64_t>,
553 : TimeSequences::all_time_sequences<std::uint64_t>>,
554 : tmpl::pair<TimeStepper, TimeSteppers::time_steppers>,
555 : tmpl::pair<
556 : Trigger,
557 : tmpl::append<Triggers::logical_triggers, Triggers::time_triggers,
558 : tmpl::list<Triggers::SeparationLessThan<false>>>>,
559 : tmpl::pair<Filters::Filter<volume_dim,
560 : typename system::variables_tag::tags_list>,
561 : gh::all_filters<volume_dim>>>;
562 : };
563 :
564 : // A tmpl::list of tags to be added to the GlobalCache by the
565 : // metavariables
566 0 : using const_global_cache_tags =
567 : tmpl::list<gh::gauges::Tags::GaugeCondition,
568 : gh::Tags::DampingFunctionGamma0<volume_dim, Frame::Grid>,
569 : gh::Tags::DampingFunctionGamma1<volume_dim, Frame::Grid>,
570 : gh::Tags::DampingFunctionGamma2<volume_dim, Frame::Grid>>;
571 :
572 0 : using mutable_global_cache_tags = tmpl::list<>;
573 :
574 0 : using dg_registration_list =
575 : tmpl::list<observers::Actions::RegisterEventsWithObservers>;
576 :
577 0 : using equal_rate_regions =
578 : tmpl::list<evolution::dg::NonconformingEqualRateRegions<volume_dim>>;
579 :
580 : static constexpr auto default_phase_order =
581 : std::array{Parallel::Phase::Initialization,
582 : Parallel::Phase::RegisterWithElementDataReader,
583 : Parallel::Phase::ImportInitialData,
584 : Parallel::Phase::InitializeInitialDataDependentQuantities,
585 : Parallel::Phase::Register,
586 : Parallel::Phase::InitializeTimeStepperHistory,
587 : Parallel::Phase::CheckDomain,
588 : Parallel::Phase::Evolve,
589 : Parallel::Phase::Exit};
590 :
591 0 : using step_actions = tmpl::list<
592 : evolution::dg::Actions::ComputeTimeDerivative<
593 : volume_dim, system, AllStepChoosers, use_dg_element_collection>,
594 : evolution::dg::Actions::ApplyBoundaryCorrectionsToTimeDerivative<
595 : volume_dim, use_dg_element_collection>,
596 : Actions::MutateApply<RecordTimeStepperData<system>>,
597 : evolution::Actions::RunEventsAndDenseTriggers<tmpl::list<
598 : ::domain::CheckFunctionsOfTimeAreReadyPostprocessor<volume_dim>,
599 : evolution::dg::ApplyLtsDenseBoundaryCorrections<EvolutionMetavars>>>,
600 : control_system::Actions::LimitTimeStep<control_systems>,
601 : Actions::MutateApply<UpdateU<system>>,
602 : evolution::dg::Actions::ApplyLtsBoundaryCorrections<
603 : volume_dim, use_dg_element_collection>,
604 : Actions::MutateApply<ChangeTimeStepperOrder<system>>,
605 : Actions::MutateApply<CleanHistory<system>>,
606 : Actions::MutateApply<evolution::dg::CleanMortarHistory<volume_dim>>,
607 : dg::Actions::SpectralFilter<volume_dim,
608 : typename system::variables_tag::tags_list>>;
609 :
610 0 : using initialization_actions = tmpl::list<
611 : Initialization::Actions::InitializeItems<
612 : Initialization::TimeStepping<EvolutionMetavars, TimeStepper,
613 : use_control_systems, true>,
614 : evolution::dg::Initialization::Domain<EvolutionMetavars,
615 : use_control_systems>,
616 : ::amr::Initialization::Initialize<volume_dim, EvolutionMetavars>>,
617 : Initialization::Actions::NonconservativeSystem<system>,
618 : Initialization::Actions::InitializeItems<
619 : Initialization::TimeStepperHistory<system>>,
620 : Initialization::Actions::AddComputeTags<tmpl::list<::Tags::DerivCompute<
621 : typename system::variables_tag, ::domain::Tags::Mesh<volume_dim>,
622 : ::domain::Tags::InverseJacobian<volume_dim, Frame::ElementLogical,
623 : Frame::Inertial>,
624 : typename system::gradient_variables>>>,
625 : gh::Actions::InitializeGhAnd3Plus1Variables<volume_dim>,
626 : Initialization::Actions::AddComputeTags<
627 : StepChoosers::step_chooser_compute_tags<EvolutionMetavars>>,
628 : Initialization::Actions::AddSimpleTags<
629 : gh::bbh::Actions::InitializeElementCompletionRequested>,
630 : ::evolution::dg::Initialization::Mortars<volume_dim>,
631 : intrp::Actions::ElementInitInterpPoints<volume_dim,
632 : interpolation_target_tags>,
633 : evolution::dg::Initialization::Actions::SetupEqualRateRegions<
634 : EvolutionMetavars, volume_dim, equal_rate_regions>,
635 : evolution::Actions::InitializeRunEventsAndDenseTriggers,
636 : control_system::Actions::InitializeMeasurements<control_systems>,
637 : Initialization::Actions::InitializeItems<
638 : evolution::dg::Initialization::SpectralFilters<
639 : volume_dim, typename system::variables_tag::tags_list>>,
640 : Parallel::Actions::TerminatePhase>;
641 :
642 0 : using gh_dg_element_array = DgElementArray<
643 : EvolutionMetavars,
644 : tmpl::flatten<tmpl::list<
645 : Parallel::PhaseActions<Parallel::Phase::Initialization,
646 : initialization_actions>,
647 : Parallel::PhaseActions<
648 : Parallel::Phase::RegisterWithElementDataReader,
649 : tmpl::list<importers::Actions::RegisterWithElementDataReader,
650 : Parallel::Actions::TerminatePhase>>,
651 : Parallel::PhaseActions<
652 : Parallel::Phase::ImportInitialData,
653 : tmpl::list<gh::Actions::SetInitialData,
654 : gh::Actions::ReceiveNumericInitialData,
655 : Parallel::Actions::TerminatePhase>>,
656 : Parallel::PhaseActions<
657 : Parallel::Phase::InitializeInitialDataDependentQuantities,
658 : initialize_initial_data_dependent_quantities_actions>,
659 : Parallel::PhaseActions<Parallel::Phase::Register,
660 : tmpl::list<dg_registration_list,
661 : Parallel::Actions::TerminatePhase>>,
662 : Parallel::PhaseActions<Parallel::Phase::Restart,
663 : tmpl::list<dg_registration_list,
664 : Parallel::Actions::TerminatePhase>>,
665 : Parallel::PhaseActions<
666 : Parallel::Phase::WriteCheckpoint,
667 : tmpl::list<evolution::Actions::RunEventsAndTriggers<
668 : Triggers::WhenToCheck::AtCheckpoints>,
669 : Parallel::Actions::TerminatePhase>>,
670 : Parallel::PhaseActions<
671 : Parallel::Phase::InitializeTimeStepperHistory,
672 : SelfStart::self_start_procedure<step_actions, system>>,
673 : Parallel::PhaseActions<Parallel::Phase::CheckDomain,
674 : tmpl::list<::amr::Actions::SendAmrDiagnostics,
675 : Parallel::Actions::TerminatePhase>>,
676 : Parallel::PhaseActions<
677 : Parallel::Phase::Evolve,
678 : tmpl::flatten<tmpl::list<
679 : ::domain::Actions::CheckFunctionsOfTimeAreReady<volume_dim>,
680 : evolution::Actions::RunEventsAndTriggers<
681 : Triggers::WhenToCheck::AtSteps>,
682 : evolution::Actions::RunEventsAndTriggers<
683 : Triggers::WhenToCheck::AtSlabs>,
684 : Actions::ChangeSlabSize,
685 : evolution::dg::Actions::ChangeFixedLtsRatio, step_actions,
686 : Actions::MutateApply<AdvanceTime<>>,
687 : PhaseControl::Actions::ExecutePhaseChange>>>,
688 : Parallel::PhaseActions<
689 : Parallel::Phase::PostFailureCleanup,
690 : tmpl::list<Actions::RunEventsOnFailure<::Tags::Time>,
691 : Parallel::Actions::TerminatePhase>>>>>;
692 :
693 0 : using observed_reduction_data_tags = observers::collect_reduction_data_tags<
694 : tmpl::at<typename factory_creation::factory_classes, Event>>;
695 :
696 : struct registration
697 : : tt::ConformsTo<Parallel::protocols::RegistrationMetavariables> {
698 0 : using element_registrars =
699 : tmpl::map<tmpl::pair<gh_dg_element_array, dg_registration_list>>;
700 : };
701 :
702 0 : using control_system_horizon_metavars =
703 : control_system::metafunctions::horizon_metavars<control_systems>;
704 0 : using control_components =
705 : control_system::control_components<EvolutionMetavars, control_systems>;
706 :
707 0 : static void run_deadlock_analysis_simple_actions(
708 : Parallel::GlobalCache<EvolutionMetavars>& cache,
709 : const std::vector<std::string>& deadlocked_components) {
710 : gh::deadlock::run_deadlock_analysis_simple_actions<
711 : gh_dg_element_array, control_components, interpolation_target_tags,
712 : control_system_horizon_metavars>(cache, deadlocked_components);
713 : }
714 :
715 0 : struct amr : tt::ConformsTo<::amr::protocols::AmrMetavariables> {
716 0 : using element_array = gh_dg_element_array;
717 0 : using projectors = tmpl::list<
718 : Initialization::ProjectTimeStepping<volume_dim>,
719 : evolution::dg::Initialization::ProjectDomain<volume_dim>,
720 : ::amr::projectors::ProjectVariables<volume_dim,
721 : typename system::variables_tag>,
722 : evolution::dg::Initialization::ProjectMortars<volume_dim>,
723 : Initialization::ProjectTimeStepperHistory<EvolutionMetavars>,
724 : evolution::Actions::ProjectRunEventsAndDenseTriggers,
725 : evolution::dg::Initialization::ProjectSpectralFilters<
726 : volume_dim, typename system::variables_tag::tags_list>,
727 : ::amr::projectors::DefaultInitialize<
728 : Initialization::Tags::InitialTimeDelta,
729 : Initialization::Tags::InitialSlabSize,
730 : ::domain::Tags::InitialExtents<volume_dim>,
731 : ::domain::Tags::InitialRefinementLevels<volume_dim>,
732 : evolution::dg::Tags::Quadrature,
733 : Tags::StepperErrors<typename system::variables_tag>,
734 : SelfStart::Tags::InitialValue<typename system::variables_tag>,
735 : SelfStart::Tags::InitialValue<Tags::TimeStep>>,
736 : ::amr::projectors::CopyFromCreatorOrLeaveAsIs<tmpl::push_back<
737 : tmpl::append<
738 : typename control_system::Actions::InitializeMeasurements<
739 : control_systems>::simple_tags,
740 : tmpl::transform<
741 : intrp::InterpolationTarget_detail::
742 : get_non_sequential_target_tags<
743 : interpolation_target_tags>,
744 : tmpl::bind<intrp::Tags::PointInfo, tmpl::_1,
745 : tmpl::pin<tmpl::size_t<volume_dim>>>>>,
746 : gh::bbh::Tags::ElementCompletionRequested,
747 : evolution::dg::Tags::ChangeFixedLtsRatio::NumberOfExpectedMessages,
748 : evolution::dg::Tags::ChangeFixedLtsRatio::NewStepSize,
749 : Tags::FixedLtsRatio,
750 : Parallel::Tags::Section<gh_dg_element_array,
751 : evolution::dg::Tags::EqualRateRegionId>,
752 : Tags::ChangeSlabSize::NumberOfExpectedMessages,
753 : Tags::ChangeSlabSize::NewSlabSize>>>;
754 0 : static constexpr bool keep_coarse_grids = false;
755 0 : static constexpr bool p_refine_only_in_event = true;
756 : };
757 :
758 0 : using component_list = tmpl::flatten<tmpl::list<
759 : ::amr::Component<EvolutionMetavars>,
760 : observers::Observer<EvolutionMetavars>,
761 : observers::ObserverWriter<EvolutionMetavars>,
762 : importers::ElementDataReader<EvolutionMetavars>,
763 : mem_monitor::MemoryMonitor<EvolutionMetavars>,
764 : gh::bbh::CompletionSingleton<EvolutionMetavars>,
765 : ah::Component<EvolutionMetavars, AhA>,
766 : ah::Component<EvolutionMetavars, AhB>,
767 : ah::Component<EvolutionMetavars, AhC>,
768 : tmpl::transform<
769 : control_system_horizon_metavars,
770 : tmpl::bind<ah::Component, tmpl::pin<EvolutionMetavars>, tmpl::_1>>,
771 : tmpl::transform<interpolation_target_tags,
772 : tmpl::bind<intrp::InterpolationTarget,
773 : tmpl::pin<EvolutionMetavars>, tmpl::_1>>,
774 : control_system::control_components<EvolutionMetavars, control_systems>,
775 : gh_dg_element_array>>;
776 :
777 : static constexpr Options::String help{
778 : "Evolve a binary black hole using the Generalized Harmonic "
779 : "formulation\n"};
780 : };
|