Skip to main content

Python toolkit for solving TOV equations, calculating tidal deformability, and exploring neutron star properties for gravitational wave and nuclear astrophysics research

Project description

๐ŸŒŸ TOV Extravaganza

Python Toolkit for Neutron Star Physics: Solve TOV Equations, Calculate Tidal Deformability, and Explore Neutron Star Properties

License: MIT PyPI version Python 3.7+ arXiv Downloads

TOV Extravaganza is a comprehensive Python package for astrophysicists and researchers studying neutron stars, compact objects, and gravitational wave astronomy. Solve the Tolman-Oppenheimer-Volkoff (TOV) equations, compute tidal deformabilities for binary neutron star mergers, generate detailed radial profiles of neutron star interiors, and explore the Mass-Radius relationship for different equations of state (EoS).


โœจ Features

  • Interactive Wizard ๐Ÿง™โ€โ™‚๏ธ โ€“ Beginner-friendly guided workflow (just answer questions!)
  • Mass-Radius Calculations โ€“ Solve TOV equations for multiple central pressures
  • Tidal Deformability โ€“ Compute dimensionless tidal deformability (ฮ›) and Love number (kโ‚‚)
  • Batch Processing ๐Ÿš€ NEW! โ€“ Process multiple EOS files in parallel:
    • Converter Batch: Convert all raw EOS files with any columns preserved
    • TOV Batch: Compute M-R curves for multiple EOS simultaneously
    • Radial Batch: Generate radial profiles for multiple EOS in parallel
  • Radial Profiles โ€“ Generate detailed internal structure profiles with M-R context
  • Target-Specific Profiles โ€“ Find stars by exact mass or radius values
  • EOS Converter โ€“ Convert raw equation of state data into TOV code units (preserves all columns!)
  • Clean Output โ€“ Organized export structure with CSV data and publication-ready plots

๐Ÿ“‚ Project Structure

TOVExtravaganza/
โ”œโ”€โ”€ tovextravaganza/             # Main package
โ”‚   โ”œโ”€โ”€ core/                    # Core logic (reusable classes)
โ”‚   โ”‚   โ”œโ”€โ”€ eos.py               # EOS interpolation
โ”‚   โ”‚   โ”œโ”€โ”€ tov_solver.py        # TOV equation solver
โ”‚   โ”‚   โ”œโ”€โ”€ tidal_calculator.py  # Tidal deformability
โ”‚   โ”‚   โ””โ”€โ”€ output_handlers.py   # Output writers
โ”‚   โ”œโ”€โ”€ cli/                     # Command-line tools
โ”‚   โ”‚   โ”œโ”€โ”€ tov.py               # TOV solver CLI
โ”‚   โ”‚   โ”œโ”€โ”€ radial.py            # Radial profiler CLI
โ”‚   โ”‚   โ””โ”€โ”€ converter.py         # EOS converter CLI
โ”‚   โ””โ”€โ”€ utils/                   # Utilities
โ”‚       โ”œโ”€โ”€ wizard.py            # Interactive wizard
โ”‚       โ”œโ”€โ”€ demo.py              # Demo file downloader
โ”‚       โ””โ”€โ”€ help_command.py      # Help command
โ”‚
โ”œโ”€โ”€ inputRaw/                    # Raw EOS data files
โ”œโ”€โ”€ inputCode/                   # Converted EOS (code units)
โ”‚
โ”œโ”€โ”€ export/                      # All output goes here!
โ”‚   โ”œโ”€โ”€ stars/                   # TOV + Tidal results
โ”‚   โ”‚   โ”œโ”€โ”€ csv/                 # M-R + Tidal data
โ”‚   โ”‚   โ””โ”€โ”€ plots/               # M-R curves, ฮ›(M), kโ‚‚(M)
โ”‚   โ””โ”€โ”€ radial_profiles/         # Internal structure
โ”‚       โ”œโ”€โ”€ json/                # Detailed radial data
โ”‚       โ””โ”€โ”€ plots/               # M(r) and p(r) plots
โ”‚
โ””โ”€โ”€ README.md                    # This file

