sevnpy.sevn.sevnconst
SEVN constants , (sevnpy.sevn.sevnconst)
This module store the physical constants used in SEVN. It is currently under development and the current is just a prototype, use it at your own risk.
Example
To get the value of the const use, constname.value()
>>> from sevnpy.sevn.sevnconsts import G
>>> print(G.value())
>>> 392512559.8496094
To show all the info about the constant just print it
>>> from sevnpy.sevn.sevnconsts import G
>>> print(G())
>>> value: 392512559.8496094
>>> description: gravitational G constant in RSUN^3 YR^-2 MSUN^-1. Taken fro astropy astropy-4.3.1
>>> units: RSUN^3 YR^-2 MSUN^-1
Classes