Code Monkey home page Code Monkey logo

Comments (1)

hexaeder avatar hexaeder commented on July 3, 2024

No, currently it is state-space system only. You could use ControlSystems.jl to get the ABCD system matrices from a transfer function object. Requires some additional code to digest those matrices though, I've used something like that for another project

function IOBlock(A::Matrix,B::Matrix,C::Matrix,D::Matrix,x,y,u; name=gensym(:LTI), warn=BlockSystems.WARN[], rem_eqs=Equation[])
    @assert size(A)[1] == size(A)[2] == size(B)[1] == size(C)[2]  == length(x)
    @assert size(B)[2] == size(D)[2] == length(u)
    @assert size(C)[1] == size(D)[1] == length(y)
    iv_candidate = unique(vcat(Symbolics.arguments.(value.(x)),
                               Symbolics.arguments.(value.(y)),
                               Symbolics.arguments.(value.(u))))
    @assert length(iv_candidate) == 1 && length(iv_candidate[begin]) == 1
    iv = iv_candidate[1][1]
    dt = Differential(iv)
    eqs = vcat(dt.(x) .~ A*x + B*u,
               y .~ C*x + D*u)
    filter!(eq -> !isequal(eq.lhs, eq.rhs), eqs)

    IOBlock(eqs, u, y; name, warn, rem_eqs)
end

from blocksystems.jl.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.