PyPalmSens 1.3.2
This release adds the option to do potential and time scans with EIS.
Single frequency scan:
method = ps.ElectrochemicalImpedanceSpectroscopy(
scan_type = 'fixed',
frequency_type = 'scan',
)Multiple frequency scans repeated over a range of DC potential values:
method = ps.ElectrochemicalImpedanceSpectroscopy(
scan_type = 'potential',
frequency_type = 'scan',
begin_potential = -0.5,
end_potential = 0.5,
step_potential = 0.1,
)Multiple frequency scans repeated over a time interval:
method = ps.ElectrochemicalImpedanceSpectroscopy(
scan_type = 'time',
frequency_type = 'scan',
run_time = 10.0,
interval_time = 0.1,
)Single frequency measurement repeated over a time interval:
method = ps.ElectrochemicalImpedanceSpectroscopy(
scan_type = 'time',
frequency_type = 'fixed',
)What's Changed
- Expose Scan and Frequency scans in Python API by @stefsmeets in #153
Full Changelog: python-1.3.1...python-1.3.2