๐Ÿš€ Quick Start

Installation

Option 1: Install from PyPI (Easiest!)

Global Install:

pip install tovextravaganza

Or in a Virtual Environment (Recommended):

python -m venv tovenv
source tovenv/bin/activate    # Linux/Mac, or tovenv\Scripts\activate on Windows
pip install tovextravaganza

โš ๏ธ Important: If using a venv, activate it before using any tovx commands!

This installs the package with console commands: tovx, tovx-radial, tovx-converter, tovx-wizard, tovx-demo, tovextravaganza

Option 2: Install from Source (For Development)

git clone https://github.com/PsiPhiDelta/TOVExtravaganza.git
cd TOVExtravaganza
pip install -e .

Why -e (editable mode)?

  • โœ… Changes to code are immediately reflected - no reinstall needed!
  • โœ… Perfect for development and testing
  • โœ… Runs tovx commands from your local modified files

โš ๏ธ Important: Regular pip install tovextravaganza installs a copy from PyPI. If you want to modify the code, you MUST use pip install -e . from the cloned repo!

Option 3: Manual (No Installation)

git clone https://github.com/PsiPhiDelta/TOVExtravaganza.git
cd TOVExtravaganza
pip install -r requirements.txt

Run scripts directly with python -m tovextravaganza.tov, etc.

Note: Without pip install -e ., the tovx commands won't be available - you must use python -m tovextravaganza.MODULE syntax.

Workflow 1: Interactive Wizard ๐Ÿง™โ€โ™‚๏ธ (Easiest - Recommended!)

Perfect for first-time users! The wizard guides you through everything:

If installed via pip:

tovx-demo        # Get example files
tovx-wizard      # Run the wizard

If using source/cloned repository:

python -m tovextravaganza.tov_wizard

The wizard will:

  • ๐Ÿ” Auto-detect your EOS files
  • โ“ Ask simple questions (no expertise needed!)
  • ๐Ÿš€ Run everything for you
  • ๐Ÿ“Š Show you exactly where results are
  • ๐ŸŽ‰ Celebrate your success!

Oh boy oh boy, so easy!

Workflow 2: Command-Line (For Power Users!)

If installed via pip:

tovx-demo                              # Get example files
tovx inputCode/hsdd2.csv              # Compute M-R + Tidal
tovx-radial inputCode/hsdd2.csv -M 1.4  # Radial profile for 1.4 Mโ˜‰
tovx-converter                         # Convert EOS units

If using source/cloned repository:

python -m tovextravaganza.tov inputCode/hsdd2.csv
python -m tovextravaganza.radial inputCode/hsdd2.csv -M 1.4
python -m tovextravaganza.converter

That's it! Results appear in the export/ folder.


๐ŸŽจ Showcase

Getting Started (First Time Users)

Via pip (easiest):

pip install tovextravaganza
tovx-demo        # Get example files
tovx-wizard      # Guided workflow

From source:

git clone https://github.com/PsiPhiDelta/TOVExtravaganza.git
cd TOVExtravaganza
pip install -e .
tovx-wizard

That's it! The wizard does everything for you!

Mass-Radius Relationship

For advanced users, run the TOV solver directly:

Via pip:

tovx inputCode/hsdd2.csv

From source:

python -m tovextravaganza.tov inputCode/hsdd2.csv

Creates:

  • M-R Curve: Mass vs. Radius for the entire EoS
  • Tidal Properties: ฮ›(M) and kโ‚‚(M) relationships
  • Key Results: Maximum mass (~2.4 Mโ˜‰ for HS(DD2) EoS), R @ 1.4 Mโ˜‰ (~13 km)

Mass-Radius Plot

Internal Structure Profiles

Running radial.py reveals the internal structure from center to surface:

Example Output:

python -m tovextravaganza.radial inputCode/hsdd2.csv -M 1.4 -M 2.0

Each profile shows:

  • Left Panel: M(r) or p(r) radial profile from center to surface
  • Right Panel: Full M-R curve with a โญ showing where this star lies

