Constants Class

This is a class for physical constants

Notes:

This class is a simple way to store physical constants in a single place. It is intended to be used as a parent class for other classes, so that the constants can be accessed as attributes of the child classes.

Examples:

>>> from empmap.constants import ConstantsManagement
>>> constants = ConstantsManagement()
>>> constants.PI
class empmap.constants.ConstantsManagement

A class for managing constants

Notes

This class is a wrapper class for the other constants classes. It is intended to be used as a parent class for other classes, so that the constants can be accessed as attributes of the child classes.