-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnonlinear.html
More file actions
96 lines (79 loc) · 2.92 KB
/
Copy pathnonlinear.html
File metadata and controls
96 lines (79 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<!--------------------------------------------------------------
-- file : nonlinear.html
-- purpose : Page for website Piet Lammertse
----------------------------------------------------------------
-- history :
-- 2026-03-01 new
--------------------------------------------------------------->
<!-- FORMATTING-------- --------------------------------------->
<head>
<link rel="stylesheet" href="plammertse.css">
<title> Piet Lammertse on nonlinear control </title>
</head>
<!-- NAVIGATION BAR MENU -------------------------------------->
<body>
<ul>
<li> <a href="index.html"> Home </a> </li>
<li> <a style="background-color:#0000C0;"
href="nonlinear.html"> Nonlinear control </a> </li>
<li> <a href="phase_plane.html"> Phase plane </a> </li>
</ul>
<!------------------------------------------------------------->
<h2> Nonlinear control </h2>
<h4> bananas and non-bananas </h4>
<p> Virtually all of control theory is about linear systems.
Virtualy all of the world is not.
</p>
<p> 
As one teacher described it to me : "the world consists of
bananas and non-bananas". Linear systems are the bananas.
They are not in the majority.
They may even be next to impossible, because linearity
of cause and effect implies immediate response.
This is not likely in a world where the speed of light is finite.
</p>
<h4> linearizing nonlinear systems </h4>
<p> Linear systems have been analyzed to death,
and they are "all the same",
while all nonlinear systems
tend to be different in different ways.
But this is not the only reason that linear systems
are so popular in textbooks.
</p>
<p> 
Linear systems are ubiquitous in a more practical sense.
Most linearities in the physical world around us
are relatively smooth.
Their graphs are gentle curves, not sharp blocks and pulses.
And a gentle curve is almost straight if you travel
only a very short distance along it.
Most engineering control systems move only over a short
range around a desired setpoint.
This means that they we can approximate these curves
quite well by their straight tangent lines at the setpoint.
This amounts to taking the local derivatives of the curves,
and this is usually easy to do.
The process is called linearization.
</p>
<p> 
In the engineering sense, most physical systems are linear
in the vicinity of their setpoint.
</p>
<h4> everything is bananas </h4>
<p> Almost all control systems belong to the bananas.
This makes it so useful to study the bananas extensively.
</p>
<p>
But occasionally it is still useful to study a particular
nonlinear system for its own good.
We will discuss one of these in the sections on the
<a href="phase_plane.html"> phase plane</a> and the
<a href="dual_control_law.html"> dual control law</a>.
</p>
<!-- FOOTER --------------------------------------------------->
<br> <br>
<div class="footer"> P. Lammertse, 2026 </div>
</body>
</html>