-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathmodel.c
696 lines (545 loc) · 19.2 KB
/
model.c
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
#include "config.h"
#include "model.h"
#include <stdlib.h> // for free()
#include <string.h> // for strcmp()
#ifdef _MSC_VER
#define strdup _strdup
#endif
#define STRING_START "Set me!"
#define BINARY_START "foo"
void setStartValues(ModelInstance *comp) {
M(Float32_continuous_input) = 0.0f;
M(Float32_continuous_output) = 0.0f;
M(Float32_discrete_input) = 0.0f;
M(Float32_discrete_output) = 0.0f;
M(Float64_fixed_parameter) = 0.0;
M(Float64_tunable_parameter) = 0.0;
M(Float64_continuous_input) = 0.0;
M(Float64_continuous_output) = 0.0;
M(Float64_discrete_input) = 0.0;
M(Float64_discrete_output) = 0.0;
M(Int8_input) = 0;
M(Int8_output) = 0;
M(UInt8_input) = 0;
M(UInt8_output) = 0;
M(Int16_input) = 0;
M(Int16_output) = 0;
M(UInt16_input) = 0;
M(UInt16_output) = 0;
M(Int32_input) = 0;
M(Int32_output) = 0;
M(UInt32_input) = 0;
M(UInt32_output) = 0;
M(Int64_input) = 0;
M(Int64_output) = 0;
M(UInt64_input) = 0;
M(UInt64_output) = 0;
M(Boolean_input) = false;
M(Boolean_output) = false;
strncpy(M(String_parameter), STRING_START, STRING_MAX_LEN);
M(Binary_input_size) = strlen(BINARY_START);
strncpy(M(Binary_input), BINARY_START, BINARY_MAX_LEN);
M(Binary_output_size) = strlen(BINARY_START);
strncpy(M(Binary_output), BINARY_START, BINARY_MAX_LEN);
M(Enumeration_input) = Option1;
M(Enumeration_output) = Option1;
}
Status calculateValues(ModelInstance *comp) {
M(Float32_continuous_output) = M(Float32_continuous_input);
M(Float32_discrete_output) = M(Float32_discrete_input) ;
M(Float64_continuous_output) = M(Float64_continuous_input);
M(Float64_discrete_output) = M(Float64_discrete_input);
M(Int8_output) = M(Int8_input);
M(UInt8_output) = M(UInt8_input);
M(Int16_output) = M(Int16_input);
M(UInt16_output) = M(UInt16_input);
M(Int32_output) = M(Int32_input);
M(UInt32_output) = M(UInt32_input);
M(Int64_output) = M(Int64_input);
M(UInt64_output) = M(UInt64_input);
M(Boolean_output) = M(Boolean_input);
M(Binary_output_size) = M(Binary_input_size);
memcpy(M(Binary_output), M(Binary_input), M(Binary_input_size));
M(Enumeration_output) = M(Enumeration_input);
return OK;
}
Status getFloat32(ModelInstance* comp, ValueReference vr, float values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Float32_continuous_input:
values[(*index)++] = M(Float32_continuous_input);
break;
case vr_Float32_continuous_output:
values[(*index)++] = M(Float32_continuous_output);
break;
case vr_Float32_discrete_input:
values[(*index)++] = M(Float32_discrete_input);
break;
case vr_Float32_discrete_output:
values[(*index)++] = M(Float32_discrete_output);
break;
default:
logError(comp, "Get Float32 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getFloat64(ModelInstance* comp, ValueReference vr, double values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_time:
values[(*index)++] = comp->time;
break;
case vr_Float64_fixed_parameter:
values[(*index)++] = M(Float64_fixed_parameter);
break;
case vr_Float64_tunable_parameter:
values[(*index)++] = M(Float64_tunable_parameter);
break;
case vr_Float64_continuous_input:
values[(*index)++] = M(Float64_continuous_input);
break;
case vr_Float64_continuous_output:
values[(*index)++] = M(Float64_continuous_output);
break;
case vr_Float64_discrete_input:
values[(*index)++] = M(Float64_discrete_input);
break;
case vr_Float64_discrete_output:
values[(*index)++] = M(Float64_discrete_output);
break;
default:
logError(comp, "Get Float64 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getInt8(ModelInstance* comp, ValueReference vr, int8_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int8_input:
values[(*index)++] = M(Int8_input);
break;
case vr_Int8_output:
values[(*index)++] = M(Int8_output);
break;
default:
logError(comp, "Get Int8 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getUInt8(ModelInstance* comp, ValueReference vr, uint8_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt8_input:
values[(*index)++] = M(UInt8_input);
break;
case vr_UInt8_output:
values[(*index)++] = M(UInt8_output);
break;
default:
logError(comp, "Get UInt8 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getInt16(ModelInstance* comp, ValueReference vr, int16_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int16_input:
values[(*index)++] = M(Int16_input);
break;
case vr_Int16_output:
values[(*index)++] = M(Int16_output);
break;
default:
logError(comp, "Get Int16 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getUInt16(ModelInstance* comp, ValueReference vr, uint16_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt16_input:
values[(*index)++] = M(UInt16_input);
break;
case vr_UInt16_output:
values[(*index)++] = M(UInt16_output);
break;
default:
logError(comp, "Get UInt16 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getInt32(ModelInstance* comp, ValueReference vr, int32_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int32_input:
values[(*index)++] = M(Int32_input);
break;
case vr_Int32_output:
values[(*index)++] = M(Int32_output);
break;
#if FMI_VERSION == 1 || FMI_VERSION == 2
case vr_Enumeration_input:
values[(*index)++] = M(Enumeration_input);
break;
case vr_Enumeration_output:
values[(*index)++] = M(Enumeration_output);
break;
#endif
default:
logError(comp, "Get Int32 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getUInt32(ModelInstance* comp, ValueReference vr, uint32_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt32_input:
values[(*index)++] = M(UInt32_input);
break;
case vr_UInt32_output:
values[(*index)++] = M(UInt32_output);
break;
default:
logError(comp, "Get UInt32 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getInt64(ModelInstance* comp, ValueReference vr, int64_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int64_input:
values[(*index)++] = M(Int64_input);
break;
case vr_Int64_output:
values[(*index)++] = M(Int64_output);
break;
#if FMI_VERSION == 3
case vr_Enumeration_input:
values[(*index)++] = M(Enumeration_input);
break;
case vr_Enumeration_output:
values[(*index)++] = M(Enumeration_output);
break;
#endif
default:
logError(comp, "Get Int64 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getUInt64(ModelInstance* comp, ValueReference vr, uint64_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt64_input:
values[(*index)++] = M(UInt64_input);
break;
case vr_UInt64_output:
values[(*index)++] = M(UInt64_output);
break;
default:
logError(comp, "Get UInt64 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getBoolean(ModelInstance* comp, ValueReference vr, bool values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Boolean_input:
values[(*index)++] = M(Boolean_input);
break;
case vr_Boolean_output:
values[(*index)++] = M(Boolean_output);
break;
default:
logError(comp, "Get Boolean is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getBinary(ModelInstance* comp, ValueReference vr, size_t sizes[], const char* values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Binary_input:
values[*index] = M(Binary_input);
sizes[(*index)++] = M(Binary_input_size);
break;
case vr_Binary_output:
values[*index] = M(Binary_output);
sizes[(*index)++] = M(Binary_output_size);
break;
default:
logError(comp, "Get Binary is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status getString(ModelInstance* comp, ValueReference vr, const char* values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_String_parameter:
values[(*index)++] = M(String_parameter);
break;
default:
logError(comp, "Get String is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status setFloat32(ModelInstance* comp, ValueReference vr, const float values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Float32_continuous_input:
M(Float32_continuous_input) = values[(*index)++];
break;
case vr_Float32_discrete_input:
#if FMI_VERSION > 1
if (comp->type == ModelExchange &&
comp->state != Instantiated &&
comp->state != InitializationMode &&
comp->state != EventMode) {
logError(comp, "Variable Float32_discrete_input can only be set in after instantiation, in Initialization Mode, and in Event Mode.");
return Error;
}
#endif
M(Float32_discrete_input) = values[(*index)++];
break;
default:
logError(comp, "Set Float32 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status setFloat64(ModelInstance* comp, ValueReference vr, const double values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Float64_fixed_parameter:
#if FMI_VERSION > 1
if (comp->type == ModelExchange &&
comp->state != Instantiated &&
comp->state != InitializationMode) {
logError(comp, "Variable Float64_fixed_parameter can only be set after instantiation or in initialization mode.");
return Error;
}
#endif
M(Float64_fixed_parameter) = values[(*index)++];
break;
case vr_Float64_tunable_parameter:
#if FMI_VERSION > 1
if (comp->type == ModelExchange &&
comp->state != Instantiated &&
comp->state != InitializationMode &&
comp->state != EventMode) {
logError(comp, "Variable Float64_tunable_parameter can only be set after instantiation, in initialization mode or event mode.");
return Error;
}
#endif
M(Float64_tunable_parameter) = values[(*index)++];
break;
case vr_Float64_continuous_input:
M(Float64_continuous_input) = values[(*index)++];
break;
case vr_Float64_discrete_input:
#if FMI_VERSION > 1
if (comp->type == ModelExchange &&
comp->state != Instantiated &&
comp->state != InitializationMode &&
comp->state != EventMode) {
logError(comp, "Variable Float64_discrete_input can only be set after instantiation, in initialization mode or event mode.");
return Error;
}
#endif
M(Float64_discrete_input) = values[(*index)++];
break;
default:
logError(comp, "Set Float64 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status setInt8(ModelInstance* comp, ValueReference vr, const int8_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int8_input:
M(Int8_input) = values[(*index)++];
break;
default:
logError(comp, "Set Int8 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status setUInt8(ModelInstance* comp, ValueReference vr, const uint8_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt8_input:
M(UInt8_input) = values[(*index)++];
break;
default:
logError(comp, "Set UInt8 is not allowed for value reference %u.", vr);
return Error;
}
return OK;
}
Status setInt16(ModelInstance* comp, ValueReference vr, const int16_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int16_input:
M(Int16_input) = values[(*index)++];
break;
default:
logError(comp, "Set Int16 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setUInt16(ModelInstance* comp, ValueReference vr, const uint16_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt16_input:
M(UInt16_input) = values[(*index)++];
break;
default:
logError(comp, "Set UInt16 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setInt32(ModelInstance* comp, ValueReference vr, const int32_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int32_input:
M(Int32_input) = values[(*index)++];
break;
#if FMI_VERSION == 1 || FMI_VERSION == 2
case vr_Enumeration_input:
if (values[*index] != Option1 && values[*index] != Option2) {
logError(comp, "%d is not a legal value for Enumeration_input.", values[*index]);
return Error;
}
M(Enumeration_input) = values[(*index)++];
break;
#endif
default:
logError(comp, "Set Int32 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setUInt32(ModelInstance* comp, ValueReference vr, const uint32_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt32_input:
M(UInt32_input) = values[(*index)++];
break;
default:
logError(comp, "Set UInt32 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setInt64(ModelInstance* comp, ValueReference vr, const int64_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Int64_input:
M(Int64_input) = values[(*index)++];
break;
#if FMI_VERSION == 3
case vr_Enumeration_input:
if (values[*index] != Option1 && values[*index] != Option2) {
logError(comp, "%llu is not a legal value for Enumeration_input.", values[*index]);
return Error;
}
M(Enumeration_input) = values[(*index)++];
break;
#endif
default:
logError(comp, "Set Int64 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setUInt64(ModelInstance* comp, ValueReference vr, const uint64_t values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_UInt64_input:
M(UInt64_input) = values[(*index)++];
break;
default:
logError(comp, "Set UInt64 is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setBoolean(ModelInstance* comp, ValueReference vr, const bool values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Boolean_input:
M(Boolean_input) = values[(*index)++];
break;
case vr_Boolean_output:
M(Boolean_output) = values[(*index)++];
break;
default:
logError(comp, "Set Boolean is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setString(ModelInstance* comp, ValueReference vr, const char *const values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_String_parameter:
if (strlen(values[*index]) >= STRING_MAX_LEN) {
logError(comp, "Max. string length is %d bytes.", STRING_MAX_LEN);
return Error;
}
strcpy(M(String_parameter), values[(*index)++]);
break;
default:
logError(comp, "Set String is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status setBinary(ModelInstance* comp, ValueReference vr, const size_t size[], const char* const values[], size_t nValues, size_t* index) {
ASSERT_NVALUES(1);
switch (vr) {
case vr_Binary_input:
if (size[*index] > BINARY_MAX_LEN) {
logError(comp, "Max. binary size is %d bytes.", BINARY_MAX_LEN);
return Error;
}
M(Binary_input_size) = size[*index];
memcpy((void *)M(Binary_input), values[(*index)++], M(Binary_input_size));
break;
default:
logError(comp, "Set Binary is not allowed for value reference %u.", vr);
return Error;
}
comp->isDirtyValues = true;
return OK;
}
Status eventUpdate(ModelInstance *comp) {
comp->valuesOfContinuousStatesChanged = false;
comp->nominalsOfContinuousStatesChanged = false;
comp->terminateSimulation = false;
comp->nextEventTimeDefined = false;
return OK;
}