Utilities to prepare Einstein Toolkit simulations
Project description
Writing parameter files for Cactus simulations is not easy. To achieve a
successful evolution, one has to tune several parameters, which typically depend
on the grid configuration or on other settings. Writing these par files by hand
is tedious and error-prone. Jhuki
is a Python library to prepare
simulations for the Einstein Toolkit
(or Cactus-based codes).
:warning: This package is currently under development. It may be full of bugs, and its interfaces might change without notice. It is also highly opinionated.
Features
- Generate parameter files from a template using configuration files or command-line arguments
- Take care of the grid configuration given the desired resolution at the finest level and other details
- Generate binary black hole configurations for quasi-circular mergers (automatically setting the linear momenta)
- Add dissipation
You can find the reference material at the website sbozzolo.github.io/Jhuki.
Examples
Integration with SimFactory
Jhuki
integrates well with SimFactory
. Assume you have the following
simple test_sim.rpar
file:
#!/usr/bin/env python3
from jhuki.simfactory import simfactory_option
from jhuki.simfactory import write_parfile
par_b = simfactory_option("@PARB@", 5)
m_plus = 0.5
lines="""
TwoPunctures::par_b = $par_b
TwoPunctures::par_m_plus = $m_plus
# Rest of the parameter file
"""
write_parfile(lines)
SimFactory
can execute this Python file to produce a .par
file to run:
sim create-run test_sim.rpar
will run the parfile with content
TwoPunctures::par_b = 5
TwoPunctures::par_m_plus = 0.5
The value for par_b
is run-time adjustable:
sim create-run test_sim.rpar --define PARB 10
will produce
TwoPunctures::par_b = 10
TwoPunctures::par_m_plus = 0.5
Since arbitrary Python code can be executed before the parfile is written,
all the features of Jhuki
presented below can be used directly. For instance,
as discussed below, one can prepare quasi circular inspirals with the function
prepare_quasicircular_inspiral
, so one can add the entire parfile code for
the two puncture with:
#!/usr/bin/env python3
from jhuki.simfactory import simfactory_option
from jhuki.simfactory import write_parfile
from jhuki.twopunctures import prepare_quasicircular_inspiral
par_b = simfactory_option("@PARB@", 5)
twopunctures = prepare_quasicircular_inspiral(mass_ratio=1,
coordinate_distance=par_b)
lines="""
$twopunctures
# Rest of the parameter file
"""
write_parfile(lines)
This sets up a good fraction of the parfile needed to run quasi circular inspirals.
Working with grid structures
Problem: you want to generate the parfile code for a grid structure with two refinement centers, each with 8 levels and resolution at the finest level 0.001 and CFL factor of 0.4 (in the finest level). In this, you want to ensure that the maximum timestep on the grid never exceeds 1 to avoid numerical instability.
#!/usr/bin/env python3
from jhuki import grid as pg
refinement_radii = tuple(2**level for level in range(7))
center1 = pg.RefinementCenter(refinement_radii,
dx_fine=0.001,
cfl_fine=0.5,
center_num=1,
position=(10,0,0))
# Same but with different center_num and position
center2 = pg.RefinementCenter(refinement_radii,
dx_fine=0.001,
cfl_fine=0.5,
center_num=2,
position=(-10,0,0))
grid_not_synced = pg.Grid((center1, center2), outer_boundary=1000)
grid_synced = pg.set_dt_max_grid(grid_not_synced, dt_max=1)
print(grid_synced)
This will output something along the lines of
CartGrid3D::type = "coordbase"
Carpet::domain_from_coordbase = "yes"
CoordBase::domainsize = "minmax"
Driver::ghost_size = 3
CoordBase::boundary_size_x_lower = 3
CoordBase::boundary_size_y_lower = 3
CoordBase::boundary_size_z_lower = 3
CoordBase::boundary_size_x_upper = 3
CoordBase::boundary_size_y_upper = 3
CoordBase::boundary_size_z_upper = 3
CoordBase::xmin = 1000
CoordBase::ymin = 1000
CoordBase::zmin = 1000
CoordBase::xmax = 1000
CoordBase::ymax = 1000
CoordBase::zmax = 1000
CoordBase::dx = 0.64
CoordBase::dy = 0.64
CoordBase::dz = 0.64
Carpet::max_refinement_levels = 8
Carpet::time_refinement_factors = "[1,1,2,4,8,16,32,64]"
CarpetRegrid2::num_levels_1 = 8
CarpetRegrid2::position_x_1 = 10
CarpetRegrid2::position_y_1 = 0
CarpetRegrid2::position_z_1 = 0
CarpetRegrid2::radius_1[1] = 64
CarpetRegrid2::radius_1[2] = 32
CarpetRegrid2::radius_1[3] = 16
CarpetRegrid2::radius_1[4] = 8
CarpetRegrid2::radius_1[5] = 4
CarpetRegrid2::radius_1[6] = 2
CarpetRegrid2::radius_1[7] = 1
CarpetRegrid2::num_levels_2 = 8
CarpetRegrid2::position_x_2 = -10
CarpetRegrid2::position_y_2 = 0
CarpetRegrid2::position_z_2 = 0
CarpetRegrid2::radius_2[1] = 64
CarpetRegrid2::radius_2[2] = 32
CarpetRegrid2::radius_2[3] = 16
CarpetRegrid2::radius_2[4] = 8
CarpetRegrid2::radius_2[5] = 4
CarpetRegrid2::radius_2[6] = 2
CarpetRegrid2::radius_2[7] = 1
You can also add a small shift to the grid so that the origin is not on (0,0,0)
passing the tiny_shift
argument to Grid
.
Another useful method is rl_synced_every
, which returns the number of
iterations at which all the refinement levels are at the same time.
Working with binary black holes
Problem: you want to simulate a binary black quasi-circular merger. This can be
tricky because you have to provide the correct linear momenta. With Juhki
,
this is trivial:
#!/usr/bin/env python3
from jhuki.twopunctures import prepare_quasicircular_inspiral
mass_ratio = 1
coordinate_distance = 12
dimensionless_spin_plus = (0.1, 0.2, 0.3)
dimensionless_spin_minus = (0.4, -0.1, -0.2)
twopunctures = prepare_quasicircular_inspiral(mass_ratio,
coordinate_distance,
chi_plus=dimensionless_spin_plus,
chi_minus=dimensionless_spin_minus)
print(twopunctures)
This will produce an output similar to the following:
ADMBase::initial_data = twopunctures
ADMBase::initial_lapse = twopunctures-averaged
ADMBase::initial_shift = zero
ADMBase::initial_dtlapse = zero
ADMBase::initial_dtshift = zero
TwoPunctures::give_bare_mass = no
TwoPunctures::par_b = 6.0
TwoPunctures::target_m_plus = 0.5
TwoPunctures::target_m_minus = 0.5
TwoPunctures::par_P_plus[0] = -0.000531433937072403
TwoPunctures::par_P_plus[1] = 0.0848055056299618
TwoPunctures::par_P_plus[2] = 0
TwoPunctures::par_P_minus[0] = 0.000531433937072403
TwoPunctures::par_P_minus[1] = -0.0848055056299618
TwoPunctures::par_P_minus[2] = 0
TwoPunctures::par_S_plus[0] = 0.025
TwoPunctures::par_S_plus[1] = 0.05
TwoPunctures::par_S_plus[2] = 0.075
TwoPunctures::par_S_minus[0] = 0.1
TwoPunctures::par_S_minus[1] = -0.025
TwoPunctures::par_S_minus[2] = -0.05
TwoPunctures::center_offset[0] = 0.0
TwoPunctures::center_offset[1] = 0.0
TwoPunctures::center_offset[2] = 0.0
This module should be used along with the Grid
one.
Installation
The best way to install Jhuki
is by cloning this repo and using
poetry. If you have poetry install, just run
poetry install
in the folder where you cloned the repo to install Jhuki
.
Alternatively, Jhuki
is available on PyPI.
Tests
Jhuki
comes with a suite of unit tests. To run the tests,
poetry run pytest --cov=./ --cov-report=term
Tests are automatically run after each commit by GitHub Actions. This will also tell you what is the test coverage.
Code style
- We lint the code with
black -l 79
. - We work only with immutable structures.
What does jhuki mean?
The word jhuki belongs to the Tohono O'odham vocabulary and means rain. If
kuibit is the tool you use to collect the
fruit of your Cactus
simulations, then jhuki
is what allowed that fruit to
be there in the first place.
Credits
The logo contains elements designed by pngtree.com.
The computation of the momenta for quasi-circular mergers of binary black holes
uses
NRPyPN.
If you use this module, please follow the citation guidelines as specified by
the documentation in the NRPyPN
repo.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jhuki-0.1.0.dev11.tar.gz
.
File metadata
- Download URL: jhuki-0.1.0.dev11.tar.gz
- Upload date:
- Size: 40.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.0-1-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0808b33d546ab5df687051f67677aa92717a2b71003fa4349d230b9bae40b139 |
|
MD5 | 3d15830aaefeaf0b52109a9d06d85e3a |
|
BLAKE2b-256 | 70806a04774043de9175f95c81bf026d6508883f2c991c57b7b569464f4dad9d |
File details
Details for the file jhuki-0.1.0.dev11-py3-none-any.whl
.
File metadata
- Download URL: jhuki-0.1.0.dev11-py3-none-any.whl
- Upload date:
- Size: 58.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.0-1-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25444d9cb34e30f4c381fc9d89e0da5c21b49a2efdf65dadbab21acd9f41b44c |
|
MD5 | 9dff6a77aa68e538e53ed5ec5ffccebd |
|
BLAKE2b-256 | 1a6e1a6951ba7191b939491f5b29716bc977a8542a788e3a92a6d6b98eb29383 |