This invention relates to block diagram modeling.
Dynamic real-world systems such as electrical circuits, shock absorbers, braking systems, and many other electrical, mechanical and thermodynamic systems may be modeled, simulated and analyzed on a computer system using block diagram modeling. Block diagram modeling graphically depicts time-dependent mathematical relationships among a system's inputs, states and outputs, typically for display on a graphical user interface (GUI). Block diagram modeling may also be used to simulate the behavior of a system for a specified time span.
According to one aspect of the invention, a modeling process includes providing a plurality of blocks, each of the blocks representing functional entities that operate on a plurality of input signal values, generating a plurality of output signal values from the plurality of blocks, grouping the plurality of output signal values as an ordered set in a multiplexer as a first composite signal and outputting the first composite signal.
One or more of the following features may also be included. Each of the blocks includes at least one output signal port. A plurality of input signal values and the output signal values have at least one attribute. The attribute may be a name, a data type, a numeric value and/or a dimensionality. The ordered set is a linked list data structure. The linked list data structure is a tree data structure, the tree data structure including m+n nodes. m represents a number of independent signals and n represents a number of composite signals.
The process further includes decomposing the first composite signal into the plurality of output signals in a demultiplexer.
The process further includes viewing the ordered set contained in the first composite signal with a composite signal viewer.
At least one of the input signal values is a second composite signal.
According to another aspect of the invention, a block diagram modeling process includes providing a first block and a second block, the blocks representing functional entities, generating a plurality of output signal values from the first and second block, grouping the plurality of output signal values as an ordered set in a multiplexer as a first composite signal and processing the composite signal in a third block.
One of more of the following features may also be included. The ordered set is a linked list data structure. At least one of the input signals is a second composite signal.
The process further includes decomposing the composite signal into a plurality of input signal values.
The process further includes viewing the composite signal in a composite signal viewer. The composite signal viewer displays the ordered set contained in the composite signal on a graphical user interface (GUI). The GUI is provided on an input/output device.
In another aspect, the invention features a computer program product residing on a computer readable medium having instructions stored thereon which, when executed by the processor, cause the processor to provide a plurality of blocks, each of the blocks representing functional entities, generate a plurality of output signal values from the plurality of blocks, group the plurality of output signal values as an ordered set in a multiplexer as a first composite signal and output the first composite signal.
One or more of the following features may also be included. The computer readable medium is a random access memory (RAM). The computer readable medium is read only memory (ROM). The computer readable medium is hard disk drive.
In another aspect, the invention features a processor and a memory configured to provide a plurality of blocks, each of the blocks representing functional entities, generate a plurality of output signal values from the plurality of blocks, group the plurality of output signal values as an ordered set in a multiplexer as a first composite signal and output the first composite signal.
One or more of the following features may also be included. The processor and the memory are incorporated into a personal computer. The processor and the memory are incorporated into a network server residing in the Internet. The processor and the memory are incorporated into a single board computer.
Embodiments of the invention may have one or more of the following advantages.
Block diagram modeling tools can be enhanced to use composite signals. Using composite signals results in an efficient graphical representation of a block diagram model.
Composite signals simplify the generation of a block diagram model and the resulting visual appearance of the block diagram model.
Composite signals simplify block diagram model navigation and signal selection. In addition, composite signals simplify block diagram model validation and integration of individual block diagram models.
Using composite signals reduces the memory requirements for graphical representation of the block diagram model and block diagram model execution. Further, using composite signals results in faster block diagram model execution, e.g., simulation and code generation.
Other features and advantages of the invention will become apparent from the following description, including the claims and drawings.
The details of one or more embodiments of the invention are set forth in the accompanying drawings and the description below. Other features, objects, and advantages of the invention will be apparent from the description and drawings, and from the claims.
Like reference symbols in the various drawings indicate like elements.
Computer 12 contains a processor 16 and a memory 18. Memory 18 stores an operating system (“OS”) 20 such as Windows98® or Linux, a TCP/IP protocol stack 22 for communicating over network 14, and machine-executable instructions 24 executed by processor 16 to perform a block diagram modeling process 50 below. Computer 12 also includes an input/output (I/O) device 26 for display of a graphical user interface (GUI) 28 to a user 30.
Referring to
Referring to
In the block diagram model 70, signals contained in the signal lines 74 are the streams of values that appear at the output ports of blocks. It is useful to think of signals as values traveling along the lines that connect the blocks in the block diagram model 70. The signal can have a wide range of attributes, such as name, data type (e.g., 8-bit, 16-bit, or 32-bit integer), numeric type (e.g., real or complex), and dimensionality (e.g., one-dimension array, two-dimension array, or multi-dimensional array).
A composite signal represents an ordered set of signals that are bundled together to form a single entity. Signals in a composite signal can have different attributes, i.e., data types, numeric types, dimensionalities, and so forth. Therefore, the composite signal is a general facility for grouping and splitting a set of heterogeneous or homogeneous signals without loss of information.
For example, we can generate a block diagram model to simulate the water level in a simple dynamic system that includes a tank and a valve. We can also generate a block diagram model to simulate the water temperature of the same dynamic system. Level and temperature are two properties of the same entity, i.e., the water in the tank. Therefore, we can generate a composite signal that includes a “water temperature” signal and a “water level” signal. Using composite signals, the graphical representation of the block diagram model corresponds closely to the structure of the dynamic system. Thus, validation and integration of individual block diagram models into large system block diagram models is greatly simplified.
A composite signal may be defined mathematically by the three-tuple (S, C, f), where
Boolean function f(x, y) is true if signal xεC contains signal yεC, otherwise it is false.
Each composite signal cj is an ordered set, i.e., array, of single signals and composite signals, respectively. That is, given a composite signal cj=[cj1, . . . , cjp, . . . , cjk], cj includes k signals where cjp is the pth signal of cj for 1≦p≦k. The pth signal can be an independent signal cjpεS or a composite signal cjpεC such that cj≠cjp and f(cjp, cj)=false. f(cjp, cj)=false indicates that there is no circular relationship (feedback or cycle) between two signals. In addition, since a composite signal is an ordered set of signals, a signal may appear several times in a composite signal. Thus, a composite signal may contain non-unique signals.
A composite signal may be represented in memory 18 using a tree data structure and implemented by the processor 16 as, for example, a linked list. A linked list is a dynamic data structure that may be implemented, for example, using the C language “struct” construct. A linked list includes individual nodes that are “linked” to each other via a pointer. Most operations that manipulate insertion, deletion, item look ups, or even counting the number of elements in a linked list entail traversing the linked list to search for the appropriate item or place in the list. Linked list operations are pointer manipulation intensive, however the trade off with flexibility in managing memory is well worth the effort.
The tree data structure contains m+n nodes, where m and n are the number of independent and composite signals. A link between two nodes in the tree data structure indicates that the signal at the start of the link contains the signal at the end of the link. The following example illustrates an exemplary tree data structure.
For ease of illustration, this first example includes three single signals s1, s2, and s3, and two composite signals c1 and c2. Thus, S={s1, s2, s3} and C={c1, c2}. Composite signal c1 includes two single signals s3 and s2, while composite signal c2 includes four signals s1, s2, s2 and c1. Accordingly, f(c1, c2)=false and f(c2, c1)=true.
Referring to
By way of further example, referring to
Referring now to
Signal s1, two s2 signals, and composite signal c1 enter a multiplexer 90. Output from multiplexer 90 is composite signal c2, which includes single signals s1, s2, s2 and composite signal c1.
It should be noted that the composite signals are represented as triple arrowhead lines for ease of viewing and to differentiate them from single signals that are represented as single arrowhead lines.
Each multiplexer generates a composite signal. For example, if the composite signal is stored as a linked list, the multiplexer generates a linked list containing nodes, each of the nodes representing the constituent signals of the composite signal. A multiplexer has multiple input ports for receiving multiple input signals and one output port for sending out one composite signal. Each input signal can be an independent signal or a composite signal. The output signal is a composite signal. Cascading multiplexers can define signal hierarchy in the composite signal.
In a block diagram model, each block has different behaviors. Each block can accept and output signals with different attributes. If a block accepts individual signals in a composite signal, the block accepts the corresponding composite signal, and it outputs a composite signal as well. This is because all properties of signals in a composite signal are preserved. This improves generated instructions 24 and results in faster model execution (simulation).
This second example builds on the block diagram model of Example 1 by including a gain block. A gain block is an example of a stateless block. The gain block outputs its input signal multiplied by a constant called a gain. The output of a gain block is determined entirely by the current value of the input and the gain, which does not vary. A gain block therefore has no states.
If a gain block with a gain parameter K is driven by the composite signal c1 in Example 1, the output composite signal is K*c1=[K*s3, K*s2]. Remember that composite signal c1 includes single signals s3 and s2. The gain block accepts a composite signal and outputs a composite signal, the same way a gain block accepts a single signal and outputs a single signal. For example, if a gain block with the gain parameter K is driven by the single input signal so, the output single signal is K*s1.
Mathematically, the computational complexity of processing a composite signal and a set of independent single signals in the processor 16 is the same. Practically, processing a composite signal in the processor 16 is faster than processing each single signal individually. This is because, in the case of a composite signal, function-call overhead in the processor 16 for processing each single signal individually is eliminated. In Example 2 above, if a composite signal includes four signals, instead of having four gain blocks, one to amplify each of the four input signals, one gain block is used to amplify a composite signal that includes four constituent signals.
When a block operates on a composite signal, the attributes of the resulting composite signal may not be the same as the original composite signal attributes. For example, if K is a [3×2] matrix, and s1 is a [2×4] matrix contained within a composite signal, the first signal of the output composite signal is a [3×4] matrix. Therefore, the dimensionality attribute of the first signal in the input and output composite signals is different.
Referring to
Single signal s1 and composite signal c1 enter multiplexer 110. Output from multiplexer 110 is a composite signal c2 that includes single signal s1 and composite signal c1. Composite signal c2 enters demultiplexer 112. Output from demultiplexer 112 is single signal s1 and composite signal c1.
In general, a demultiplexer has one input port and one or more output ports. The input port receives a composite signal and each output port outputs a selected signal from the composite input signal. For example, if the composite signal is stored as a linked list, the demultiplexer traverses the linked list, outputting each of the linked list elements, i.e., signals. Thus, one or more demultiplexers complement one or more multiplexers, i.e., each multiplexer builds a composite signal and each demultiplexer decomposes a composite signal into one or more of its component parts (single signals and/or composite signals).
The block diagram model 100 also includes a composite signal viewer block 114. The composite signal viewer block 114 provides graphic visualization of a composite signal to the user 30 on the graphical user interface 28 of the input/output device 26.
A composite signal viewer block may be coupled to any composite signal. A composite signal viewer block has one input port and no output port. The one input port receives an input signal that is a composite signal. The composite signal viewer block provides graphical visualization of the hierarchical organization of the composite signal input.
Referring to
Referring to
Process 50 is not limited to use with the hardware/software configuration of
Processes 50 may be implemented using one or more computer programs executing on programmable computers that each includes a processor, a storage medium readable by the processor (including volatile and non-volatile memory and/or storage elements), at least one input device, and one or more output devices.
Each such program may be implemented in a high level procedural or object-oriented programming language to communicate with a computer system. Also, the programs can be implemented in assembly or machine language. The language may be a compiled or an interpreted language.
Each computer program may be stored on a storage medium or device (e.g., CD-ROM, hard disk, or magnetic diskette) that is readable by a general or special purpose programmable computer for configuring and operating the computer when the storage medium or device is read by the computer to perform process 50.
Process 50 may also be implemented as a computer-readable storage medium, configured with a computer program, where, upon execution, instructions in the computer program cause the computer to operate in accordance with process 50.
Further aspects, features and advantages will become apparent from the following.
Number | Name | Date | Kind |
---|---|---|---|
5475851 | Kodosky et al. | Dec 1995 | A |
5920489 | Dibrino et al. | Jul 1999 | A |
6539027 | Cambron | Mar 2003 | B1 |
Number | Date | Country | |
---|---|---|---|
20020183998 A1 | Dec 2002 | US |