Mass Profile Example:

Mass Profile

Pressure Profile Example:

Pressure Profile


๐Ÿš€ Batch Processing Mode โ€“ Process Multiple Files in Parallel

NEW! All TOVExtravaganza tools now support batch processing to analyze multiple EOS files simultaneously using parallel workers.

Overview

Process entire directories of EOS files with a single command:

  • Converter Batch: Convert all raw EOS files to code units
  • TOV Batch: Compute M-R curves for all EOS files
  • Radial Batch: Generate radial profiles for all EOS files

1. Converter Batch โ€“ Convert Multiple EOS Files

Convert all raw EOS files in a directory with proper unit conversion.

Interactive Mode (prompts for columns and units if not provided):

# Via pip
tovx-converter --batch inputRaw/

# From source
python -m tovextravaganza.converter --batch inputRaw/

Non-Interactive Mode (all parameters specified):

# Via pip
tovx-converter --batch inputRaw/ --pcol 2 --ecol 1 --system 3  # fm^-4

# From source  
python -m tovextravaganza.converter --batch inputRaw/ --pcol 2 --ecol 3 --system 4 --workers 4

Features:

  • ๐ŸŽฏ Interactive prompts when parameters not provided
  • ๐Ÿ“ Auto-creates inputCode/Batch/ for batch folders
  • โš™๏ธ Parallel processing for multiple files
  • โœ… Preserves ALL additional columns (mu, n, temperature, phase labels, etc.)
  • โœ… Maintains header tags with "(code_units)" annotations
  • โœ… Reorders columns: p & e first (converted), then rest (preserved)

Example Output:

======================================================================
BATCH CONVERTER MODE - oh boy oh boy!
======================================================================
Found 3 CSV files in inputRaw
Processing with 2 parallel workers

Processed 3 files in 0.60 seconds
  โœ“ Successful: 3

csc.csv      => 1042 lines (MeV^-4 => code)
hsdd2.csv    =>  401 lines (CGS => code)
test.csv     =>  500 lines (Already code)
======================================================================

2. TOV Batch โ€“ Mass-Radius Sequences for Multiple EOS

Compute M-R curves and tidal deformability for all EOS files in parallel.

Via pip:

# Process all CSV files in a directory
tovx --batch inputCode/

# Specify number of workers and stars
tovx --batch inputCode/ --workers 4 -n 500

From source:

python -m tovextravaganza.tov --batch inputCode/ --workers 8 -n 200

Example Output:

======================================================================
BATCH PROCESSING MODE - oh boy oh boy!
======================================================================
Found 3 CSV files in inputCode
Processing with 24 parallel workers

Processed 3 files in 16.15 seconds
  โœ“ Successful: 3

csc                  =>  149 solutions, Max M = 1.1186 Msun
hsdd2                =>  151 solutions, Max M = 2.4229 Msun
test                 =>  140 solutions, Max M = 1.8730 Msun
======================================================================

3. Radial Batch โ€“ Internal Profiles for Multiple EOS

Generate radial profiles for all EOS files in parallel.

Via pip:

# Process all files in a directory
tovx-radial --batch inputCode/

# Custom number of profiles and workers
tovx-radial --batch inputCode/ -n 10 --workers 4

From source:

python -m tovextravaganza.radial --batch inputCode/ -n 5 --workers 2

Output Structure:

export/radial_profiles/
โ”œโ”€โ”€ csc/
โ”‚   โ”œโ”€โ”€ json/
โ”‚   โ””โ”€โ”€ plots/
โ”œโ”€โ”€ hsdd2/
โ”‚   โ”œโ”€โ”€ json/
โ”‚   โ””โ”€โ”€ plots/
โ””โ”€โ”€ test/
    โ”œโ”€โ”€ json/
    โ””โ”€โ”€ plots/

Performance Benefits

  • Parallel Processing: Uses all CPU cores by default (configurable with --workers)
  • Time Savings: ~45% faster with 2 workers, scales with more cores
  • Robust Error Handling: Individual file failures don't stop the batch
  • Organized Output: Each EOS gets its own folder (for radial profiles)

