I have run a density of states like so and I would like to extract the raw data:
iv_characteristics.addProjectedLocalDensityOfStates(
gate_source_voltages = back_gate_source_voltages,
drain_source_voltages = drain_source_voltages,
energies=numpy.linspace(-0.01, 0.035, 6000)*eV, # 10ueV steps
)
I opened the Projected Local Density of States plot and clicked on Export --> export data as text file, but I get an error:
Traceback (most recent call last):
File "zipdir/NL/GUI/Graphics/Plotter/PlotView/PlotView.py", line 389, in save
File "zipdir/NL/GUI/Graphics/Plotter/IO/Export.py", line 131, in writeTXT
File "zipdir/NL/GUI/Graphics/Plotter/IO/Export.py", line 159, in _dataToTXT
File "zipdir/NL/GUI/Graphics/Plotter/IO/Export.py", line 212, in _data1DtoTXT
NameError: name 'dataToTXT' is not defined
I'm not sure where and how I should define `dataToTXT` or fix this issue.
Thank you!