PyPalmSens 1.2.2
This release adds the following methods to PyPalmSens:
- Fast Cyclic Voltammetry
- AC Voltammetry
- Normal Pulse Voltammetry
- Fast Amperometry
- Pulsed Amperometric Detection
- Linear Sweep Potentiometry
- Multistep Potentiometry
- Stripping Chronopotentiometry
- Chronocoulometry
- Fast Impedance Spectroscopy
- Fast Galvanostatic Impedance Spectroscopy
- Mixed Mode
There is also a small backwards incompatible API change in some of the settings. Limits, triggers, and IR drop are now easier to define. See #117 for more information:
Limits
ps.settings.CurrentLimits(min=0, max=1)
ps.settings.PotentialLimits(min=0, max=1)
ps.settings.ChargeLimits(min=0, max=1)Ir Drop
ps.settings.IrDropCompensation(resistance=0.5)Triggers
ps.settings.EquilibrationTriggers(d1=True, d2=True)
ps.settings.MeasurementTriggers(d3=True)
ps.settings.DelayTriggers(delay=0.5, d0=True)What's Changed
- Add MixedMode python interface by @stefsmeets in #114
- Add methods by @stefsmeets in #109
- Simplify api triggers, limits, and ir drop settings by @stefsmeets in #117
- Improve testing for method reading / writing by @stefsmeets in #118
- Update mixed mode example with battery cycle by @stefsmeets in #119
Full Changelog: python-1.1.1...python-1.2.2