Common Options

All batch modes support:

  • --batch <directory>: Directory containing CSV files
  • --workers <N>: Number of parallel workers (default: CPU count)
  • -o, --output <dir>: Output directory
  • -n, --num-stars <N>: Number of stars/profiles (TOV & radial)

Complete Workflow Example

# Step 1: Convert all raw EOS files to code units
tovx-converter --batch inputRaw/ --system 2 --workers 4

# Step 2: Compute M-R sequences for all converted EOS
tovx --batch inputCode/ -n 200 --workers 8

# Step 3: Generate radial profiles for all EOS
tovx-radial --batch inputCode/ -n 10 --workers 8

๐Ÿ“– Usage Guide

1. tov.py โ€“ Mass-Radius & Tidal Deformability

The main workhorse. Solves TOV equations and computes tidal properties for a sequence of neutron stars.

Simple Usage

Via pip:

tovx inputCode/hsdd2.csv           # 200 stars (default)
tovx inputCode/test.csv -n 500     # 500 stars

From source:

python -m tovextravaganza.tov inputCode/hsdd2.csv
python -m tovextravaganza.tov inputCode/test.csv -n 500

Advanced Options

Via pip:

tovx inputCode/hsdd2.csv -n 1000 --dr 0.0001 --quiet --no-show

From source:

python -m tovextravaganza.tov inputCode/hsdd2.csv \
    -n 1000 \                               # Number of stars
    -o export/my_stars \                    # Custom output folder
    --dr 0.0001 \                           # Radial step size
    --rmax 50 \                             # Maximum radius
    --quiet \                               # Suppress progress messages
    --no-plot \                             # Skip plot generation
    --no-show                               # Don't display plot (still saves)

Output

CSV: export/stars/csv/<eos_name>.csv

p_c,R,M_code,M_solar,Lambda,k2
0.00010000,12.34,0.123,0.543,789.12,0.098
0.00015000,11.89,0.156,0.689,456.78,0.087
...

Plots: export/stars/plots/<eos_name>.pdf

  • Mass-Radius relationship
  • ฮ› vs M (tidal deformability)
  • kโ‚‚ vs M (Love number)

Example Output

For HS(DD2) EOS:

  • Maximum Mass: ~2.42 Mโ˜‰
  • ฮ› @ 1.4 Mโ˜‰: ~705 (dimensionless)
  • Radius @ 1.4 Mโ˜‰: ~13.26 km

2. radial.py โ€“ Internal Structure Profiles

Get detailed profiles of mass, pressure, and energy density from center to surface.

Usage

Via pip:

# Generate profiles across pressure range
tovx-radial inputCode/hsdd2.csv           # 10 profiles (default)
tovx-radial inputCode/test.csv -n 20      # 20 profiles

# Generate profiles for specific mass/radius
tovx-radial inputCode/hsdd2.csv -M 1.4          # Star closest to 1.4 Mโ˜‰
tovx-radial inputCode/hsdd2.csv -R 12.0         # Star closest to 12 km
tovx-radial inputCode/hsdd2.csv -M 1.4 -M 2.0   # Multiple masses
tovx-radial inputCode/hsdd2.csv -M 1.4 -R 12    # By mass AND radius

From source:

# Generate profiles across pressure range
python -m tovextravaganza.radial inputCode/hsdd2.csv           # 10 profiles (default)
python -m tovextravaganza.radial inputCode/test.csv -n 20      # 20 profiles

# Generate profiles for specific mass/radius
python -m tovextravaganza.radial inputCode/hsdd2.csv -M 1.4          # Star closest to 1.4 Mโ˜‰
python -m tovextravaganza.radial inputCode/hsdd2.csv -R 12.0         # Star closest to 12 km
python -m tovextravaganza.radial inputCode/hsdd2.csv -M 1.4 -M 2.0   # Multiple masses
python -m tovextravaganza.radial inputCode/hsdd2.csv -M 1.4 -R 12    # By mass AND radius

