Skip to content

LLNL/PyDV

Repository files navigation

PyDV

A 1D graphics and data analysis tool, heavily based on the ULTRA plotting tool.

PyDV Importable Interface Module

You can now call most of PyDV's functionality from within a Python script. Below is an example of how to do this.

Most Current

import sys
sys.path.append("/usr/gapps/pydv/current")
import pydvpy

curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)

PyPi or WEAVE Environment

from pydv import pydvpy

curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)

Documentation

PyDV Users Manual Documentation Status

License

PyDV is distributed under the terms of the BSD-3 License

All new contributions must be made under the BSD-3 License

See LICENSE for details.

LLNL-CODE-507071