Fargonaut is a package for post-processing and visualising outputs of FARGO3D, written in Python.
>>> from fargonaut.output import Output
>>> output = Output("/path/to/fargo3d/outputs/fargo")
>>> gasdens50 = output.get_field("gasdens", 50)
>>> gasenergy50 = output.get_field("gasenergy", 50)
>>> gaspressure50 = gasdens50 * gasenergy50**2
>>> gaspressure50.plot()
See the documentation for installation instructions, example usage and the API reference.
Contributions to Fargonaut are welcome. Please see the contributing guidelines.
Fargonaut is fully open source. For more information about its license, see LICENSE.