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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
//! MLS §9.2: Flow Variable Semantics
//!
//! Tests for flow variable behavior in connections including:
//! - Flow sum to zero rule
//! - Flow sign convention
//! - Unconnected flows
//! - Multiple flow variables
//!
//! Reference: https://specification.modelica.org/master/connectors-connections.html

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

// ============================================================================
// §9.2.1 FLOW SUM TO ZERO
// ============================================================================

/// MLS §9.2: Flow variables sum to zero at connection points
mod flow_zero_sum {
    use super::*;

    /// MLS: Two-way connection flow balance
    #[test]
    fn mls_9_2_two_way_flow() {
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model TwoPort
                C a, b;
            equation
                a.e = b.e;
                a.f + b.f = 0;
            end TwoPort;

            model Test
                TwoPort p1, p2;
            equation
                p1.a.e = 1;
                connect(p1.b, p2.a);
                p2.b.e = 0;
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: Three-way connection flow balance
    #[test]
    fn mls_9_2_three_way_flow() {
        expect_parse_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Source
                C port;
            equation
                port.f = -1;
            end Source;

            model Sink
                C port;
            equation
                port.f = 0.5;
            end Sink;

            model Test
                Source src;
                Sink sink1, sink2;
            equation
                connect(src.port, sink1.port);
                connect(src.port, sink2.port);
            end Test;
            "#,
        );
    }

    /// MLS: Star connection flow balance
    #[test]
    fn mls_9_2_star_connection() {
        expect_parse_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Element
                C port;
            equation
                port.e = 1;
            end Element;

            model Star
                Element e1, e2, e3, e4;
            equation
                connect(e1.port, e2.port);
                connect(e1.port, e3.port);
                connect(e1.port, e4.port);
            end Star;
            "#,
        );
    }

    /// MLS: Chain connection maintains flow balance
    #[test]
    fn mls_9_2_chain_flow() {
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Element
                C a, b;
            equation
                a.e = b.e;
                a.f + b.f = 0;
            end Element;

            model Chain
                Element e1, e2, e3;
            equation
                e1.a.e = 1;
                connect(e1.b, e2.a);
                connect(e2.b, e3.a);
                e3.b.e = 0;
            end Chain;
            "#,
            "Chain",
        );
    }
}

// ============================================================================
// §9.2.2 FLOW SIGN CONVENTION
// ============================================================================

/// MLS §9.2: Flow sign convention
mod flow_sign {
    use super::*;

    /// MLS: Positive flow into component
    #[test]
    fn mls_9_2_flow_into_component() {
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Consumer
                C port;
                Real power;
            equation
                power = port.e * port.f;
                port.e = 1;
            end Consumer;
            "#,
            "Consumer",
        );
    }

    /// MLS: Flow conservation in two-port
    #[test]
    fn mls_9_2_flow_conservation() {
        expect_success(
            r#"
            connector Pin
                Real v;
                flow Real i;
            end Pin;

            model Resistor
                Pin p, n;
                parameter Real R = 1;
            equation
                p.v - n.v = R * p.i;
                p.i + n.i = 0;
            end Resistor;
            "#,
            "Resistor",
        );
    }

    /// MLS: Multiple flow direction handling
    #[test]
    fn mls_9_2_bidirectional_flow() {
        expect_parse_success(
            r#"
            connector FluidPort
                Real p;
                flow Real m_flow;
            end FluidPort;

            model Pipe
                FluidPort a, b;
                parameter Real dp = 0.1;
            equation
                a.p - b.p = dp * a.m_flow;
                a.m_flow + b.m_flow = 0;
            end Pipe;
            "#,
        );
    }
}

// ============================================================================
// §9.2.3 UNCONNECTED FLOWS
// ============================================================================

/// MLS §9.2: Unconnected flow behavior
mod unconnected_flow {
    use super::*;

