forked from modelica/Reference-FMUs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.html
88 lines (74 loc) · 1.56 KB
/
readme.html
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
<html>
<head>
<title>VanDerPol</title>
<style>
body {
font-family: Helvetica, Arial, Sans-Serif;
margin: 2em;
}
div.container {
max-width: 750px;
margin: auto;
}
h1, h2 {
border-bottom: 1px solid #eaecef;
padding-bottom: .3em;
}
pre {
background-color: #f6f8fa;
border-radius: 3px;
font-size: 85%;
line-height: 1.45;
overflow: auto;
padding: 16px;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
th, td {
font-size: 0.9em;
border: 1px solid #dfe2e5;
padding: 6px 13px;
}
</style>
</head>
<body>
<div class="container">
<h1>VanDerPol</h1>
<p>The model implements the <a href="https://en.wikipedia.org/wiki/Van_der_Pol_oscillator">Van der Pol oscillator</a>.</p>
<pre><code>der(x0) = x1
der(x1) = mu * ((1 - x0 * x0) * x1) - x0
</code></pre>
<p>whith</p>
<table>
<thead>
<tr>
<th align="left">Variable</th>
<th align="left">Description</th>
<th align="right">Start</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">x</td>
<td align="left">The only state</td>
<td align="right">1</td>
</tr>
<tr>
<td align="left">der(x)</td>
<td align="left">The derivative</td>
<td align="right">0</td>
</tr>
<tr>
<td align="left">k</td>
<td align="left">Parameter</td>
<td align="right">1</td>
</tr>
</tbody>
</table>
<p>The plot shows the <a href="VanDerPol_ref.csv">reference result</a> computed with <a href="https://github.com/modelica/Reference-FMUs/blob/master/examples/simulate_fmi3_me.c">simulate<em>fmi3</em>me.c</a>.</p>
<p><img src="VanDerPol_ref.svg" alt="plot" /></p>
</div>
</body>
</html>