snpl.dsc module¶
I/O interface utilities for DSC data.
- snpl.dsc.load_ProteusExpDat(src, sep=',')[source]¶
Loads a CSV file exported by Netzsch Proteus DSC software into a
hicsv
object.This function loads a CSV file (typically has the file name starts with ExpDat_) into a single
hicsv
object.- Parameters:
src (str) – Path to the CSV file. Mandatory.
sep (str) – Separator. Defaults to
,
(comma). Optinal.
- Returns:
an
hicsv.hicsv
object.
Example
>>> from snpl import dsc >>> d = dsc.load_ProteusExpDat("ExpDat_file_name.csv") >>> temps, heatflows = d.ga("Temp./°C", "DSC/(mW/mg)")