    /// MLS: Unconnected flow defaults to zero
    #[test]
    fn mls_9_2_unconnected_zero() {
        // A component with external connectors is partial by design
        // This test verifies the pattern is valid syntax and semantics
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Source
                C port;
            equation
                port.e = 5;
            end Source;
            "#,
            "Source",
        );
    }

    /// MLS: Partially connected model
    #[test]
    fn mls_9_2_partially_connected() {
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model TwoPort
                C a, b;
            equation
                a.e = b.e;
                a.f + b.f = 0;
            end TwoPort;

            model Test
                TwoPort tp;
            equation
                tp.a.e = 1;
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §9.2.4 MULTIPLE FLOW VARIABLES
// ============================================================================

/// MLS §9.2: Multiple flow variables in one connector
mod multiple_flows {
    use super::*;

    /// MLS: Multiple independent flows
    #[test]
    fn mls_9_2_multiple_independent() {
        expect_parse_success(
            r#"
            connector ThermoFluid
                Real p;
                flow Real m_flow;
                flow Real H_flow;
            end ThermoFluid;

            model Component
                ThermoFluid a, b;
            equation
                a.p = b.p;
                a.m_flow + b.m_flow = 0;
                a.H_flow + b.H_flow = 0;
            end Component;
            "#,
        );
    }

    /// MLS: Flow arrays
    #[test]
    fn mls_9_2_flow_arrays() {
        expect_parse_success(
            r#"
            connector MultiPhase
                Real v[3];
                flow Real i[3];
            end MultiPhase;

            model ThreePhaseLoad
                MultiPhase port;
            equation
                port.v = {1, 2, 3};
            end ThreePhaseLoad;
            "#,
        );
    }

    /// MLS: Nested connector flows
    #[test]
    fn mls_9_2_nested_flows() {
        expect_parse_success(
            r#"
            connector Electrical
                Real v;
                flow Real i;
            end Electrical;

            connector Thermal
                Real T;
                flow Real Q;
            end Thermal;

            connector Combined
                Electrical elec;
                Thermal therm;
            end Combined;

            model Device
                Combined port;
            equation
                port.elec.v = 1;
                port.therm.T = 300;
            end Device;
            "#,
        );
    }
}

// ============================================================================
// §9.2.5 POTENTIAL VARIABLE EQUALIZATION
// ============================================================================

/// MLS §9.2: Potential variable equalization
mod potential_equalization {
    use super::*;

    /// MLS: Connected potentials are equal
    #[test]
    fn mls_9_2_potential_equal() {
        expect_success(
            r#"
            connector C
                Real e;
                flow Real f;
            end C;

            model Test
                C a, b, c;
            equation
                a.e = 5;
                a.f = 0;
                connect(a, b);
                connect(b, c);
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: Multiple potential variables
    #[test]
    fn mls_9_2_multiple_potentials() {
        expect_parse_success(
            r#"
            connector ComplexPin
                Real v_re;
                Real v_im;
                flow Real i_re;
                flow Real i_im;
            end ComplexPin;

            model Test
                ComplexPin a, b;
            equation
                a.v_re = 1;
                a.v_im = 0;
                connect(a, b);
            end Test;
            "#,
        );
    }

    /// MLS: Potential array equalization
    #[test]
    fn mls_9_2_potential_array() {
        expect_parse_success(
            r#"
            connector VectorPort
                Real x[3];
                flow Real f[3];
            end VectorPort;

            model Test
                VectorPort a, b;
            equation
                a.x = {1, 2, 3};
                connect(a, b);
            end Test;
            "#,
        );
    }
}

// ============================================================================
// ELECTRICAL DOMAIN EXAMPLES
// ============================================================================

/// Electrical domain connection examples
mod electrical_examples {
    use super::*;

    /// Kirchhoff's current law via connections
    #[test]
    fn electrical_kcl() {
        expect_success(
            r#"
            connector Pin
                Real v;
                flow Real i;
            end Pin;

            model Resistor
                Pin p, n;
                parameter Real R = 1;
            equation
                p.v - n.v = R * p.i;
                p.i + n.i = 0;
            end Resistor;

            model Ground
                Pin p;
            equation
                p.v = 0;
            end Ground;

            model VoltageSource
                Pin p, n;
                parameter Real V = 1;
            equation
                p.v - n.v = V;
                p.i + n.i = 0;
            end VoltageSource;

            model SimpleCircuit
                VoltageSource vs(V = 5);
                Resistor r1(R = 100);
                Resistor r2(R = 200);
                Ground gnd;
            equation
                connect(vs.p, r1.p);
                connect(r1.n, r2.p);
                connect(r2.n, vs.n);
                connect(vs.n, gnd.p);
            end SimpleCircuit;
            "#,
            "SimpleCircuit",
        );
    }

    /// Parallel resistors
    #[test]
    fn electrical_parallel() {
        expect_success(
            r#"
            connector Pin
                Real v;
                flow Real i;
            end Pin;

            model Resistor
                Pin p, n;
                parameter Real R = 1;
            equation
                p.v - n.v = R * p.i;
                p.i + n.i = 0;
            end Resistor;

            model ParallelCircuit
                Resistor r1(R = 100);
                Resistor r2(R = 200);
            equation
                r1.p.v = 5;
                r1.n.v = 0;
                connect(r1.p, r2.p);
                connect(r1.n, r2.n);
            end ParallelCircuit;
            "#,
            "ParallelCircuit",
        );
    }
}

// ============================================================================
// MECHANICAL DOMAIN EXAMPLES
// ============================================================================

/// Mechanical domain connection examples
mod mechanical_examples {
    use super::*;

    /// Rotational mechanics
    #[test]
    fn mechanical_rotational() {
        expect_parse_success(
            r#"
            connector Flange
                Real phi "Angle";
                flow Real tau "Torque";
            end Flange;

            model Inertia
                Flange a, b;
                parameter Real J = 1;
                Real w "Angular velocity";
                Real alpha "Angular acceleration";
            equation
                a.phi = b.phi;
                w = der(a.phi);
                alpha = der(w);
                J * alpha = a.tau + b.tau;
            end Inertia;
            "#,
        );
    }

    /// Translational mechanics
    #[test]
    fn mechanical_translational() {
        expect_parse_success(
            r#"
            connector Support
                Real s "Position";
                flow Real f "Force";
            end Support;

            model Mass
                Support a, b;
                parameter Real m = 1;
                Real v "Velocity";
            equation
                a.s = b.s;
                v = der(a.s);
                m * der(v) = a.f + b.f;
            end Mass;
            "#,
        );
    }
}

// ============================================================================
// THERMAL DOMAIN EXAMPLES
// ============================================================================

/// Thermal domain connection examples
mod thermal_examples {
    use super::*;

    /// Thermal conduction
    #[test]
    fn thermal_conduction() {
        expect_parse_success(
            r#"
            connector HeatPort
                Real T "Temperature";
                flow Real Q_flow "Heat flow";
            end HeatPort;

            model ThermalConductor
                HeatPort a, b;
                parameter Real G = 1 "Conductance";
            equation
                a.Q_flow = G * (a.T - b.T);
                a.Q_flow + b.Q_flow = 0;
            end ThermalConductor;

            model HeatCapacity
                HeatPort port;
                parameter Real C = 1 "Heat capacity";
            equation
                C * der(port.T) = port.Q_flow;
            end HeatCapacity;
            "#,
        );
    }
}