A nested sampling approach to quasi-stellar object (QSO) accretion disc fitting.
Project description
pyADfit
A nested sampling approach to quasi-stellar object (QSO) accretion disc fitting.
This repository contains a Python module for modelling accretion discs around astrophysical objects. The module provides functions to calculate physical quantities related to accretion disks and perform parameter estimation using observational data. The accretion disc model is the alpha-disc model (see Shakura & Sunyaev 1976), while the parameter estimation can be performed either with Nessai, Raynest or CPnest.
Dependencies
- numpy
- scipy
- matplotlib
- raynest
- CPNest
- nessai
- h5py
- pandas
Installation
Clone this repository to your local machine:
git clone https://github.com/FabioRigamonti/pyADfit.git
Move into the directory where you have downloaded the repository and install the required dependencies using pip:
pip install -r requirements.txt
Start your fitting process by importing the proper libraries (see the example below or run the provided test)
Or install it directly with pip:
pip install pyADfit
Usage
To fit quasar accretion disc data, follow these steps:
- Define your input data in a text file with three columns: x-data [nu, i.e. frequency], y-data [log10 nu*Lnu], and y-errors.
- Create a YAML configuration file specifying the hyperparameters, see "config.yaml" in the example directory, fitting parameters, and other settings.
- Define your own "read_data" function to read and the path to the configuration file
- Import the "read_config_and_launch" function from "disc_launch"
- Run the parameter estimation by calling the "read_config_and_launch"
Example
#from disc_launch import read_config_and_launch # if installed via github
from pyADfit.disc_launch import read_config_and_launch # if installed via pip
import matplotlib.pyplot as plt
def read_data(file_path):
your function here
return xdata,ydata,yerr
if __name__=='__main__':
config_path = './config.yaml'
post_df,best = read_config_and_launch(config_path,read_data)
plt.show()
To run a test check also the tests directory in pyADfit_github
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 pyADfit-0.0.2.tar.gz
.
File metadata
- Download URL: pyADfit-0.0.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 256ba07e637ec946192c646843f83629226faa6b2864337e516a629439839b80 |
|
MD5 | d2f5faaed06cec4799bdde4003bc4e92 |
|
BLAKE2b-256 | 7d117ad758c886a7d9c52359999d87a54bfa48bcec791999e16e56c1507b8005 |
File details
Details for the file pyADfit-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: pyADfit-0.0.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddd525d4e28efdd52c43f5f8ecc0778e004842ad537837d67a441ecc6519ae23 |
|
MD5 | f1abf30c0f4fcfdf9fb2f8f1db45a367 |
|
BLAKE2b-256 | 8506d16a35d3b9731bd03cd1856f48823254cc98896e2a745784257a0ff93564 |