Skip to content

LLNL/PyDV

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.

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

    curves = list()
    curves.append(pydvif.span(1,10,6))
    pydvif.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