StaticSystems
Basic Operation of StaticSystems
A static system is a system whose output y at time t depends on the current time t and the value of its input u. The input-output relation of a static systems is represented by its output function outputfunc which is of the form
where g is the output function outputfunc. Note that outputfunc is expected to have two inputs, the value u of the input and the current time t. The simulation in Jusdl is a clocked-simulation, that is the data flowing through the input and output connections of components is actually sampled at time t. Therefore, for example, the system modeled by
is actually sampled at clock ticks t which is generated by a Clock. Therefore the sampled system corresponds to
where $k$ is $k_i T_s$ where $k_i$ is an integer number, $T_s$ is the sampling interval. $T_s$ corresponds to sampling time dt of Clock. Thus, the system given above is coded like
function g(u, t)
# Define the relation `y = g(u, t)`
endFor further clarity, let us continue with a case study. Consider the following static system,
Note that the number of inputs is 2 and the number of outputs of is 3. To define such a system, the output function is written as
julia> g(u, t) = [t * u[1], sin(u[1]), cos(u[2])]
g (generic function with 1 method)Note that the function g is defined in such a way that the input value u is sampled, which implies u is not a vector of function but is a vector of real. Having defined output function outputfunc, the system can be constructed.
julia> ss = StaticSystem(readout=g, input=Inport(2), output=Outport(3))
StaticSystem(readout:g, input:Inport(numpins:2, eltype:Inpin{Float64}), output:Outport(numpins:3, eltype:Outpin{Float64}))Note the construction of input bus Inport(2) and output bus Outport(3) by recalling that the number of input is 2 and the number of output is 3.
A StaticSystem evolves by being triggered through its trigger pin. When triggered from its trigger pin, a StaticSystem reads the current time t from its trigger pin and computes its output y according to its output function outputfunc and writes its output y(t) to its output port (if output port exists since output port may be nothing depending on the relation defined by outputfunc). When constructed, a StaticSystem is not ready to be triggered since its trigger pin is not writeable. To make ss drivable, we need to construct the ports and pins for input-output and signaling.
julia> oport, iport, trg, hnd = Outport(length(ss.input)), Inport(length(ss.output)), Outpin(), Inpin{Bool}()
(Outport(numpins:2, eltype:Outpin{Float64}), Inport(numpins:3, eltype:Inpin{Float64}), Outpin(eltype:Float64, isbound:false), Inpin(eltype:Bool, isbound:false))
julia> connect!(oport, ss.input)
2-element Array{Link{Float64},1}:
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
julia> connect!(ss.output, iport)
3-element Array{Link{Float64},1}:
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
julia> connect!(trg, ss.trigger)
Link(state:open, eltype:Float64, isreadable:false, iswritable:false)
julia> connect!(ss.handshake, hnd)
Link(state:open, eltype:Bool, isreadable:false, iswritable:false)
julia> task = launch(ss)
Task (runnable) @0x00007f0999ecabf0
julia> taskout = @async while true
all(take!(iport) .=== NaN) && break
end
Task (runnable) @0x00007f0999ecbd00Now, ss is drivable from its trg pin.
julia> ss.trigger.link
Link(state:open, eltype:Float64, isreadable:false, iswritable:true)Now let us drive ss.
julia> put!(trg, 1.)As this point ss wait for its to be written. Let us write some data to oport.
julia> put!(oport, [10., 10.])
2-element Array{Float64,1}:
10.0
10.0ss read the value u of its input(since ss.input is connected to oport), read the current time t, and computed its output value y and wrote it its output port. To signal that it succeeded to be take the step, it put a true to its handshake which needs to be taken.
julia> hnd.link
Link(state:open, eltype:Bool, isreadable:true, iswritable:false)
julia> take!(hnd)
trueWe can see the current data in the output of ss through iport (since iport is connected to ss.output)
julia> iport[1].link.buffer
64-element Buffer{Cyclic,Float64,1}:
10.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
⋮
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0Let us further drive ss.
julia> for t in 2. : 10.
put!(trg, t)
put!(oport, [10 * t, 20 * t])
take!(hnd)
endThe data written to the output of ss is also written to the internal buffers of output.
julia> iport[1].link.buffer
64-element Buffer{Cyclic,Float64,1}:
1000.0
810.0
640.0
490.0
360.0
250.0
160.0
90.0
40.0
10.0
⋮
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0In addition to the generic StaticSystem, Jusdl provides some well-known static systems given in the next section.
Full API
Jusdl.@def_static_system — Macro@def_static_system exwhere ex is the expression to define to define a new AbstractStaticSystem component type. The usage is as follows:
@def_source struct MyStaticSystem{T1,T2,T3,...,TN,OP, RO} <: AbstractStaticSystem
param1::T1 = param1_default # optional field
param2::T2 = param2_default # optional field
param3::T3 = param3_default # optional field
⋮
paramN::TN = paramN_default # optional field
input::IP = input_default # mandatory field
output::OP = output_default # mandatory field
readout::RO = readout_function # mandatory field
endHere, MyStaticSystem has N parameters, an output port, an input port and a readout function.
input, output and readout are mandatory fields to define a new static system. The rest of the fields are the parameters of the system.
readout must be a two-argument function, i.e. a function of time t and input value u.
New static system must be a subtype of AbstractStaticSystem to function properly.
Example
julia> @def_static_system struct MyStaticSystem{IP, OP, RO} <: AbstractStaticSystem
α::Float64 = 1.
β::Float64 = 2.
input::IP = Inport()
output::OP = Outport()
readout::RO = (t,u) -> α * u[1] + β * u[2]
end
julia> sys = MyStaticSystem();
julia> sys.α
1.0
julia> sys.input
1-element Inport{Inpin{Float64}}:
Inpin(eltype:Float64, isbound:false)Jusdl.StaticSystem — TypeStaticSystem(; readout, input, output)Consructs a generic static system with readout function, input port and output port.
Example
julia> ss = StaticSystem(readout = (t,u) -> u[1] + u[2], input=Inport(2), output=Outport(1));
julia> ss.readout(0., ones(2))
2.0Jusdl.Adder — TypeAdder(signs=(+,+))Construts an Adder with input bus input and signs signs. signs is a tuplle of + and/or -. The output function g of Adder is of the form,
where n is the length of the input, $s_k$ is the kth element of signs, $u_k$ is the kth value of input and $y$ is the value of output. The default value of signs is all +.
Example
julia> adder = Adder(signs=(+, +, -));
julia> adder.readout([3, 4, 5], 0.) == 3 + 4 - 5
trueJusdl.Multiplier — TypeMultiplier(ops=(*,*))Construts an Multiplier with input bus input and signs signs. signs is a tuplle of * and/or /. The output function g of Multiplier is of the form,
where n is the length of the input, $s_k$ is the kth element of signs, $u_k$ is the kth value of input and $y$ is the value of the output. The default value of signs is all *.
Example
julia> mlt = Multiplier(ops=(*, *, /));
julia> mlt.readout([3, 4, 5], 0.) == 3 * 4 / 5
trueJusdl.Gain — TypeGain(input; gain=1.)Constructs a Gain whose output function g is of the form
where $K$ is gain, $u$ is the value of input and y is the value of output.
Example
julia> K = [1. 2.; 3. 4.];
julia> sfunc = Gain(input=Inport(2), gain=K);
julia> sfunc.readout([1., 2.], 0.) == K * [1., 2.]
trueJusdl.Terminator — TypeTerminator(input::Inport)Constructs a Terminator with input bus input. The output function g is eqaul to nothing. A Terminator is used just to sink the incomming data flowing from its input.
Jusdl.Memory — TypeMemory(delay=1.; initial::AbstractVector{T}=zeros(1), numtaps::Int=5, t0=0., dt=0.01, callbacks=nothing,
name=Symbol()) where TConstructs a 'Memorywith input businput. A 'Memory delays the values of input by an amount of numdelay. initial determines the transient output from the Memory, that is, until the internal buffer of Memory is full, the values from initial is returned.
Example
julia> Memory(delay=0.1)
Memory(delay:0.1, numtaps:5, input:Inport(numpins:1, eltype:Inpin{Float64}), output:Outport(numpins:1, eltype:Outpin{Float64}))
julia> Memory(delay=0.1, numtaps=5)
Memory(delay:0.1, numtaps:5, input:Inport(numpins:1, eltype:Inpin{Float64}), output:Outport(numpins:1, eltype:Outpin{Float64}))Jusdl.Coupler — TypeCoupler(conmat::AbstractMatrix, cplmat::AbstractMatrix)Constructs a coupler from connection matrix conmat of size $n \times n$ and coupling matrix cplmat of size $d \times d$. The output function g of Coupler is of the form
where $\otimes$ is the Kronecker product, $E$ is conmat and $P$ is cplmat, $u$ is the value of input and y is the value of output.
Jusdl.Differentiator — TypeDifferentiator(kd=1; callbacks=nothing, name=Symbol())Consructs a Differentiator whose input output relation is of the form
where $u(t)$ is the input and $y(t)$ is the output and $kd$ is the differentiation constant.