app
EIS
EIS overlays impedance data from one or more Gamry ZCURVE tables, supports Nyquist and Bode-style axis combinations, and exports the values currently selected for plotting.
Requirements And Launch
labkit_EIS_app
Inputs
Add one or more .DTA files containing a readable EIS ZCURVE. Files that do not contain the required curve are reported and omitted from the plot. The successfully decoded source list and its order are preserved in project state through portable references.
Basic Workflow
- Add the EIS DTA files.
- Choose X and Y quantities.
- Enable logarithmic X or Y scaling only for strictly positive plotted data.
- Use Fit X/Y limits to re-estimate independent limits from the current data, or Use equal X/Y scale when equal data units are wanted.
- Adjust marker, line, grid, and legend presentation.
- Export the current plot data CSV.
Axis Quantities
The available quantities are frequency, log10 frequency, time, point number, real impedance, imaginary impedance, negative imaginary impedance, impedance magnitude, phase, DC current, and DC voltage. Default axes are Zreal (ohm) and -Zimag (ohm).
Use Zreal versus -Zimag for the conventional Nyquist orientation. Use frequency versus magnitude or phase for Bode-style views. The log-axis checkbox changes MATLAB axes scaling; choosing log10(Freq) changes the data coordinate itself. Do not apply both transformations unless that is explicitly intended.
Plot Parameters
| Parameter | Default |
|---|---|
| Line width | 1.4 |
| Marker size | 6 |
| Show markers | on |
| Log X / Log Y | off / off |
| Legend / Grid | on / on |
The app never infers an equal aspect ratio from the selected quantities: a Nyquist plot starts with independently fitted limits. Use Use equal X/Y scale only when equal data units are useful for the current comparison. Use Fit X/Y limits to return to independent limits after equal scaling or a manual zoom. Equal scaling expands a fitted limit when necessary so X and Y data units have the same on-screen length; it is a one-time reset and does not constrain later wheel zooming. Axis and styling changes preserve the current source set and the current viewport; the two view buttons explicitly replace that viewport.
Output
Export current plot CSV writes the selected X/Y values for each valid file on a shared row index. Each file retains its own X and Y pair, so unequal curve lengths do not imply interpolation. A result manifest records the selected axes, plot parameters, source references, and output role.
Use Without The GUI
[item, status] = labkit.dta.loadFile("spectrum.DTA", "eis");
assert(status.ok, status.message);
curve = labkit.dta.getZCurve(item);
x = eis.analysisRun.valuesForAxis(curve, "Zreal (ohm)");
y = eis.analysisRun.valuesForAxis(curve, "-Zimag (ohm)");
plot(x, y, "o-");
axis equal
valuesForAxis is app-owned and not currently part of the published app API catalog. The DTA loader and getZCurve are supported reusable APIs.
Errors And Limitations
- Log axes omit or reject nonpositive coordinates according to MATLAB axes behavior; inspect the data rather than treating missing points as zero.
- Overlaying files does not normalize electrode area or fixture geometry.
- Axis labels describe parsed DTA columns; they do not validate the experiment configuration recorded by the instrument.
Related Topics
Change history
- 2026-07-21 - EIS uses explicit plot-view actionsfix | compatible
- 2026-07-20 - App actions require explanatory hover helpfeat | compatible
- 2026-07-19 - App SDK explicit contract replaces the retired UI runtimerefactor | breaking
- 2026-07-17 - Explicit layout action contractrefactor | compatible
- 2026-07-16 - Electrochemistry source-field validation boundaryfix | compatible
- 2026-07-16 - Runtime-owned project shape validationrefactor | compatible
- 2026-07-16 - EIS delegates source identity reconciliation to Runtime V2refactor | compatible
- 2026-07-16 - Electrochem Apps stop reading portable referencesrefactor | compatible
- 2026-07-16 - EIS consolidates its product and project contractsrefactor | compatible
- 2026-07-16 - UI 7 public runtime boundaryrefactor | breaking
- 2026-07-15 - Runtime V2 lifecycle ownership across the app fleetrefactor | breaking
- 2026-07-06 - UI 5 facade redesign, app migration, and plot refreshrefactor | breaking
- 2026-07-03 - CSC export and viewport policyfeat | compatible
- 2026-07-03 - UI groups migrationrefactor | compatible
- 2026-07-03 - Declarative app runtimerefactor | compatible
- 2026-07-01 - Debug sample packsfeat | compatible
- 2026-06-30 - App alerts through UI facadefeat | compatible
- 2026-06-24 - File-panel migrationrefactor | breaking
- 2026-06-23 - Version metadata baselinefeat | compatible