File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
ModelicaByExample/DiscreteBehavior/SynchronousSystems Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
This file collects the significant changes to the book since its initial public release.
2
2
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
+
3
20
### Version 0.3.2
4
21
5
22
#### Enhancements
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ within ModelicaByExample.DiscreteBehavior.SynchronousSystems;
2
2
model SamplingWithClocks "Using clocks to sub and super sample"
3
3
Real x, y, z, w;
4
4
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 ));
7
7
z = subSample(x, 2 );
8
8
w = superSample(x, 3 );
9
9
end SamplingWithClocks;
You can’t perform that action at this time.
0 commit comments