Skip to main content

Python bindings for MESA (Modules for Experiments in Stellar Astrophysics)

Project description

pyMesa logo DOI

pyMesa

Allows python to interface with MESA stellar evolution code.

Requirements:

Note: pyMesa currently only works on linux, Macs will fail to build.

Python dependencies can be installed with:

python -m pip install .

We also need the following tool from installed by you system package manager or other means:

chrpath

Installing pyMesa

The preferred way is via pip:

python -m pip install --upgrade pyMesa

Building MESA

Go to $MESA_DIR/utils/makefile_header and find USE_SHARED=no and switch that to USE_SHARED=yes

Then:

cd $MESA_DIR
./clean
./install

Supported MESA versions

Any post github version: that is a version that starts with 'r2' or is from a git checkout.

Running

Make sure you set MESA_DIR and MESASDK_ROOT before starting Python.

If you recieve a Python CalledProcessError then in your shell set the enviromenet variable

FC=$MESASDK_ROOT/bin/gfortran

There is an issue where the gfortran.wrapper is found instead of the gfortran compilier and we dont pass arguments correctly.

Usage

Here is a basic example of talking to the const module.

import pyMesa as pym

# pyMesa module defines a number of useful MESA paths as pym.SOMETHING.
print(pym.MESA_DIR) # Print MESA_DIR

# Loads the const module
const_lib,const_def = pym.loadMod("const")

# When calling a function we must either set the value we want (for intent(in/inout) variables) or an empty variable for intent(out).
ierr=0
# Calls a function
res = const_lib.const_init(pym.MESA_DIR,ierr)

# Functions and subroutines return a namedtuple

print(res.result) # prints function result
print(res.args) # prints all arguments


# If the call was a subroutine then res is a dict with the intent out variables in there
# else it contains the result of the function call

# Accessing a variable defined in a module is simply:
const_def.mev_to_ergs

# If the variable is not a parameter then you can change it with:
const_def.standard_cgrav = 5.0

# When passing a derived type, you should pass a dict to the function (filled with anything you want set)
x = {}
# or
x = {'a':1,'b':'abc','c':{'d':1}}

# Functions accepting arrays should pass a numpy array of the size it expects (if the function allocates the array, then just pass None)
x = np.zeros(size)

The folder mesa_models shows some examples of accessing different MESA modules. Note some may not work depending on whether MESA has changed the interface since the code was written.

Procedure calls

Calling a function or a subroutine is handled the same way:

result = module.my_function(arg1, arg2)

Where every arg should be provided either with the value to be inputted (intent(in) or intent(inout)) or a dummy empty provided for intent(out) values.

The result of a procedure call is returned as a NamedTuple of (result, args). Thus a function result is accessed via:

result = module.my_function(arg1, arg2)

#Function result
result.result

While all the arguments (both those that change and those that don't) are returned via:

result = module.my_function(arg1, arg2)

#Arguments
result.args['arg1']
result.args['arg2']

Arrays

Remember that Fortran has 1-based arrays while Numpy uses 0-based. This comes up if you're accessing an array via a mesa constant:

mesa_array[mesa_module.i_mesa_const]

should instead be accessed as:

mesa_array[mesa_module.i_mesa_const-1]

Bug reports:

Bug reports should go to the issue tracker on github. Please include mesa version, gfortran version, gfort2py version and pyMesa version

Contributing

In general, most of the development should go towards the gfort2py project to add new fortran features. This repository just handles building mesa for Python support.

Bug reports, if mesa versions don't work, or new examples are welcome as either pull requests or issues on the GitHub tracker.

Citations

People who use pyMESA in papers should cite this using the zenodo link for the version they used. If you use pyMesa in a project (research or teaching), let me know and i can help advertise here (also useful for me to help with funding requests). The current version's citation is in the CITATION file.

Known Projects using pyMesa

Poelarends et al 2017

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

pymesa-3.0.1.tar.gz (100.7 kB view details)

Uploaded Source

Built Distribution

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

pymesa-3.0.1-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file pymesa-3.0.1.tar.gz.

File metadata

  • Download URL: pymesa-3.0.1.tar.gz
  • Upload date:
  • Size: 100.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pymesa-3.0.1.tar.gz
Algorithm Hash digest
SHA256 976a2d62b8ac403696824b532412dfb8e2f955ee33d2cfba6f43a101d18bcd01
MD5 9a5b0cc11f283c968519f8bdcbcf5b49
BLAKE2b-256 0741f3a6eb9e14bdbf5caea85e497f3b3be79b8dd12563f76d07065e241013b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymesa-3.0.1.tar.gz:

Publisher: pypi.yml on rjfarmer/pyMesa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymesa-3.0.1-py3-none-any.whl.

File metadata

  • Download URL: pymesa-3.0.1-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pymesa-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 31456c9d17e1792eace99e9db29d29c727f523600797bad30f5b8bcaf721d21f
MD5 9eb0d5b3c6dfa227c963ea349ebc2a22
BLAKE2b-256 24ad9fe1fc2921bb35a720429e86af5a539ffb3be96648459719ffb895998989

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymesa-3.0.1-py3-none-any.whl:

Publisher: pypi.yml on rjfarmer/pyMesa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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