rumoca 0.7.28

Modelica compiler written in RUST
Documentation
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
//! MLS §16: Low Priority Synchronous Language Element Tests
//!
//! This module tests low priority normative requirements:
//! - §16.1: Clock types and declarations
//! - §16.2: Clock operators (sample, hold, previous, etc.)
//! - §16.3: Clocked equations and algorithms
//! - §16.4: Discretized partitions
//!
//! Reference: https://specification.modelica.org/master/synchronous-language-elements.html

use crate::spec::{expect_failure, expect_parse_success};

// ============================================================================
// §16.1 CLOCK TYPES
// ============================================================================

/// MLS §16.1: Clock type declarations
mod clock_types {
    use super::*;

    /// MLS: "Clock type declaration"
    #[test]
    fn mls_16_1_clock_basic() {
        expect_parse_success(
            r#"
            model Test
                Clock c;
            equation
            end Test;
            "#,
        );
    }

    /// MLS: "Clock constructor with Real interval"
    #[test]
    fn mls_16_1_clock_real_interval() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
            equation
            end Test;
            "#,
        );
    }

    /// MLS: "Clock constructor with Integer factor"
    #[test]
    fn mls_16_1_clock_integer_factor() {
        expect_parse_success(
            r#"
            model Test
                Clock c1 = Clock(0.1);
                Clock c2 = Clock(c1, 2);
            equation
            end Test;
            "#,
        );
    }

    /// MLS: "Clock with Boolean condition"
    #[test]
    fn mls_16_1_clock_boolean_condition() {
        expect_parse_success(
            r#"
            model Test
                Boolean trigger;
                Clock c = Clock(trigger);
            equation
                trigger = time > 1;
            end Test;
            "#,
        );
    }

    /// MLS: "Clock cannot have flow prefix"
    #[test]
    #[ignore = "Clock flow restriction not yet implemented"]
    fn mls_16_1_clock_no_flow() {
        expect_failure(
            r#"
            connector BadConnector
                flow Clock c;
            end BadConnector;
            "#,
            "BadConnector",
        );
    }

    /// MLS: "Clock cannot have stream prefix"
    #[test]
    #[ignore = "Clock stream restriction not yet implemented"]
    fn mls_16_1_clock_no_stream() {
        expect_failure(
            r#"
            connector BadConnector
                stream Clock c;
            end BadConnector;
            "#,
            "BadConnector",
        );
    }

    /// MLS: "Clock cannot have discrete prefix"
    #[test]
    #[ignore = "Clock discrete restriction not yet implemented"]
    fn mls_16_1_clock_no_discrete() {
        expect_failure(
            r#"
            model Test
                discrete Clock c;
            equation
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §16.2 CLOCK OPERATORS
// ============================================================================

/// MLS §16.2: Clock operators
mod clock_operators {
    use super::*;

    /// MLS: "sample(u, clock) samples continuous signal"
    #[test]
    fn mls_16_2_sample_operator() {
        expect_parse_success(
            r#"
            model Test
                Real x(start = 0);
                Clock c = Clock(0.1);
                Real xs;
            equation
                der(x) = 1;
                xs = sample(x, c);
            end Test;
            "#,
        );
    }

    /// MLS: "hold(u) converts clocked to continuous"
    #[test]
    fn mls_16_2_hold_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real xs;
                Real xh;
            equation
                xs = sample(1.0, c);
                xh = hold(xs);
            end Test;
            "#,
        );
    }

    /// MLS: "previous(u) returns previous clocked value"
    #[test]
    fn mls_16_2_previous_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x(start = 0);
            equation
                x = previous(x) + 1;
            end Test;
            "#,
        );
    }

    /// MLS: "subSample(u, factor) reduces clock rate"
    #[test]
    fn mls_16_2_subsample_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c1 = Clock(0.1);
                Real x;
                Real y;
            equation
                x = sample(1.0, c1);
                y = subSample(x, 2);
            end Test;
            "#,
        );
    }

    /// MLS: "superSample(u, factor) increases clock rate"
    #[test]
    fn mls_16_2_supersample_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c1 = Clock(0.1);
                Real x;
                Real y;
            equation
                x = sample(1.0, c1);
                y = superSample(x, 2);
            end Test;
            "#,
        );
    }

    /// MLS: "shiftSample(u, shiftCounter, resolution) shifts clock"
    #[test]
    fn mls_16_2_shiftsample_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x;
                Real y;
            equation
                x = sample(1.0, c);
                y = shiftSample(x, 1, 2);
            end Test;
            "#,
        );
    }

    /// MLS: "backSample(u, backCounter, resolution) back-shifts"
    #[test]
    fn mls_16_2_backsample_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x;
                Real y;
            equation
                x = sample(1.0, c);
                y = backSample(x, 1, 2);
            end Test;
            "#,
        );
    }

    /// MLS: "noClock(u) removes clock association"
    #[test]
    fn mls_16_2_noclock_operator() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x;
                Real y;
            equation
                x = sample(1.0, c);
                y = noClock(x);
            end Test;
            "#,
        );
    }

    /// MLS: "interval() returns clock interval"
    #[test]
    fn mls_16_2_interval_function() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x;
                Real dt;
            equation
                x = sample(1.0, c);
                dt = interval(x);
            end Test;
            "#,
        );
    }

    /// MLS: "firstTick() returns true on first tick"
    #[test]
    fn mls_16_2_first_tick() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Boolean isFirst;
            equation
                isFirst = firstTick(c);
            end Test;
            "#,
        );
    }
}