Output

JSON: export/radial_profiles/json/<eos_name>.json

{
  "stars": [
    {
      "p_c": 0.001,
      "R": 12.34,
      "M": 0.543,
      "radial_data": {
        "r": [0.0, 0.001, 0.002, ...],
        "M": [0.0, 0.0001, 0.0003, ...],
        "p": [0.001, 0.0009, 0.0008, ...],
        "e": [0.05, 0.049, 0.048, ...]
      }
    }
  ]
}

Plots: export/radial_profiles/plots/

  • Mass/mass_profile_N.pdf โ€“ M(r) vs r
  • Pressure/pressure_profile_N.pdf โ€“ p(r) vs r

3. converter.py โ€“ EOS Unit Converter

Sick of unit conversion? I was too. This tool converts raw EOS data into TOV code units.

Interactive Mode

Via pip:

tovx-converter

From source:

python -m tovextravaganza.converter

The script will guide you through:

  1. Selecting input file from inputRaw/
  2. Specifying if the file has a header
  3. Identifying pressure and energy density columns
  4. Choosing the unit system (MeV fmโปยณ, CGS, etc.)

CLI Mode

Via pip:

tovx-converter <input_file> <pcol> <ecol> <system> [output_file]

From source:

python -m tovextravaganza.converter <input_file> <pcol> <ecol> <system> [output_file]

Example:

# Via pip
tovx-converter hsdd2.csv 2 3 4 inputCode/hsdd2.csv

# From source
python -m tovextravaganza.converter hsdd2.csv 2 3 4 inputCode/hsdd2.csv

Parameters:

  • <input_file>: Filename in inputRaw/ folder
  • <pcol>: Pressure column (1-based index)
  • <ecol>: Energy density column (1-based index)
  • <system>: Unit system choice (0-4, see table below)
  • [output_file]: Optional output path (default: inputCode/<input_file>)

Output: Converted file saved to inputCode/ with columns rearranged as [p, e, ...]

Supported Unit Systems

System Pressure Units Energy Density Units
0 Code units Code units
1 MeVโปโด MeVโปโด
2 MeVยทfmโปยณ MeVยทfmโปยณ
3 fmโปโด fmโปโด
4 CGS (dyn/cmยฒ) CGS (erg/cmยณ)

๐Ÿ“Š Understanding the Physics

TOV Equations

The Tolman-Oppenheimer-Volkoff equations describe hydrostatic equilibrium in general relativity:

dM/dr = 4ฯ€rยฒฮต(r)
dp/dr = -(ฮต + p)(M + 4ฯ€rยณp) / (r(r - 2M))

Solved in dimensionless "code units" where G = c = Mโ˜‰ = 1.

Tidal Deformability

The dimensionless tidal deformability ฮ› characterizes how a neutron star deforms under tidal forces:

ฮ› = (2/3) kโ‚‚ (cยฒR/GM)โต

where kโ‚‚ is the second Love number, obtained by solving a coupled ODE system with TOV.

Love Number kโ‚‚ Calculation

The tidal perturbation is governed by:

dy/dr = -(2/r)y - yยฒ - yยทF(r) + rยฒยทQ(r)
dH/dr = y

where:

  • y(r) = rยทdH/dr / H(r) is the logarithmic derivative
  • H(r) is the metric perturbation function
  • F(r) = (1 - 2M(r)/r)โปยน ยท [2M(r)/rยฒ + 4ฯ€r(p(r) - ฮต(r))]
  • Q(r) = (1 - 2M(r)/r)โปยน ยท [4ฯ€(5ฮต(r) + 9p(r) + (ฮต(r) + p(r))ยท(dฮต/dp)) - 6/rยฒ - (2M(r)/rยฒ + 4ฯ€r(p(r) - ฮต(r)))ยฒ]

The Love number kโ‚‚ is then extracted at the surface (r = R):

