Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BBH Inspiral.yaml: trigger checkpoint and AH observations more often #5979

Merged
merged 2 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions support/Pipelines/Bbh/InitialData.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ Next:
id_input_file_path: __file__
id_run_dir: ./
pipeline_dir: {{ pipeline_dir }}
refinement_level: {{ L }}
polynomial_order: {{ P }}
continue_with_ringdown: True
scheduler: {{ scheduler | default("None") }}
copy_executable: {{ copy_executable | default("None") }}
Expand Down
4 changes: 2 additions & 2 deletions support/Pipelines/Bbh/Inspiral.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ def start_inspiral(
"-L",
type=int,
help="h-refinement level.",
default=0,
default=1,
show_default=True,
)
@click.option(
"--polynomial-order",
"-P",
type=int,
help="p-refinement level.",
default=5,
default=9,
show_default=True,
)
@click.option(
Expand Down
23 changes: 17 additions & 6 deletions support/Pipelines/Bbh/Inspiral.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,9 @@ PhaseChangeAndTriggers:
- Trigger:
Slabs:
EvenlySpaced:
# Current implementation checks wallclock at these global syncs
Interval: 100
# Trigger checkpoint often enough so it triggers within the last 30
# minutes of the run
Interval: 20
Offset: 0
PhaseChanges:
- CheckpointAndExitAfterWallclock:
Expand Down Expand Up @@ -270,12 +271,22 @@ EventsAndTriggers:
- PointwiseL2Norm(ThreeIndexConstraint)
- PointwiseL2Norm(FourIndexConstraint)
InterpolateToMesh: None
CoordinatesFloatingPointType: Double
FloatingPointTypes: [Double]
- ObservationAhA
- ObservationAhB
# Save disk space by saving single precision data. This is enough
# for visualization.
CoordinatesFloatingPointType: Float
FloatingPointTypes: [Float]
- ObservationExcisionBoundaryA
- ObservationExcisionBoundaryB
- Trigger:
Slabs:
EvenlySpaced:
# Trigger apparent horizon observations often enough so they find the
# next horizon based on the previous initial guess.
Interval: 10
Offset: 0
Events:
- ObservationAhA
- ObservationAhB
- Trigger:
SeparationLessThan:
Value: 2.5
Expand Down
2 changes: 0 additions & 2 deletions tests/support/Pipelines/Bbh/Test_InitialData.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ def test_cli(self):
"id_input_file_path": "__file__",
"id_run_dir": "./",
"pipeline_dir": str(self.test_dir.resolve() / "Pipeline"),
"refinement_level": 1,
"polynomial_order": 5,
"continue_with_ringdown": True,
"scheduler": "None",
"copy_executable": "None",
Expand Down
Loading