// ============================================================================
// §16.3 CLOCKED EQUATIONS
// ============================================================================

/// MLS §16.3: Clocked equations and when-clauses
mod clocked_equations {
    use super::*;

    /// MLS: "Clocked when-clause with Clock condition"
    #[test]
    fn mls_16_3_clocked_when() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x(start = 0);
            equation
                when c then
                    x = previous(x) + 1;
                end when;
            end Test;
            "#,
        );
    }

    /// MLS: "Clock inference from equations"
    #[test]
    fn mls_16_3_clock_inference() {
        expect_parse_success(
            r#"
            model Test
                input Real u;
                output Real y;
                Real x(start = 0);
            equation
                x = previous(x) + u;
                y = x;
            end Test;
            "#,
        );
    }

    /// MLS: "Base-clock partitioning"
    #[test]
    fn mls_16_3_base_clock_partitioning() {
        expect_parse_success(
            r#"
            model Test
                Clock c1 = Clock(0.1);
                Clock c2 = Clock(0.2);
                Real x1, x2;
            equation
                x1 = sample(1.0, c1);
                x2 = sample(2.0, c2);
            end Test;
            "#,
        );
    }
}

// ============================================================================
// §16.4 DISCRETIZED PARTITIONS
// ============================================================================

/// MLS §16.4: Discretized continuous-time partitions
mod discretized_partitions {
    use super::*;

    /// MLS: "Solver method annotation"
    #[test]
    fn mls_16_4_solver_method() {
        expect_parse_success(
            r#"
            model Test
                Real x(start = 0);
            equation
                der(x) = -x;
            annotation(
                __Dymola_discretized = true,
                __Dymola_solver = "ExplicitEuler"
            );
            end Test;
            "#,
        );
    }

    /// MLS: "ExplicitEuler solver"
    #[test]
    fn mls_16_4_explicit_euler() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(solverMethod = "ExplicitEuler");
                Real x(start = 1);
            equation
                when c then
                    x = previous(x) - 0.1 * previous(x);
                end when;
            end Test;
            "#,
        );
    }

    /// MLS: "ImplicitEuler solver"
    #[test]
    fn mls_16_4_implicit_euler() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(solverMethod = "ImplicitEuler");
                Real x(start = 1);
            equation
                when c then
                    x = previous(x) / (1 + 0.1);
                end when;
            end Test;
            "#,
        );
    }
}

// ============================================================================
// §16.5 INITIALIZATION OF CLOCKED PARTITIONS
// ============================================================================

/// MLS §16.5: Clocked partition initialization
mod clocked_initialization {
    use super::*;

    /// MLS: "Clocked variable initialization with start"
    #[test]
    fn mls_16_5_clocked_start() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x(start = 5);
            equation
                x = previous(x) + 1;
            end Test;
            "#,
        );
    }

    /// MLS: "previous() returns start value on first tick"
    #[test]
    fn mls_16_5_previous_start() {
        expect_parse_success(
            r#"
            model Test
                Clock c = Clock(0.1);
                Real x(start = 0);
                Real y;
            equation
                when c then
                    y = previous(x);
                    x = y + 1;
                end when;
            end Test;
            "#,
        );
    }
}