ACME.jl
ACME.jl copied to clipboard
ACME.jl - Analog Circuit Modeling and Emulation for Julia
How I would start to build up a simulation of analog circuits that include alternating or pulsing DC sources, like filters (LC, LCL, etc)? Thank you in advance!
@martinholters , I've take a look to the differents triode/pentode/... models used in the scientific litterature, I see you take part in differents study. For example the 2011 paper :...
Unitful.jl is a nice library which allows type inference over physical units making unit conversion errors less likely. I tried the following: ``` circ = @circuit begin j_in = voltagesource(9u"V")...
Is it possible to combine the two op amp models? Basically I'm trying define a gain and GBP for an op amp as well as setting a max output voltage...
The BJT documentation gives details of the model that is used, but the exact definition of `v_E`, `v_C`, `i_E`, and `i_C` is missing.
This groups `pexp`, `fq`, and `q0` of the same nonlinear sub-equation together with its defining function and cleans up the code around the nonlinear equations by more usage of `SArray`s.
Hi Martin, First of all, thank you very much for all your scientific works, and especially for ACME that is a great project. Since a moment, I attempt to port...
Consider: ```julia function nlshort() return ACME.Element(mv=[1], mi=[0], mq=[1], u0=[0], nonlinear_eq = @inline function(q) res = @SVector [q[1]] J = @SMatrix [1.0] return (res, J) end) end circ=@circuit begin Vin=voltagesource() short=nlshort(),...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.5 to 4.2.0. Release notes Sourced from codecov/codecov-action's releases. v4.2.0 What's Changed chore(deps): update deps by @thomasrockhu-codecov in codecov/codecov-action#1351 feat: allow for authentication via OIDC token by...