Skip to content

Commit c361b09

Browse files
Merge pull request #33 from SimonEnsemble/update_to_makie
Update to makie
2 parents 3f2c946 + f8a441d commit c361b09

13 files changed

+414
-130
lines changed

docs/make.jl

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ makedocs(
1616
"Simulation" => "sim.md",
1717
"Visualization" => "viz.md",
1818
"Control systems" => "controls.md",
19-
"FAQ" => "faq.md"],
19+
"FAQ" => "faq.md"
20+
],
2021
format = Documenter.HTML(assets = ["assets/flux.css"])
2122
)
2223

2324
deploydocs(
2425
repo = "github.com/SimonEnsemble/Controlz.jl.git",
25-
devbranch = "main"
26+
devbranch = "main",
27+
push_preview=true
2628
)

docs/src/assets/gol.png

9.83 KB
Loading

docs/src/assets/gol.tex

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
\documentclass{standalone} % run wit shell escape
2+
3+
\usepackage{tikz}
4+
\usetikzlibrary{arrows}
5+
\usepackage{verbatim}
6+
7+
\usepackage{tikz}
8+
\usepackage{color}
9+
\definecolor{honeydew}{rgb}{0.94, 1.0, 0.94}
10+
\definecolor{ivory}{rgb}{1.0, 1.0, 0.94}
11+
12+
13+
\usetikzlibrary{shapes,arrows}
14+
\begin{document}
15+
16+
17+
\tikzstyle{block} = [draw, fill=honeydew!70, rectangle, line width=0.5mm,
18+
minimum height=3em, minimum width=5em]
19+
\tikzstyle{sum} = [draw, fill=ivory!20, circle, node distance=1cm, line width=0.5mm]
20+
\tikzstyle{input} = [coordinate]
21+
\tikzstyle{output} = [coordinate]
22+
\tikzstyle{pinstyle} = [pin edge={to-,thick,black}]
23+
24+
\tikzset{
25+
circ/.style={draw, circle, fill=ivory!70}
26+
}
27+
28+
29+
% The block diagram code is probably more verbose than necessary
30+
\begin{tikzpicture}[auto, node distance=1cm,>=latex']
31+
\node [block, node distance=3cm, label=closed loop process] (Gol) {$g_{ol}(s)$};
32+
\node [circ, , line width=0.5mm, label={[label distance=-4.75mm]270:$-$},label={[label distance=-4.75mm]180:$+$}, minimum size=8mm, left of=Gol, node distance=2.5cm] (comparator) {};
33+
\node [input, node distance=2cm, left of=comparator] (Ysp) {};
34+
% \node [sum, right of=process, node distance=2.5cm] (sum) {};
35+
% \node [block, right of=controller, pin={[pinstyle]above:D},
36+
% node distance=3cm] (system) {System};
37+
\node [output, name=output, right of=Gol, node distance=2.0cm] {};
38+
\node [below of=comparator, node distance=1.5cm] (ptbelow) {};
39+
40+
% \draw [->] (input) -- node[name=u] {$u$} (system);
41+
% \node [output, right of=system] (output) {};
42+
%
43+
% \draw [draw,->] (input) -- system {$r$} (sum);
44+
\draw [->, line width=0.5mm] (Gol) -- node[name=y] {$Y_m(s)$} (output);
45+
\draw [->, line width=0.5mm] (comparator) -- node {$E(s)$} (Gol);
46+
\draw [->, line width=0.5mm] (Ysp) -- node {$Y_{sp}(s)$} (comparator);
47+
48+
\draw [-, line width=0.5mm] (y) |- (ptbelow);
49+
\draw [->, line width=0.5mm] (ptbelow) -| (comparator);
50+
% \draw [->] (system) -- node [name=y] {$y$}(output);
51+
\end{tikzpicture}
52+
53+
\end{document}

docs/src/assets/simple_example.png

6.62 KB
Loading

docs/src/assets/simple_example.tex

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
\documentclass{standalone} % run wit shell escape
2+
3+
\usepackage{tikz}
4+
\usetikzlibrary{arrows}
5+
\usepackage{verbatim}
6+
\usepackage{amsmath}
7+
8+
\usepackage{tikz}
9+
\usepackage{color}
10+
\definecolor{honeydew}{rgb}{0.94, 1.0, 0.94}
11+
\definecolor{ivory}{rgb}{1.0, 1.0, 0.94}
12+
\usetikzlibrary{shapes,arrows}
13+
\tikzstyle{block} = [draw, fill=honeydew!70, rectangle, line width=0.5mm,
14+
minimum height=3em, minimum width=5em]
15+
\tikzstyle{sum} = [draw, fill=ivory!20, circle, node distance=1cm, line width=0.5mm]
16+
\tikzstyle{input} = [coordinate]
17+
\tikzstyle{output} = [coordinate]
18+
\tikzstyle{pinstyle} = [pin edge={to-,thick,black}]
19+
20+
\tikzset{
21+
circ/.style={draw, circle, fill=ivory!70}
22+
}
23+
24+
25+
\begin{document}
26+
% The block diagram code is probably more verbose than necessary
27+
\begin{tikzpicture}[auto, node distance=1cm,>=latex']
28+
\node [block, node distance=1.75cm, label=process] (g) {$\dfrac{4}{4s^2+0.8s+1}$};
29+
\node [input, node distance=2.25cm, left of=g] (U) {};
30+
\node [output, name=output, right of=g, node distance=2.25cm] {$Y(s)$};
31+
32+
\draw [->, line width=0.5mm] (U) -- node {$U(s)$} (g);
33+
\draw [->, line width=0.5mm] (g) -- node {$Y(s)$} (output);
34+
\end{tikzpicture}
35+
36+
\end{document}

docs/src/index.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
`Controlz.jl` is a pure-[Julia](https://julialang.org/) package to analyze and simulate process dynamics and control systems using transfer function representations.
44

5-
for example, to simulate the unit step response of a second-order, underdamped system characterized by the transfer function
5+
e.g., the code below simulates the unit step response of a second-order, underdamped system:
66

7-
$$g(s) = \dfrac{4}{4s^2 + 0.8s +1}$$
7+
![](assets/simple_example.png)
88

9-
the output $Y(s)$ follows from $g(s)U(s)$, where $U(s)$ is the input.
9+
with
10+
* transfer function $g(s) = \dfrac{4}{4s^2 + 0.8s +1}$
11+
* input $U(s)=\mathcal{L}[u(t)]$
12+
* output $Y(s)=\mathcal{L}[y(t)]=g(s)U(s)$
13+
where $\mathcal{L}[\cdot]$ is the Laplace transform that maps a function in the time domain $t\in\mathbb{R}$ to the frequency domain $s\in\mathbb{C}$.
1014

1115
```julia
1216
using Controlz
@@ -24,6 +28,6 @@ viz_response(data, plot_title="SO underdamped step response")
2428

2529
# install the `Controlz.jl` package in Julia
2630

27-
`Controlz.jl` is an officially registered Julia package. install in the Julia REPL by typing `]` to go into package mode, then `add Controlz`.
31+
`Controlz.jl` is an officially registered Julia package. install in the Julia REPL by typing `]` to enter package mode, then `add Controlz`.
2832

29-
I recommend interactive [Pluto notebooks](https://github.com/fonsp/Pluto.jl) for coding in Julia, whose automatic package manager installs `Controlz.jl` upon running `using Controlz`.
33+
to write `Controlz.jl` code interactively and display the outputs, use the interactive [Pluto notebook](https://github.com/fonsp/Pluto.jl). Its automatic package manager installs `Controlz.jl` upon running `using Controlz` in a code cell.

0 commit comments

Comments
 (0)