├── .clang-format ├── .github ├── dependabot.yml └── workflows │ ├── build-doxygen.yml │ ├── clang-format.yml │ ├── clang-tests.yml │ ├── gcc-tests.yml │ └── intel-classic-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── Doxygen ├── README ├── doxygen_config └── title_page.md ├── Examples ├── BinaryBH │ ├── BinaryBHLevel.cpp │ ├── BinaryBHLevel.hpp │ ├── DiagnosticVariables.hpp │ ├── GNUmakefile │ ├── Main_BinaryBH.cpp │ ├── README.md │ ├── SimulationParameters.hpp │ ├── TPAMR.hpp │ ├── UserVariables.hpp │ ├── params.txt │ ├── params_two_punctures.txt │ └── params_very_cheap.txt ├── KerrBH │ ├── DiagnosticVariables.hpp │ ├── GNUmakefile │ ├── KerrBHLevel.cpp │ ├── KerrBHLevel.hpp │ ├── Main_KerrBH.cpp │ ├── SimulationParameters.hpp │ ├── UserVariables.hpp │ ├── params.txt │ └── params_cheap.txt ├── ScalarFieldBH │ ├── CustomExtraction.hpp │ ├── DiagnosticVariables.hpp │ ├── GNUmakefile │ ├── GRTresna_restart_setup │ │ ├── README.md │ │ ├── constraint_lineout.png │ │ ├── params_HR.txt │ │ ├── params_LR.txt │ │ └── plot_restart.py │ ├── InitialScalarData.hpp │ ├── Main_ScalarField.cpp │ ├── Potential.hpp │ ├── ScalarFieldLevel.cpp │ ├── ScalarFieldLevel.hpp │ ├── SimulationParameters.hpp │ ├── UserVariables.hpp │ └── params.txt └── ScalarFieldCosmo │ ├── ConstraintsExtraction.hpp │ ├── CosmoDiagnostics.hpp │ ├── CosmoDiagnostics.impl.hpp │ ├── CustomExtraction.hpp │ ├── DiagnosticVariables.hpp │ ├── GNUmakefile │ ├── GRTresna_restart_setup │ ├── README.md │ ├── constraints_lineout.png │ ├── params_HR.txt │ ├── params_LR.txt │ └── plot_restart.py │ ├── InitialK.hpp │ ├── InitialScalarData.hpp │ ├── Main_ScalarFieldCosmo.cpp │ ├── Potential.hpp │ ├── ScalarFieldCosmoLevel.cpp │ ├── ScalarFieldCosmoLevel.hpp │ ├── SimulationParameters.hpp │ ├── UserVariables.hpp │ ├── params.txt │ ├── params_cheap.txt │ ├── plot.py │ ├── plot_efold.pdf │ ├── plot_lineout.pdf │ └── plot_rho_mean.pdf ├── GNUmakefile ├── InstallNotes └── MakeDefsLocalExamples │ ├── Archer.Make.defs.local │ ├── CSD3-Icelake-Intel-modules.sh │ ├── CSD3-Icelake-Intel.Make.defs.local │ ├── CSD3-KNL-GCC.Make.defs.local │ ├── CSD3-KNL-Intel.Make.defs.local │ ├── CSD3-Skylake-GCC-modules.sh │ ├── CSD3-Skylake-GCC.Make.defs.local │ ├── CSD3-Skylake-Intel-modules.sh │ ├── CSD3-Skylake-Intel.Make.defs.local │ ├── Cartesius-modules.sh │ ├── Cartesius.Make.defs.local │ ├── Cosma7-Durham-modules.sh │ ├── Cosma7-Durham.Make.defs.local │ ├── Cosma8-Durham-modules.sh │ ├── Cosma8-Durham.Make.defs.local │ ├── Dial-Leicester.Make.defs.local │ ├── LUMIC.Make.defs.local │ ├── MN4.Make.defs.local │ ├── Mac-Catalina-GCC.Make.defs.local │ ├── Mac-Monterey.Make.defs.local │ ├── SupermucNG.Make.defs.local │ ├── TACC-Frontera-modules.sh │ ├── TACC-Frontera.Make.defs.local │ ├── TACC-Stampede2-KNL.Make.defs.local │ ├── TACC-Stampede2-Skylake.Make.defs.local │ ├── TACC-Stampede2-modules.sh │ ├── argo.Make.defs.local │ ├── argo.modules.sh │ ├── athena-modules.sh │ ├── athena.Make.defs.local │ ├── cineca_marconi.Make.defs.local │ ├── cineca_marconi.modules.sh │ ├── cosmos.Make.defs.local │ ├── docker_hpc-base-stretch.Make.defs.local │ ├── fawcett-modules.sh │ ├── fawcett.Make.defs.local │ ├── finisterrae.Make.defs.local │ ├── glamdring-debug.Make.defs.local │ ├── gwdg.Make.defs.local │ ├── hdf5_cmake_configure.sh │ ├── intel-classic-no-hdf5-minimal.Make.defs.local │ ├── nesi-pan.Make.defs.local │ ├── ubuntu-clang-nompi.Make.defs.local │ ├── ubuntu-clang.Make.defs.local │ ├── ubuntu-gcc-nompi.Make.defs.local │ └── ubuntu-gcc.Make.defs.local ├── LICENSE ├── README.md ├── Source ├── AMRInterpolator │ ├── AMRInterpolator.hpp │ ├── AMRInterpolator.impl.hpp │ ├── CylindricalExtraction.hpp │ ├── CylindricalGeometry.hpp │ ├── Derivative.hpp │ ├── DerivativeSetup.hpp │ ├── IntegrationMethod.hpp │ ├── IntegrationMethodSetup.hpp │ ├── InterpSource.hpp │ ├── InterpolationQuery.hpp │ ├── Lagrange.hpp │ ├── Lagrange.impl.hpp │ ├── MPIContext.hpp │ ├── MPIContext.impl.hpp │ ├── MPILayout.hpp │ ├── MPILayout.impl.hpp │ ├── QuinticConvolution.hpp │ ├── QuinticConvolution.impl.hpp │ ├── SimpleArrayBox.hpp │ ├── SimpleInterpSource.hpp │ ├── SphericalExtraction.hpp │ ├── SphericalGeometry.hpp │ ├── SphericalGeometryUniform.hpp │ ├── SurfaceExtraction.hpp │ └── SurfaceExtraction.impl.hpp ├── ApparentHorizonFinder │ ├── AHDerivData.hpp │ ├── AHFinder.hpp │ ├── AHFinder.impl.hpp │ ├── AHFunctionDefault.hpp │ ├── AHFunctions.hpp │ ├── AHGeometryData.hpp │ ├── AHInitialGuess.hpp │ ├── AHInterpolation.hpp │ ├── AHInterpolation.impl.hpp │ ├── AHParams.hpp │ ├── AHSphericalGeometry.hpp │ ├── AHSphericalGeometryUniform.hpp │ ├── AHStringGeometry.hpp │ ├── AHVarsData.hpp │ ├── ApparentHorizon.hpp │ ├── ApparentHorizon.impl.hpp │ ├── PETScAHSolver.hpp │ ├── PETScAHSolver.impl.hpp │ ├── PETScCommunicator.cpp │ └── PETScCommunicator.hpp ├── BlackHoles │ ├── BHAMR.hpp │ ├── PunctureTracker.cpp │ └── PunctureTracker.hpp ├── BoxUtils │ ├── AMRReductions.hpp │ ├── AMRReductions.impl.hpp │ ├── BoxLoops.hpp │ ├── BoxLoops.impl.hpp │ ├── BoxPointers.hpp │ ├── Cell.hpp │ ├── Cell.impl.hpp │ ├── CellIndex.hpp │ ├── ComputeModGrad.hpp │ ├── ComputePack.hpp │ ├── FourthOrderDerivatives.hpp │ ├── NanCheck.hpp │ ├── SetValue.hpp │ └── SixthOrderDerivatives.hpp ├── CCZ4 │ ├── ADMConformalVars.hpp │ ├── ADMQuantities.hpp │ ├── BSSNVars.hpp │ ├── CCZ4.hpp │ ├── CCZ4Geometry.hpp │ ├── CCZ4RHS.hpp │ ├── CCZ4RHS.impl.hpp │ ├── CCZ4UserVariables.hpp │ ├── CCZ4Vars.hpp │ ├── Constraints.hpp │ ├── Constraints.impl.hpp │ ├── GammaCalculator.hpp │ ├── IntegratedMovingPunctureGauge.hpp │ ├── MovingPunctureGauge.hpp │ ├── NewConstraints.hpp │ ├── NewConstraints.impl.hpp │ ├── PositiveChiAndAlpha.hpp │ ├── TraceARemoval.hpp │ ├── Weyl4.hpp │ └── Weyl4.impl.hpp ├── Cosmology │ ├── CosmoAMR.hpp │ └── CosmoMovingPunctureGauge.hpp ├── GRChomboCore │ ├── BoundaryConditions.cpp │ ├── BoundaryConditions.hpp │ ├── ChomboParameters.hpp │ ├── DefaultLevelFactory.hpp │ ├── EmptyDiagnosticVariables.hpp │ ├── GRAMR.cpp │ ├── GRAMR.hpp │ ├── GRAMRLevel.cpp │ ├── GRAMRLevel.hpp │ ├── GRLevelData.cpp │ ├── GRLevelData.hpp │ ├── SetupFunctions.hpp │ ├── SimulationParametersBase.hpp │ ├── UserVariables.inc.hpp │ └── VariableType.hpp ├── InitialConditions │ ├── BlackHoles │ │ ├── BinaryBH.hpp │ │ ├── BinaryBH.impl.hpp │ │ ├── BoostedBH.hpp │ │ ├── BoostedBH.impl.hpp │ │ ├── KerrBH.hpp │ │ ├── KerrBH.impl.hpp │ │ ├── TwoPuncturesInitialData.hpp │ │ └── TwoPuncturesInitialData.impl.hpp │ └── ScalarFields │ │ ├── ScalarBubble.hpp │ │ └── ScalarBubble.impl.hpp ├── Matter │ ├── ChiRelaxation.hpp │ ├── ChiRelaxation.impl.hpp │ ├── DefaultPotential.hpp │ ├── EMTensor.hpp │ ├── EMTensor.impl.hpp │ ├── MatterCCZ4.hpp │ ├── MatterCCZ4RHS.hpp │ ├── MatterCCZ4RHS.impl.hpp │ ├── MatterConstraints.hpp │ ├── MatterConstraints.impl.hpp │ ├── MatterWeyl4.hpp │ ├── MatterWeyl4.impl.hpp │ ├── NewMatterConstraints.hpp │ ├── NewMatterConstraints.impl.hpp │ ├── ScalarField.hpp │ └── ScalarField.impl.hpp ├── TaggingCriteria │ ├── ChiAndPhiTaggingCriterion.hpp │ ├── ChiExtractionTaggingCriterion.hpp │ ├── ChiPunctureExtractionTaggingCriterion.hpp │ ├── ChiTaggingCriterion.hpp │ ├── CosmoHamTaggingCriterion.hpp │ ├── FixedGridsTaggingCriterion.hpp │ └── PhiAndKTaggingCriterion.hpp ├── simd │ ├── arm │ │ ├── arm.hpp │ │ ├── neon.hpp │ │ └── sve.hpp │ ├── simd.hpp │ ├── simd_base.hpp │ ├── simdify.hpp │ └── x64 │ │ ├── avx.hpp │ │ ├── avx512.hpp │ │ ├── sse.hpp │ │ └── x64.hpp └── utils │ ├── ADMQuantitiesExtraction.hpp │ ├── AlwaysAssert.hpp │ ├── AlwaysInline.hpp │ ├── ArrayTools.hpp │ ├── Combinatorics.hpp │ ├── CoordinateTransformations.hpp │ ├── Coordinates.hpp │ ├── DebuggingTools.hpp │ ├── DimensionDefinitions.hpp │ ├── FilesystemTools.hpp │ ├── GRInterval.hpp │ ├── GRParmParse.hpp │ ├── MultiLevelTask.hpp │ ├── SmallDataIO.cpp │ ├── SmallDataIO.hpp │ ├── SmallDataIOReader.cpp │ ├── SmallDataIOReader.hpp │ ├── SphericalHarmonics.hpp │ ├── Tensor.hpp │ ├── TensorAlgebra.hpp │ ├── VarsTools.hpp │ └── WeylExtraction.hpp ├── Tests ├── AMRInterpolatorTest │ ├── AMRInterpolatorTest.cpp │ ├── AMRInterpolatorTest.inputs │ ├── GNUmakefile │ ├── InterpolatorTestLevel.hpp │ ├── Polynomial.hpp │ ├── SimulationParameters.hpp │ └── UserVariables.hpp ├── ApparentHorizonFinderTest2D │ ├── AHTest2DFunction.hpp │ ├── ApparentHorizonTest2D.cpp │ ├── ApparentHorizonTest2D.inputs │ ├── ApparentHorizonTest2DLevel.hpp │ ├── GNUmakefile │ ├── SimulationParameters.hpp │ └── UserVariables.hpp ├── ApparentHorizonFinderTest3D │ ├── ApparentHorizonTest3D.cpp │ ├── ApparentHorizonTest3D.inputs │ ├── ApparentHorizonTest3DLevel.hpp │ ├── GNUmakefile │ ├── SimulationParameters.hpp │ └── UserVariables.hpp ├── BSSNMatterTest │ ├── BSSNMatterTest.cpp │ ├── GNUmakefile │ ├── GRBSSNChomboF.ChF │ ├── Potential.hpp │ └── UserVariables.hpp ├── CCZ4GeometryUnitTests │ ├── CCZ4GeometryUnitTest.cpp │ ├── GNUmakefile │ ├── Mathematica_comparison.nb │ └── values1.hpp ├── CCZ4Test │ ├── CCZ4Test.cpp │ ├── GNUmakefile │ ├── GRBSSNChomboF.ChF │ └── UserVariables.hpp ├── ConstraintTest │ ├── ConstraintTest.cpp │ ├── ConstraintTestF.ChF │ ├── GNUmakefile │ └── UserVariables.hpp ├── CoordinateTransformationsTest │ ├── CoordinateTransformationsTest.cpp │ └── GNUmakefile ├── DerivativeUnitTests │ ├── DerivativeTestsCompute.hpp │ ├── DerivativeUnitTests.cpp │ ├── GNUmakefile │ └── UserVariables.hpp ├── InterpolatorTest │ ├── GNUmakefile │ ├── InterpolatorTest.cpp │ ├── SimulationParameters.hpp │ └── UserVariables.hpp ├── MatterWeyl4Test │ ├── GNUmakefile │ ├── GravWavDecF.ChF │ ├── MatterWeyl4Test.cpp │ └── UserVariables.hpp ├── PositiveChiAndAlphaUnitTest │ ├── GNUmakefile │ ├── PositiveChiAndAlphaUnitTest.cpp │ └── UserVariables.hpp ├── SetValueUnitTest │ ├── GNUmakefile │ ├── SetValueUnitTest.cpp │ └── UserVariables.hpp ├── SimdFunctionsUnitTests │ ├── GNUmakefile │ └── SimdFunctionsUnitTest.cpp ├── SphericalExtractionTest │ ├── GNUmakefile │ ├── SetHarmonic.hpp │ ├── SetHarmonic.impl.hpp │ ├── SimulationParameters.hpp │ ├── SphericalExtractionTest.cpp │ ├── SphericalExtractionTest.inputs │ ├── SphericalExtractionTestLevel.hpp │ └── UserVariables.hpp ├── SphericalExtractionUniformTest │ ├── GNUmakefile │ ├── SetHarmonic.hpp │ ├── SetHarmonic.impl.hpp │ ├── SimulationParameters.hpp │ ├── SphericalExtractionUniformTest.cpp │ ├── SphericalExtractionUniformTest.inputs │ ├── SphericalExtractionUniformTestLevel.hpp │ └── UserVariables.hpp ├── SphericalHarmonicTest │ ├── GNUmakefile │ ├── HarmonicTest.hpp │ ├── HarmonicTest.impl.hpp │ ├── SphericalHarmonicTest.cpp │ └── UserVariables.hpp └── VariableStoreTest │ ├── GNUmakefile │ ├── UserVariables.hpp │ └── VariableStoreTest.cpp └── run_clang_format /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/workflows/build-doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/clang-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/workflows/clang-tests.yml -------------------------------------------------------------------------------- /.github/workflows/gcc-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/workflows/gcc-tests.yml -------------------------------------------------------------------------------- /.github/workflows/intel-classic-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.github/workflows/intel-classic-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Doxygen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Doxygen/README -------------------------------------------------------------------------------- /Doxygen/doxygen_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Doxygen/doxygen_config -------------------------------------------------------------------------------- /Doxygen/title_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Doxygen/title_page.md -------------------------------------------------------------------------------- /Examples/BinaryBH/BinaryBHLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/BinaryBHLevel.cpp -------------------------------------------------------------------------------- /Examples/BinaryBH/BinaryBHLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/BinaryBHLevel.hpp -------------------------------------------------------------------------------- /Examples/BinaryBH/DiagnosticVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/DiagnosticVariables.hpp -------------------------------------------------------------------------------- /Examples/BinaryBH/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/GNUmakefile -------------------------------------------------------------------------------- /Examples/BinaryBH/Main_BinaryBH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/Main_BinaryBH.cpp -------------------------------------------------------------------------------- /Examples/BinaryBH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/README.md -------------------------------------------------------------------------------- /Examples/BinaryBH/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/SimulationParameters.hpp -------------------------------------------------------------------------------- /Examples/BinaryBH/TPAMR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/TPAMR.hpp -------------------------------------------------------------------------------- /Examples/BinaryBH/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/UserVariables.hpp -------------------------------------------------------------------------------- /Examples/BinaryBH/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/params.txt -------------------------------------------------------------------------------- /Examples/BinaryBH/params_two_punctures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/params_two_punctures.txt -------------------------------------------------------------------------------- /Examples/BinaryBH/params_very_cheap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/BinaryBH/params_very_cheap.txt -------------------------------------------------------------------------------- /Examples/KerrBH/DiagnosticVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/DiagnosticVariables.hpp -------------------------------------------------------------------------------- /Examples/KerrBH/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/GNUmakefile -------------------------------------------------------------------------------- /Examples/KerrBH/KerrBHLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/KerrBHLevel.cpp -------------------------------------------------------------------------------- /Examples/KerrBH/KerrBHLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/KerrBHLevel.hpp -------------------------------------------------------------------------------- /Examples/KerrBH/Main_KerrBH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/Main_KerrBH.cpp -------------------------------------------------------------------------------- /Examples/KerrBH/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/SimulationParameters.hpp -------------------------------------------------------------------------------- /Examples/KerrBH/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/UserVariables.hpp -------------------------------------------------------------------------------- /Examples/KerrBH/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/params.txt -------------------------------------------------------------------------------- /Examples/KerrBH/params_cheap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/KerrBH/params_cheap.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/CustomExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/CustomExtraction.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/DiagnosticVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/DiagnosticVariables.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GNUmakefile -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GRTresna_restart_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GRTresna_restart_setup/README.md -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GRTresna_restart_setup/constraint_lineout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GRTresna_restart_setup/constraint_lineout.png -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GRTresna_restart_setup/params_HR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GRTresna_restart_setup/params_HR.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GRTresna_restart_setup/params_LR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GRTresna_restart_setup/params_LR.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/GRTresna_restart_setup/plot_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/GRTresna_restart_setup/plot_restart.py -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/InitialScalarData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/InitialScalarData.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/Main_ScalarField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/Main_ScalarField.cpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/Potential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/Potential.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/ScalarFieldLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/ScalarFieldLevel.cpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/ScalarFieldLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/ScalarFieldLevel.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/SimulationParameters.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/UserVariables.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldBH/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldBH/params.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/ConstraintsExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/ConstraintsExtraction.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/CosmoDiagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/CosmoDiagnostics.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/CosmoDiagnostics.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/CosmoDiagnostics.impl.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/CustomExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/CustomExtraction.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/DiagnosticVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/DiagnosticVariables.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GNUmakefile -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GRTresna_restart_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GRTresna_restart_setup/README.md -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GRTresna_restart_setup/constraints_lineout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GRTresna_restart_setup/constraints_lineout.png -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GRTresna_restart_setup/params_HR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GRTresna_restart_setup/params_HR.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GRTresna_restart_setup/params_LR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GRTresna_restart_setup/params_LR.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/GRTresna_restart_setup/plot_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/GRTresna_restart_setup/plot_restart.py -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/InitialK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/InitialK.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/InitialScalarData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/InitialScalarData.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/Main_ScalarFieldCosmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/Main_ScalarFieldCosmo.cpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/Potential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/Potential.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/ScalarFieldCosmoLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/ScalarFieldCosmoLevel.cpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/ScalarFieldCosmoLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/ScalarFieldCosmoLevel.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/SimulationParameters.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/UserVariables.hpp -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/params.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/params_cheap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/params_cheap.txt -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/plot.py -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/plot_efold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/plot_efold.pdf -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/plot_lineout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/plot_lineout.pdf -------------------------------------------------------------------------------- /Examples/ScalarFieldCosmo/plot_rho_mean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Examples/ScalarFieldCosmo/plot_rho_mean.pdf -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/GNUmakefile -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Archer.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Archer.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Icelake-Intel-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Icelake-Intel-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Icelake-Intel.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Icelake-Intel.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-KNL-GCC.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-KNL-GCC.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-KNL-Intel.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-KNL-Intel.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-GCC-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-GCC-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-GCC.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-GCC.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-Intel-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-Intel-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-Intel.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/CSD3-Skylake-Intel.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cartesius-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cartesius-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cartesius.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cartesius.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cosma7-Durham-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cosma7-Durham-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cosma7-Durham.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cosma7-Durham.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cosma8-Durham-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cosma8-Durham-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Cosma8-Durham.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Cosma8-Durham.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Dial-Leicester.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Dial-Leicester.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/LUMIC.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/LUMIC.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/MN4.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/MN4.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Mac-Catalina-GCC.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Mac-Catalina-GCC.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/Mac-Monterey.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/Mac-Monterey.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/SupermucNG.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/SupermucNG.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/TACC-Frontera-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/TACC-Frontera-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/TACC-Frontera.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/TACC-Frontera.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-KNL.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-KNL.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-Skylake.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-Skylake.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/TACC-Stampede2-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/argo.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/argo.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/argo.modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/argo.modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/athena-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/athena-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/athena.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/athena.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/cineca_marconi.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/cineca_marconi.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/cineca_marconi.modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/cineca_marconi.modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/cosmos.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/cosmos.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/docker_hpc-base-stretch.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/docker_hpc-base-stretch.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/fawcett-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/fawcett-modules.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/fawcett.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/fawcett.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/finisterrae.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/finisterrae.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/glamdring-debug.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/glamdring-debug.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/gwdg.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/gwdg.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/hdf5_cmake_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/hdf5_cmake_configure.sh -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/intel-classic-no-hdf5-minimal.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/intel-classic-no-hdf5-minimal.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/nesi-pan.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/nesi-pan.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/ubuntu-clang-nompi.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/ubuntu-clang-nompi.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/ubuntu-clang.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/ubuntu-clang.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/ubuntu-gcc-nompi.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/ubuntu-gcc-nompi.Make.defs.local -------------------------------------------------------------------------------- /InstallNotes/MakeDefsLocalExamples/ubuntu-gcc.Make.defs.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/InstallNotes/MakeDefsLocalExamples/ubuntu-gcc.Make.defs.local -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/README.md -------------------------------------------------------------------------------- /Source/AMRInterpolator/AMRInterpolator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/AMRInterpolator.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/AMRInterpolator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/AMRInterpolator.impl.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/CylindricalExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/CylindricalExtraction.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/CylindricalGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/CylindricalGeometry.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/Derivative.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/Derivative.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/DerivativeSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/DerivativeSetup.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/IntegrationMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/IntegrationMethod.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/IntegrationMethodSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/IntegrationMethodSetup.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/InterpSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/InterpSource.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/InterpolationQuery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/InterpolationQuery.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/Lagrange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/Lagrange.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/Lagrange.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/Lagrange.impl.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/MPIContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/MPIContext.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/MPIContext.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/MPIContext.impl.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/MPILayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/MPILayout.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/MPILayout.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/MPILayout.impl.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/QuinticConvolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/QuinticConvolution.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/QuinticConvolution.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/QuinticConvolution.impl.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SimpleArrayBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SimpleArrayBox.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SimpleInterpSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SimpleInterpSource.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SphericalExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SphericalExtraction.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SphericalGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SphericalGeometry.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SphericalGeometryUniform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SphericalGeometryUniform.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SurfaceExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SurfaceExtraction.hpp -------------------------------------------------------------------------------- /Source/AMRInterpolator/SurfaceExtraction.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/AMRInterpolator/SurfaceExtraction.impl.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHDerivData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHDerivData.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHFinder.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHFinder.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHFinder.impl.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHFunctionDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHFunctionDefault.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHFunctions.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHGeometryData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHGeometryData.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHInitialGuess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHInitialGuess.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHInterpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHInterpolation.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHInterpolation.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHInterpolation.impl.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHParams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHParams.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHSphericalGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHSphericalGeometry.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHSphericalGeometryUniform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHSphericalGeometryUniform.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHStringGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHStringGeometry.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/AHVarsData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/AHVarsData.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/ApparentHorizon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/ApparentHorizon.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/ApparentHorizon.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/ApparentHorizon.impl.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/PETScAHSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/PETScAHSolver.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/PETScAHSolver.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/PETScAHSolver.impl.hpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/PETScCommunicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/PETScCommunicator.cpp -------------------------------------------------------------------------------- /Source/ApparentHorizonFinder/PETScCommunicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/ApparentHorizonFinder/PETScCommunicator.hpp -------------------------------------------------------------------------------- /Source/BlackHoles/BHAMR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BlackHoles/BHAMR.hpp -------------------------------------------------------------------------------- /Source/BlackHoles/PunctureTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BlackHoles/PunctureTracker.cpp -------------------------------------------------------------------------------- /Source/BlackHoles/PunctureTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BlackHoles/PunctureTracker.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/AMRReductions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/AMRReductions.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/AMRReductions.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/AMRReductions.impl.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/BoxLoops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/BoxLoops.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/BoxLoops.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/BoxLoops.impl.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/BoxPointers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/BoxPointers.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/Cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/Cell.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/Cell.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/Cell.impl.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/CellIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/CellIndex.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/ComputeModGrad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/ComputeModGrad.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/ComputePack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/ComputePack.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/FourthOrderDerivatives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/FourthOrderDerivatives.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/NanCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/NanCheck.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/SetValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/SetValue.hpp -------------------------------------------------------------------------------- /Source/BoxUtils/SixthOrderDerivatives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/BoxUtils/SixthOrderDerivatives.hpp -------------------------------------------------------------------------------- /Source/CCZ4/ADMConformalVars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/ADMConformalVars.hpp -------------------------------------------------------------------------------- /Source/CCZ4/ADMQuantities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/ADMQuantities.hpp -------------------------------------------------------------------------------- /Source/CCZ4/BSSNVars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/BSSNVars.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4.hpp: -------------------------------------------------------------------------------- 1 | CCZ4RHS.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4Geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/CCZ4Geometry.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4RHS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/CCZ4RHS.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4RHS.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/CCZ4RHS.impl.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/CCZ4UserVariables.hpp -------------------------------------------------------------------------------- /Source/CCZ4/CCZ4Vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/CCZ4Vars.hpp -------------------------------------------------------------------------------- /Source/CCZ4/Constraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/Constraints.hpp -------------------------------------------------------------------------------- /Source/CCZ4/Constraints.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/Constraints.impl.hpp -------------------------------------------------------------------------------- /Source/CCZ4/GammaCalculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/GammaCalculator.hpp -------------------------------------------------------------------------------- /Source/CCZ4/IntegratedMovingPunctureGauge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/IntegratedMovingPunctureGauge.hpp -------------------------------------------------------------------------------- /Source/CCZ4/MovingPunctureGauge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/MovingPunctureGauge.hpp -------------------------------------------------------------------------------- /Source/CCZ4/NewConstraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/NewConstraints.hpp -------------------------------------------------------------------------------- /Source/CCZ4/NewConstraints.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/NewConstraints.impl.hpp -------------------------------------------------------------------------------- /Source/CCZ4/PositiveChiAndAlpha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/PositiveChiAndAlpha.hpp -------------------------------------------------------------------------------- /Source/CCZ4/TraceARemoval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/TraceARemoval.hpp -------------------------------------------------------------------------------- /Source/CCZ4/Weyl4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/Weyl4.hpp -------------------------------------------------------------------------------- /Source/CCZ4/Weyl4.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/CCZ4/Weyl4.impl.hpp -------------------------------------------------------------------------------- /Source/Cosmology/CosmoAMR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Cosmology/CosmoAMR.hpp -------------------------------------------------------------------------------- /Source/Cosmology/CosmoMovingPunctureGauge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Cosmology/CosmoMovingPunctureGauge.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/BoundaryConditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/BoundaryConditions.cpp -------------------------------------------------------------------------------- /Source/GRChomboCore/BoundaryConditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/BoundaryConditions.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/ChomboParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/ChomboParameters.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/DefaultLevelFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/DefaultLevelFactory.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/EmptyDiagnosticVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/EmptyDiagnosticVariables.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRAMR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRAMR.cpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRAMR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRAMR.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRAMRLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRAMRLevel.cpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRAMRLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRAMRLevel.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRLevelData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRLevelData.cpp -------------------------------------------------------------------------------- /Source/GRChomboCore/GRLevelData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/GRLevelData.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/SetupFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/SetupFunctions.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/SimulationParametersBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/SimulationParametersBase.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/UserVariables.inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/UserVariables.inc.hpp -------------------------------------------------------------------------------- /Source/GRChomboCore/VariableType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/GRChomboCore/VariableType.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/BinaryBH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/BinaryBH.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/BinaryBH.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/BinaryBH.impl.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/BoostedBH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/BoostedBH.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/BoostedBH.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/BoostedBH.impl.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/KerrBH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/KerrBH.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/KerrBH.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/KerrBH.impl.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/TwoPuncturesInitialData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/TwoPuncturesInitialData.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/BlackHoles/TwoPuncturesInitialData.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/BlackHoles/TwoPuncturesInitialData.impl.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/ScalarFields/ScalarBubble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/ScalarFields/ScalarBubble.hpp -------------------------------------------------------------------------------- /Source/InitialConditions/ScalarFields/ScalarBubble.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/InitialConditions/ScalarFields/ScalarBubble.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/ChiRelaxation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/ChiRelaxation.hpp -------------------------------------------------------------------------------- /Source/Matter/ChiRelaxation.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/ChiRelaxation.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/DefaultPotential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/DefaultPotential.hpp -------------------------------------------------------------------------------- /Source/Matter/EMTensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/EMTensor.hpp -------------------------------------------------------------------------------- /Source/Matter/EMTensor.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/EMTensor.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterCCZ4.hpp: -------------------------------------------------------------------------------- 1 | MatterCCZ4RHS.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterCCZ4RHS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterCCZ4RHS.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterCCZ4RHS.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterCCZ4RHS.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterConstraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterConstraints.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterConstraints.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterConstraints.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterWeyl4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterWeyl4.hpp -------------------------------------------------------------------------------- /Source/Matter/MatterWeyl4.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/MatterWeyl4.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/NewMatterConstraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/NewMatterConstraints.hpp -------------------------------------------------------------------------------- /Source/Matter/NewMatterConstraints.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/NewMatterConstraints.impl.hpp -------------------------------------------------------------------------------- /Source/Matter/ScalarField.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/ScalarField.hpp -------------------------------------------------------------------------------- /Source/Matter/ScalarField.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/Matter/ScalarField.impl.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/ChiAndPhiTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/ChiAndPhiTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/ChiExtractionTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/ChiExtractionTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/ChiPunctureExtractionTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/ChiPunctureExtractionTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/ChiTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/ChiTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/CosmoHamTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/CosmoHamTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/FixedGridsTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/FixedGridsTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/TaggingCriteria/PhiAndKTaggingCriterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/TaggingCriteria/PhiAndKTaggingCriterion.hpp -------------------------------------------------------------------------------- /Source/simd/arm/arm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/arm/arm.hpp -------------------------------------------------------------------------------- /Source/simd/arm/neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/arm/neon.hpp -------------------------------------------------------------------------------- /Source/simd/arm/sve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/arm/sve.hpp -------------------------------------------------------------------------------- /Source/simd/simd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/simd.hpp -------------------------------------------------------------------------------- /Source/simd/simd_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/simd_base.hpp -------------------------------------------------------------------------------- /Source/simd/simdify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/simdify.hpp -------------------------------------------------------------------------------- /Source/simd/x64/avx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/x64/avx.hpp -------------------------------------------------------------------------------- /Source/simd/x64/avx512.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/x64/avx512.hpp -------------------------------------------------------------------------------- /Source/simd/x64/sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/x64/sse.hpp -------------------------------------------------------------------------------- /Source/simd/x64/x64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/simd/x64/x64.hpp -------------------------------------------------------------------------------- /Source/utils/ADMQuantitiesExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/ADMQuantitiesExtraction.hpp -------------------------------------------------------------------------------- /Source/utils/AlwaysAssert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/AlwaysAssert.hpp -------------------------------------------------------------------------------- /Source/utils/AlwaysInline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/AlwaysInline.hpp -------------------------------------------------------------------------------- /Source/utils/ArrayTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/ArrayTools.hpp -------------------------------------------------------------------------------- /Source/utils/Combinatorics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/Combinatorics.hpp -------------------------------------------------------------------------------- /Source/utils/CoordinateTransformations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/CoordinateTransformations.hpp -------------------------------------------------------------------------------- /Source/utils/Coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/Coordinates.hpp -------------------------------------------------------------------------------- /Source/utils/DebuggingTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/DebuggingTools.hpp -------------------------------------------------------------------------------- /Source/utils/DimensionDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/DimensionDefinitions.hpp -------------------------------------------------------------------------------- /Source/utils/FilesystemTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/FilesystemTools.hpp -------------------------------------------------------------------------------- /Source/utils/GRInterval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/GRInterval.hpp -------------------------------------------------------------------------------- /Source/utils/GRParmParse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/GRParmParse.hpp -------------------------------------------------------------------------------- /Source/utils/MultiLevelTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/MultiLevelTask.hpp -------------------------------------------------------------------------------- /Source/utils/SmallDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/SmallDataIO.cpp -------------------------------------------------------------------------------- /Source/utils/SmallDataIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/SmallDataIO.hpp -------------------------------------------------------------------------------- /Source/utils/SmallDataIOReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/SmallDataIOReader.cpp -------------------------------------------------------------------------------- /Source/utils/SmallDataIOReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/SmallDataIOReader.hpp -------------------------------------------------------------------------------- /Source/utils/SphericalHarmonics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/SphericalHarmonics.hpp -------------------------------------------------------------------------------- /Source/utils/Tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/Tensor.hpp -------------------------------------------------------------------------------- /Source/utils/TensorAlgebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/TensorAlgebra.hpp -------------------------------------------------------------------------------- /Source/utils/VarsTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/VarsTools.hpp -------------------------------------------------------------------------------- /Source/utils/WeylExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Source/utils/WeylExtraction.hpp -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/AMRInterpolatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/AMRInterpolatorTest.cpp -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/AMRInterpolatorTest.inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/AMRInterpolatorTest.inputs -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/InterpolatorTestLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/InterpolatorTestLevel.hpp -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/Polynomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/Polynomial.hpp -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/AMRInterpolatorTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/AMRInterpolatorTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/AHTest2DFunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/AHTest2DFunction.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2D.cpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2D.inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2D.inputs -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2DLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/ApparentHorizonTest2DLevel.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/GNUmakefile -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest2D/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest2D/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3D.cpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3D.inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3D.inputs -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3DLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/ApparentHorizonTest3DLevel.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/GNUmakefile -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/ApparentHorizonFinderTest3D/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ApparentHorizonFinderTest3D/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/BSSNMatterTest/BSSNMatterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/BSSNMatterTest/BSSNMatterTest.cpp -------------------------------------------------------------------------------- /Tests/BSSNMatterTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/BSSNMatterTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/BSSNMatterTest/GRBSSNChomboF.ChF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/BSSNMatterTest/GRBSSNChomboF.ChF -------------------------------------------------------------------------------- /Tests/BSSNMatterTest/Potential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/BSSNMatterTest/Potential.hpp -------------------------------------------------------------------------------- /Tests/BSSNMatterTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/BSSNMatterTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/CCZ4GeometryUnitTests/CCZ4GeometryUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4GeometryUnitTests/CCZ4GeometryUnitTest.cpp -------------------------------------------------------------------------------- /Tests/CCZ4GeometryUnitTests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4GeometryUnitTests/GNUmakefile -------------------------------------------------------------------------------- /Tests/CCZ4GeometryUnitTests/Mathematica_comparison.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4GeometryUnitTests/Mathematica_comparison.nb -------------------------------------------------------------------------------- /Tests/CCZ4GeometryUnitTests/values1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4GeometryUnitTests/values1.hpp -------------------------------------------------------------------------------- /Tests/CCZ4Test/CCZ4Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4Test/CCZ4Test.cpp -------------------------------------------------------------------------------- /Tests/CCZ4Test/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4Test/GNUmakefile -------------------------------------------------------------------------------- /Tests/CCZ4Test/GRBSSNChomboF.ChF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4Test/GRBSSNChomboF.ChF -------------------------------------------------------------------------------- /Tests/CCZ4Test/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CCZ4Test/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/ConstraintTest/ConstraintTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ConstraintTest/ConstraintTest.cpp -------------------------------------------------------------------------------- /Tests/ConstraintTest/ConstraintTestF.ChF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ConstraintTest/ConstraintTestF.ChF -------------------------------------------------------------------------------- /Tests/ConstraintTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ConstraintTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/ConstraintTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/ConstraintTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/CoordinateTransformationsTest/CoordinateTransformationsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CoordinateTransformationsTest/CoordinateTransformationsTest.cpp -------------------------------------------------------------------------------- /Tests/CoordinateTransformationsTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/CoordinateTransformationsTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/DerivativeUnitTests/DerivativeTestsCompute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/DerivativeUnitTests/DerivativeTestsCompute.hpp -------------------------------------------------------------------------------- /Tests/DerivativeUnitTests/DerivativeUnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/DerivativeUnitTests/DerivativeUnitTests.cpp -------------------------------------------------------------------------------- /Tests/DerivativeUnitTests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/DerivativeUnitTests/GNUmakefile -------------------------------------------------------------------------------- /Tests/DerivativeUnitTests/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/DerivativeUnitTests/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/InterpolatorTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/InterpolatorTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/InterpolatorTest/InterpolatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/InterpolatorTest/InterpolatorTest.cpp -------------------------------------------------------------------------------- /Tests/InterpolatorTest/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/InterpolatorTest/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/InterpolatorTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/InterpolatorTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/MatterWeyl4Test/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/MatterWeyl4Test/GNUmakefile -------------------------------------------------------------------------------- /Tests/MatterWeyl4Test/GravWavDecF.ChF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/MatterWeyl4Test/GravWavDecF.ChF -------------------------------------------------------------------------------- /Tests/MatterWeyl4Test/MatterWeyl4Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/MatterWeyl4Test/MatterWeyl4Test.cpp -------------------------------------------------------------------------------- /Tests/MatterWeyl4Test/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/MatterWeyl4Test/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/PositiveChiAndAlphaUnitTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/PositiveChiAndAlphaUnitTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/PositiveChiAndAlphaUnitTest/PositiveChiAndAlphaUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/PositiveChiAndAlphaUnitTest/PositiveChiAndAlphaUnitTest.cpp -------------------------------------------------------------------------------- /Tests/PositiveChiAndAlphaUnitTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/PositiveChiAndAlphaUnitTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/SetValueUnitTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SetValueUnitTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/SetValueUnitTest/SetValueUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SetValueUnitTest/SetValueUnitTest.cpp -------------------------------------------------------------------------------- /Tests/SetValueUnitTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SetValueUnitTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/SimdFunctionsUnitTests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SimdFunctionsUnitTests/GNUmakefile -------------------------------------------------------------------------------- /Tests/SimdFunctionsUnitTests/SimdFunctionsUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SimdFunctionsUnitTests/SimdFunctionsUnitTest.cpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SetHarmonic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SetHarmonic.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SetHarmonic.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SetHarmonic.impl.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SimulationParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SphericalExtractionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SphericalExtractionTest.cpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SphericalExtractionTest.inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SphericalExtractionTest.inputs -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/SphericalExtractionTestLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/SphericalExtractionTestLevel.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionUniformTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SetHarmonic.hpp: -------------------------------------------------------------------------------- 1 | ../SphericalExtractionTest/SetHarmonic.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SetHarmonic.impl.hpp: -------------------------------------------------------------------------------- 1 | ../SphericalExtractionTest/SetHarmonic.impl.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SimulationParameters.hpp: -------------------------------------------------------------------------------- 1 | ../SphericalExtractionTest/SimulationParameters.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SphericalExtractionUniformTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionUniformTest/SphericalExtractionUniformTest.cpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SphericalExtractionUniformTest.inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalExtractionUniformTest/SphericalExtractionUniformTest.inputs -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/SphericalExtractionUniformTestLevel.hpp: -------------------------------------------------------------------------------- 1 | ../SphericalExtractionTest/SphericalExtractionTestLevel.hpp -------------------------------------------------------------------------------- /Tests/SphericalExtractionUniformTest/UserVariables.hpp: -------------------------------------------------------------------------------- 1 | ../SphericalExtractionTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/SphericalHarmonicTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalHarmonicTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/SphericalHarmonicTest/HarmonicTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalHarmonicTest/HarmonicTest.hpp -------------------------------------------------------------------------------- /Tests/SphericalHarmonicTest/HarmonicTest.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalHarmonicTest/HarmonicTest.impl.hpp -------------------------------------------------------------------------------- /Tests/SphericalHarmonicTest/SphericalHarmonicTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalHarmonicTest/SphericalHarmonicTest.cpp -------------------------------------------------------------------------------- /Tests/SphericalHarmonicTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/SphericalHarmonicTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/VariableStoreTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/VariableStoreTest/GNUmakefile -------------------------------------------------------------------------------- /Tests/VariableStoreTest/UserVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/VariableStoreTest/UserVariables.hpp -------------------------------------------------------------------------------- /Tests/VariableStoreTest/VariableStoreTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/Tests/VariableStoreTest/VariableStoreTest.cpp -------------------------------------------------------------------------------- /run_clang_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRTLCollaboration/GRChombo/HEAD/run_clang_format --------------------------------------------------------------------------------