Note, this may be well outside the scope of what tala tries to achieve since it describes geometric relationships, but I post here it here in case it is useful.
The code below results in some unnecessarily long connectors.
D: D:{
A
I
P}
M :M:{
A
I
P
}
S: L: {
A
I
P
H
}
# Surface Intermediate Mixing
S.A <-> M.A
S.I <-> M.I
S.P <-> M.P
# THC downwelling
S.H -> D.A
# THC advection
D.A -> D.I
D.I -> D.P
M.P -> M.I
M.I -> M.A
# THC Upwelling
M.A <- D.A
M.I <- D.I
M.P <- D.P
M.A -> S.H
Note, this may be well outside the scope of what tala tries to achieve since it describes geometric relationships, but I post here it here in case it is useful.
The code below results in some unnecessarily long connectors.