HSU-ANT / ACME.jl

ACME.jl - Analog Circuit Modeling and Emulation for Julia
Other
142 stars 24 forks source link

Support Unitful in element construction #93

Closed martinholters closed 1 year ago

martinholters commented 1 year ago

For example:

julia> using ACME, Unitful

julia> resistor(4.7e3) == resistor(4.7u"kΩ")
true

Note that this requires Julia 1.9 as it uses a package extension.

Closes #17.