Coupled Systems
Consider two coupled LorenzSystem
s. The first system evolves by
\[\begin{array}{l} \dot{x}_{1,1} = \sigma (x_{1,2} - x_{1,1}) + \epsilon (x_{2,1} - x_{1,1}) \\[0.25cm] \dot{x}_{1,2} = x_{1,1} (\rho - x_{1,3}) - x_{1,2} \\[0.25cm] \dot{x}_{1,3} = x_{1,1} x_{1,2} - \beta x_{1,3} \end{array}\]
and the second one evolves by
\[\begin{array}{l} \dot{x}_{2,1} = \sigma (x_{2,2} - x_{2,1}) + \epsilon (x_{1,1} - x_{2,1}) \\[0.25cm] \dot{x}_{2,2} = x_{2,1} (\rho - x_{2,3}) - x_{2,2} \\[0.25cm] \dot{x}_{2,3} = x_{2,1} x_{2,2} - \beta x_{2,3} \end{array}\]
where $x_1 = [x_{1,1}, x_{1,2}, x_{1,3}]$, $x_2 = [x_{2,1}, x_{2,2}, x_{2,3}]$ are the state vectors of the first and second system, respectively. The coupled system can be written more compactly as,
\[\begin{array}{l} \dot{X} = F(X) + \epsilon (A ⊗ P) X \end{array}\]
where $X = [x_{1}, x_{2}]$, $F(X) = [f(x_{1}), f(x_{2})]$,
\[ A = \begin{bmatrix} -1 & 1 \\ 1 & -1 \\ \end{bmatrix}\]
\[ P = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \\ \end{bmatrix}\]
and $f$ is the Lorenz dynamics given by
\[\begin{array}{l} \dot{x}_1 = \sigma (x_2 - x_1) \\[0.25cm] \dot{x}_2 = x_1 (\rho - x_3) - x_2 \\[0.25cm] \dot{x}_3 = x_1 x_2 - \beta x_3 \end{array}\]
The script below constructs and simulates the model
using Causal
# Describe the model
ε = 10.
@defmodel model begin
@nodes begin
ds1 = ForcedLorenzSystem()
ds2 = ForcedLorenzSystem()
coupler = Coupler(conmat=ε*[-1 1; 1 -1], cplmat=[1 0 0; 0 0 0; 0 0 0])
writer = Writer(input=Inport(6))
end
@branches begin
ds1[1:3] => coupler[1:3]
ds2[1:3] => coupler[4:6]
coupler[1:3] => ds1[1:3]
coupler[4:6] => ds2[1:3]
ds1[1:3] => writer[1:3]
ds2[1:3] => writer[4:6]
end
end
nothing # hide
To construct the model, we added ds1
and ds2
each of which has input ports of length 3 and output port of length 3. To couple them together, we constructed a coupler
which has input port of length 6 and output port of length 6. The output port of ds1
is connected to the first 3 pins of coupler
input port, and the output of ds2
is connected to last 3 pins of coupler
input port. Then, the first 3 pins of coupler
output is connected to the input port of ds1
and last 3 pins of coupler
output is connected to the input port of ds2
. The block diagram of the model is given below.
The the signal-flow graph of the model has 4 directed branches and each of these branches has 3 links.
It also worths pointing out that the model has two algebraic loops. The first loop consists of ds1
and coupler
, and the second loop consists of ds2
and coupler
. During the simulation these loops are broken automatically without requiring any user intervention.
The model is ready for simulation. The code block below simulates the model and plots the simulation data.
using Plots
# Simulation settings.
ti, dt, tf = 0, 0.01, 100.
# Simulate the model
simulate!(model, ti, dt, tf, withbar=false)
# Read simulation data
t, x = read(getnode(model, :writer).component)
# Compute errors
err = x[:, 1] - x[:, 4]
# Plot the results.
p1 = plot(x[:, 1], x[:, 2], label="ds1")
p2 = plot(x[:, 4], x[:, 5], label="ds2")
p3 = plot(t, err, label="err")
plot(p1, p2, p3, layout=(3, 1))
[ Info: 2021-05-10T16:15:04.772 Started simulation... [ Info: 2021-05-10T16:15:04.772 Inspecting model... ┌ Info: The model has algrebraic loops:[[1, 3], [3, 2]] └ Trying to break these loops... [ Info: Loop [1, 3] is broken [ Info: Loop [2, 3] is broken [ Info: 2021-05-10T16:15:05.189 Done. [ Info: 2021-05-10T16:15:05.189 Initializing the model... [ Info: 2021-05-10T16:15:05.865 Done... [ Info: 2021-05-10T16:15:07.274 Running the simulation... [ Info: 2021-05-10T16:15:11.061 Done... [ Info: 2021-05-10T16:15:11.061 Terminating the simulation... [ Info: 2021-05-10T16:15:11.064 Done. qt.qpa.xcb: could not connect to display qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. Available platform plugins are: linuxfb, minimal, offscreen, vnc, xcb. Aborted (core dumped) connect: Connection refused GKS: can't connect to GKS socket application GKS: Open failed in routine OPEN_WS GKS: GKS not in proper state. GKS must be either in the state WSOP or WSAC in routine ACTIVATE_WS