kโ‚‚ = (8/5) Cโต (1-2C)ยฒ [2C(y_R - 1) - y_R + 2] / {2C[4(y_R + 1)Cโด + (6y_R - 4)Cยณ + (26 - 22y_R)Cยฒ + 3(5y_R - 8)C - 3y_R + 6] - 3(1-2C)ยฒ[2C(y_R - 1) - y_R + 2]ln(1-2C)}

where C = GM/(cยฒR) is the compactness and y_R = y(R).


๐ŸŽจ Example Showcase

Mass-Radius Curves

Using HS(DD2) EOS, we compute 200 neutron star configurations:

python -m tovextravaganza.tov inputCode/hsdd2.csv

Result: The M-R curve shows:

  • Stable branch reaching M_max โ‰ˆ 2.42 Mโ˜‰
  • Typical 1.4 Mโ˜‰ star has R โ‰ˆ 13.26 km
  • Tidal deformability ฮ›(1.4 Mโ˜‰) โ‰ˆ 705

Internal Structure

For a 1.4 Mโ˜‰ star:

python -m tovextravaganza.radial inputCode/hsdd2.csv -n 10

Result: Radial profiles reveal:

  • Central pressure: ~10ยนโต g/cmยณ
  • Pressure drops by ~6 orders of magnitude to surface
  • Mass accumulates mostly in inner 10 km

๐Ÿ› ๏ธ Technical Details

Code Units

All calculations use geometric units where G = c = 1:

Internal (Code) Units:

  • Radius: km
  • Mass: km (geometric units, where 1 Mโ˜‰ = 1.4766 km)
  • Pressure: dimensionless code units
  • Energy density: dimensionless code units

Output Units (for display):

  • tov.py: Converts M to Mโ˜‰ in output CSV and plots
  • radial.py: Shows M(r) in Mโ˜‰, p(r) in MeV/fmยณ, r in km

Conversion Factors:

  • M [Mโ˜‰] = M [km] / 1.4766
  • p [MeV/fmยณ] = p [code] / 1.32379ร—10โปโถ
  • ฮต [MeV/fmยณ] = ฮต [code] / 1.32379ร—10โปโถ

Numerical Methods

  • ODE Integration: scipy.integrate.odeint with rtol=1e-12, atol=1e-14
  • EOS Interpolation: Piecewise-linear
  • Division-by-zero handling: Small epsilon added to denominator (1e-30)
  • Boundary conditions: Start integration at r=1e-5 to avoid r=0 singularity

Filtering

The code automatically filters out unphysical solutions:

  • Stars that hit maximum radius (R = 100 km)
  • Low-mass configurations (M < 0.05 Mโ˜‰)

๐Ÿ“ File Formats

Input EOS File (inputCode/)

CSV format, no header, columns: p, e, ...

0.00010000,0.00050000
0.00012000,0.00058000
...

Output CSV (export/stars/csv/)

Header row with columns: p_c, R, M_code, M_solar, Lambda, k2

p_c,R,M_code,M_solar,Lambda,k2
0.00010000,12.34,0.123,0.543,789.12,0.098
...

Output JSON (export/radial_profiles/json/)

Structured JSON with full radial arrays for each star.


โš™๏ธ Command Reference

tov.py

Argument Type Default Description
input positional required Input EOS file path
-n, --num-stars int 200 Number of stars to compute
-o, --output str export/stars Output folder
--dr float 0.0005 Radial step size
--rmax float 100.0 Maximum radius
--quiet flag False Suppress output
--no-plot flag False Skip all plots
--no-show flag False Don't display plot window

radial.py

Argument Type Default Description
input positional required Input EOS file path
-n, --num-stars int 10 Number of profiles
-o, --output str export/radial_profiles Output folder

๐Ÿ› Troubleshooting

Common Issues

Problem: ValueError: not enough values to unpack

  • Solution: Check that your EOS file has at least 2 columns (p, e)

Problem: ODEintWarning: Excess work done on this call

  • Solution: Reduce --dr or check for discontinuities in your EOS

Problem: All masses are zero

  • Solution: Your EOS might be too soft or in wrong units. Run converter.py first.

Problem: UnicodeEncodeError in terminal output

  • Solution: Set environment variable: PYTHONIOENCODING=utf-8

