GithubHelp home page GithubHelp logo

Comments (3)

murrayrm avatar murrayrm commented on June 22, 2024

The error is happening because of the way that signals are named. In the command

sumblk = ct.summing_junction(inputs=["ref", "p.y[0]"], output="e", name="sum")

you are creating a system "sumblk" with inputs "ref" and "p.y[0]". When you list the connections in the interconnect function, you are not connecting the second signal (which is named "sum.p.y[0]") to anything, so you are getting a warning message.

The seemingly correct command to getting everything up like you want would be

connections=[
            ("p.u[0]", "c.y[0]"),
            ("c.u[0]", "sum.e"),
            ("sum.p.y[0]", "p.y[0]")
]

However, if you try that in the current main branch, you will get an error because signal names are not allowed to include '.' (not sure what version you are running, but apparently something earlier than did not have this check).

To get what (I think) you want, use

sumblk = ct.summing_junction(inputs=["ref", "p_y[0]"], output="e", name="sum")

and

io_closed = ct.interconnect(
        [sumblk, C, P],
        inplist=["ref"],
        outlist="p.y[0]",
        connections=[
            ["p.u[0]", "c.y[0]"],
            ["c.u[0]", "sum.e"],
            ["sum.p_y[0]", "-p.y[0]"]
        ],
    )

Note that in adddition to changing the signal names, I also changed the connections to be a list of lists, as required in the current main branch (that was a change when vector signals were introduced).

from python-control.

nodedge avatar nodedge commented on June 22, 2024

Thank you, Richard, it works now.

I am curious about why there is an asymmetry between the signals ref and p_y[0].
For the signal ref, there is an implicit and automatic connection between the signal coming from inplist and sum.ref.
Instead, for the signal p.y[0], we need to declare an explicit connection between p.y[0] and sum.p_y[0]. It may be because signal names in the summing junction cannot have dots. Nevertheless, we can name signals like system.signal, and the latter is also the signal name by default when the user does not specify one.
This leads to the following ambiguous case:

  • the user does not explicitly name the output signals of a system that is linked to a summing junction,
  • the summing junction cannot directly and implicitly link the signals coming from the source system to the internal signals of the summing junction (because it would imply two dots, which is forbidden).

I might be missing the reason that led you to remove the possibility of naming signals with a dot (and hence having double dots in summing junctions).

from python-control.

murrayrm avatar murrayrm commented on June 22, 2024

The reason for now allowing the dot was because systems can be nested and so "a.b.y[0]" could mean the signal "b.y[0]" coming out of the block "a" or "a" could be an interconnected system with subsystem "b" and you could mean "y[0]" from that (internal) subsystem. This "nested" functionality is not actually implemented, so perhaps the better solution would just be to allow arbitrary signal names.

In terms of the asymmetry with the system input signal names (eg, "ref") and the internal connections, I agree that this should be generalized so that if you specify a signal name that is unique, then the system need not be specified.

I'm tagging this issue as an enhancement as a flag for someone (perhaps me, someday) to implement that functionality.

from python-control.

Related Issues (20)

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.