Skip to content

Commit bef83a7

Browse files
committed
Ooops, forgot to add these with last commit
1 parent a8dbe80 commit bef83a7

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
This file collects the significant changes to the book since its initial public release.
22

3+
### Version 0.3.3
4+
5+
#### Enhancements
6+
7+
* Made the first few plots in the discussion of state events NOT
8+
interactive. This is because they are showing results of problematic
9+
simulations that don't run well in the browser.
10+
11+
* Clarification of heater output plot in discussion of hysteresis.
12+
13+
* Emphasized the use of equations over algorithms in discussion on
14+
hysteresis.
15+
16+
#### Bug Fixes
17+
18+
* Completed discussion of synchronous clock features in section on Sampling.
19+
320
### Version 0.3.2
421

522
#### Enhancements

ModelicaByExample/DiscreteBehavior/SynchronousSystems/SamplingWithClocks.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ within ModelicaByExample.DiscreteBehavior.SynchronousSystems;
22
model SamplingWithClocks "Using clocks to sub and super sample"
33
Real x, y, z, w;
44
equation
5-
x = sample(time, Clock(0.1));
6-
y = sample(time, Clock(0.1));
5+
x = sample(time, Clock(1,10));
6+
y = sample(time, Clock(1,10));
77
z = subSample(x, 2);
88
w = superSample(x, 3);
99
end SamplingWithClocks;

0 commit comments

Comments
 (0)