Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.1 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.1 KB

Explore your FARGO3D simulation outputs with Fargonaut!

Fargonaut is a package for post-processing and visualising outputs of FARGO3D, written in Python.

Build and test

>>> 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()

Gas pressure output 50

See the documentation for installation instructions, example usage and the API reference.

Contributing to Fargonaut

Contributions to Fargonaut are welcome. Please see the contributing guidelines.

License

Fargonaut is fully open source. For more information about its license, see LICENSE.