MaximeVH / EquivalentCircuits.jl

A julia package to either fit the parameters of a specified equivalent electrical circuit to electrochemical impedance data, or to suggest a plausible circuit configuration for a given set of measurements (either through a comparison of circuits from the literature, or through an evolutionary algorithm approach).
MIT License
22 stars 6 forks source link

Just a question ... #23

Open StefanPofahl opened 1 year ago

StefanPofahl commented 1 year ago

Hi Maxime,

did you had the time, if your package is compatible to Julia v1.9.0? I sthe following relevant for the package? https://github.com/JuliaLang/julia/blob/v1.9.0-beta4/NEWS.md#delimitedfiles

Regards,

Stefan

MaximeVH commented 1 year ago

Hi Stefan,

Thanks for bringing this to my attention. I'll have to make an adjustment for v1.9.0 compatibility. The parameteroptimisation function (among others) has a method where measurements are loaded directly from the CSV files. One of my priorities for this package will be to replace the DelimitedFiles module for CSV file reading (while avoiding an additional dependency), which will no longer be in Julia Base.

Regards,

Maxime