๐Ÿค Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please maintain the code style and add tests where appropriate.


๐Ÿ“š References

Key Papers

  1. Tolman (1939): Static Solutions of Einstein's Field Equations
  2. Oppenheimer & Volkoff (1939): On Massive Neutron Cores
  3. Damour & Nagar (2009): Relativistic tidal properties of neutron stars
  4. Abbott et al. (2017): GW170817: Observation of Gravitational Waves from a Binary Neutron Star Inspiral

EOS Databases


๐Ÿ“ง Contact

Author: Hosein Gholami
Website: hoseingholami.com
Email: mohogholami@gmail.com
GitHub: TOVExtravaganza

Questions? Suggestions? Found a bug? Don't hesitate to reach out or open an issue!


๐Ÿ“„ License

This project is licensed under the MIT License. See LICENSE for details.


๐Ÿ“– Citation

If you use TOV Extravaganza in your research, please cite this repository and our work on arXiv:

@software{Gholami_TOVExtravaganza_Python_toolkit_2025,
  author = {Gholami, Hosein},
  license = {MIT},
  month = jan,
  title = {{TOVExtravaganza: Python toolkit for solving the Tolman-Oppenheimer-Volkoff (TOV) equations and exploring neutron star properties}},
  url = {https://github.com/PsiPhiDelta/TOVExtravaganza},
  version = {1.0.0},
  year = {2025}
}

@article{Gholami:2024csc,
  author = "Gholami, Hosein and Rather, Ishfaq Ahmad and Hofmann, Marco and Buballa, Michael and Schaffner-Bielich, J{\"u}rgen",
  title = "{Astrophysical constraints on color-superconducting phases in compact stars within the RG-consistent NJL model}",
  eprint = "2411.04064",
  archivePrefix = "arXiv",
  primaryClass = "hep-ph",
  month = "11",
  year = "2024"
}

arXiv: 2411.04064


๐ŸŽ‰ Acknowledgments

Thanks to the astrophysics and gravitational wave communities for making neutron star science accessible and exciting.

Oh boy oh boy! May your neutron stars be massive and your convergence ever stable! ๐ŸŒŸ


Built with Python, NumPy, SciPy, and a healthy dose of enthusiasm for compact objects.

๐Ÿ”‘ Keywords

neutron-star neutron-stars tov tov-equation tov-equations tidal-deformability gravitational-waves astrophysics equation-of-state eos python-physics astronomy compact-objects GW170817 nuclear-astrophysics nuclear-physics mass-radius love-number relativistic-stars color-superconductivity superconductivity csc cfl quark-matter dense-matter phase-transitions qcd binary-neutron-stars ligo virgo general-relativity stellar-structure computational-physics scientific-computing


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tovextravaganza-1.4.2.tar.gz (158.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tovextravaganza-1.4.2-py3-none-any.whl (150.0 kB view details)

Uploaded Python 3

File details

Details for the file tovextravaganza-1.4.2.tar.gz.

File metadata

  • Download URL: tovextravaganza-1.4.2.tar.gz
  • Upload date:
  • Size: 158.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.5

File hashes

Hashes for tovextravaganza-1.4.2.tar.gz
Algorithm Hash digest
SHA256 17c484069a49131731a28ac1b79f03f123a6f0ad489bafb34fb7d643d1c13f5e
MD5 20f14a406cc191d4dd397314dbe41ddb
BLAKE2b-256 ceaa852350c66320c4d5ac8f9f62c380a5f5c2bd146630da033a15382fdb7075

See more details on using hashes here.

File details

Details for the file tovextravaganza-1.4.2-py3-none-any.whl.

File metadata

File hashes

Hashes for tovextravaganza-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b4f4cbed9c9e84646cb42c9a54ffc6cc4f8f5942db4477cf5c620808ed4b5d27
MD5 a274f34dc4e172da46cb5046d28b641c
BLAKE2b-256 79629c1b34381eb292c05122629ed1d56b9ca00514326530fac833803548f479

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page