forked from modelica/www.modelica.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpact-libraries.html
1035 lines (795 loc) · 72.3 KB
/
impact-libraries.html
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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<title>List of repositories</title>
<link type="text/css" href="css/bootstrap.min.css" rel="stylesheet">
<link type="text/css" href="css/bootstrap-theme.min.css" rel="stylesheet">
<link type="text/css" href="css/libs.css" rel="stylesheet">
</head>
<body>
<dl>
<dt>Colour-code for download buttons:<br></dt>
<dd><span class="btn btn-small btn-success">MA Library<br>(standard conforming)</span>
<span class="btn btn-small btn-warning">MA Library<br>(not yet standard conforming)</span>
<span class="btn btn-small btn-danger">MA Library<br>(deprecated)</span>
<span class="btn btn-small btn-info">User Library<br>(with license)</span>
<span class="btn btn-small btn-default">User Library<br>(<strong>no</strong> license)</span>
<span class="btn btn-small btn-default disabled">No official release yet<br>(development version might be available)</span>
</dd>
<dl>
<table class="table table-condensed table-striped">
<thead>
<tr>
<th colspan="4" class="heading">Standard conforming libraries developed by the MA</th>
</tr>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last Release</th>
<th>Last Active</th>
</tr>
</thead>
<tbody>
<tr>
<td><a target="_blank" href="https://github.com/modelica/ModelicaStandardLibrary">ModelicaStandardLibrary</a></td>
<td>Free (standard conforming) library to model mechanical (1D/3D), electrical (analog, digital, machines), magnetic, thermal, fluid, control systems and hierarchical state machines. Also numerical functions and functions for strings, files and streams are included.</td>
<td><a class="btn btn-sm btn-success" target=_blank href="https://github.com/modelica/ModelicaStandardLibrary/releases/tag/v4.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v4.0.0<br>(<span class="relative" title="2020-06-04">2020-06-04</span>)</a></td>
<td><span class="relative" title="2023-03-29">2023-03-29</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica/Modelica_Synchronous">Modelica_Synchronous</a></td>
<td>Free (standard conforming) library to precisely define and synchronize sampled data systems with different sampling rates. It provides convenient to use blocks to utilize the new synchronous language elements introduced in Modelica 3.3.</td>
<td><a class="btn btn-sm btn-success" target=_blank href="https://github.com/modelica/Modelica_Synchronous/releases/tag/v0.93.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.93.0<br>(<span class="relative" title="2019-04-10">2019-04-10</span>)</a></td>
<td><span class="relative" title="2023-03-18">2023-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica/VehicleInterfaces">VehicleInterfaces</a></td>
<td>Free (standard conforming) library for interface definitions and architectures for vehicle system modeling</td>
<td><a class="btn btn-sm btn-success" target=_blank href="https://github.com/modelica/VehicleInterfaces/releases/tag/v2.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.1<br>(<span class="relative" title="2022-03-14">2022-03-14</span>)</a></td>
<td><span class="relative" title="2023-02-16">2023-02-16</span></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="4" class="heading">Other libraries developed by the MA</th>
</tr>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last Release</th>
<th>Last Active</th>
</tr>
</thead>
<tbody>
<tr>
<td><a target="_blank" href="https://github.com/modelica/Modelica-Compliance">Modelica-Compliance</a></td>
<td>A semantics compliance suite for the Modelica language</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-03-02">2023-03-02</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica/Modelica_LinearSystems2">Modelica_LinearSystems2</a></td>
<td>Free library providing different representations of linear, time invariant differential and difference equation systems, as well as typical operations on these system descriptions.</td>
<td><a class="btn btn-sm btn-warning" target=_blank href="https://github.com/modelica/Modelica_LinearSystems2/releases/tag/v2.4.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.4.1<br>(<span class="relative" title="2021-10-28">2021-10-28</span>)</a></td>
<td><span class="relative" title="2023-02-20">2023-02-20</span></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="4" class="heading">Free libraries (provided by users)</th>
</tr>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last Release</th>
<th>Last Active</th>
</tr>
</thead>
<tbody>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ADGenKinetics">ADGenKinetics</a></td>
<td>Modeling biochemical reaction networks with generalized kinetic formats with capabilities for computing parameter sensitivities using algorithmic differentiation techniques.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ADGenKinetics/releases/tag/v1.0+r23"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0+r23<br>(<span class="relative" title="2013-03-21">2013-03-21</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ADMSL">ADMSL</a></td>
<td>An example for algorithmic differentiation of a part of the Electrical sublibrary of the Modelica Standard Library</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ADMSL/releases/tag/v1.1.0-alpha-Hamburg"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.0-alpha-Hamburg<br>(<span class="relative" title="2019-09-28">2019-09-28</span>)</a></td>
<td><span class="relative" title="2019-10-11">2019-10-11</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/AdvancedNoise">AdvancedNoise</a></td>
<td>Modelica library with advanced noise features building on Modelica_Noise</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/AdvancedNoise/releases/tag/v1.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.0<br>(<span class="relative" title="2021-10-26">2021-10-26</span>)</a></td>
<td><span class="relative" title="2022-11-25">2022-11-25</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/AixLib">AixLib</a></td>
<td>A Modelica model library for building performance simulations</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/AixLib/releases/tag/v1.3.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.3.2<br>(<span class="relative" title="2023-02-09">2023-02-09</span>)</a></td>
<td><span class="relative" title="2023-03-20">2023-03-20</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/AlgebraTestSuite">AlgebraTestSuite</a></td>
<td>Test problems of algebraic equation systems in Modelica</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ApproxSpline">ApproxSpline</a></td>
<td>Modelica Library for Smooth Spline Approximation</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ATplus">ATplus</a></td>
<td>Free library for Building Simulation and Building Control, fuzzy control library included. (unlicensed)</td>
<td><a class="btn btn-sm btn-default" target=_blank href="https://github.com/modelica-3rdparty/ATplus/releases/tag/v2.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.1<br>(<span class="relative" title="2005-09-03">2005-09-03</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BioChem">BioChem</a></td>
<td>Free library for biochemical modeling and simulation with Modelica.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BioChem/releases/tag/v1.1.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.2<br>(<span class="relative" title="2021-06-30">2021-06-30</span>)</a></td>
<td><span class="relative" title="2022-11-29">2022-11-29</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BondGraph">BondGraph</a></td>
<td>Free library for graphical Bond Graph modelling that contains common standard linear elements, sensors, and specific non-linear elements, especially for hydraulic networks.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BondGraph/releases/tag/v1.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.0<br>(<span class="relative" title="2013-12-02">2013-12-02</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BondLib">BondLib</a></td>
<td>Free library to model physical systems with bond graphs.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BondLib/releases/tag/v2.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.3<br>(<span class="relative" title="2007-09-27">2007-09-27</span>)</a></td>
<td><span class="relative" title="2022-12-19">2022-12-19</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BrineProp">BrineProp</a></td>
<td>Modelica Media models for p-h-T-rho-eta properties of aqueous solutions of multiple salts and gases</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BrineProp/releases/tag/v0.7.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.7.0<br>(<span class="relative" title="2021-03-05">2021-03-05</span>)</a></td>
<td><span class="relative" title="2021-09-05">2021-09-05</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BuildingControlLib">BuildingControlLib</a></td>
<td>Welcome to BuildingControlLib, a Modelica library for modelling an simulation of standardized and non-standardized control functions from Building Automation Systems. The library is developed at the Fraunhofer Institute for Building Physics IBP.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BuildingControlLib/releases/tag/v1.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.0<br>(<span class="relative" title="2018-01-19">2018-01-19</span>)</a></td>
<td><span class="relative" title="2022-12-21">2022-12-21</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Buildings">Buildings</a></td>
<td>Modelica Buildings library</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Buildings/releases/tag/v9.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v9.1.0<br>(<span class="relative" title="2022-12-05">2022-12-05</span>)</a></td>
<td><span class="relative" title="2023-03-30">2023-03-30</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BuildingSystems">BuildingSystems</a></td>
<td>Modelica BuildingSystems library</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BuildingSystems/releases/tag/v2.0.0-beta2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.0-beta2<br>(<span class="relative" title="2017-05-16">2017-05-16</span>)</a></td>
<td><span class="relative" title="2023-01-31">2023-01-31</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BuildSysPro">BuildSysPro</a></td>
<td>BuildSysPro open source: EDF's Modelica library for buildings, districts and energy systems modelling</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BuildSysPro/releases/tag/v2015.12b"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2015.12b<br>(<span class="relative" title="2016-04-11">2016-04-11</span>)</a></td>
<td><span class="relative" title="2023-03-09">2023-03-09</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/BusinessSimulation">BusinessSimulation</a></td>
<td>Business Simulation Library (BSL) - A library for modeling & simulation of dynamical systems in the social sciences, e.g., business/economics, and ecology using the System Dynamics metaphor</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/BusinessSimulation/releases/tag/v2.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.1.0<br>(<span class="relative" title="2022-12-04">2022-12-04</span>)</a></td>
<td><span class="relative" title="2022-12-05">2022-12-05</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Chemical">Chemical</a></td>
<td>Modelica Library of Chemical processes</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Chemical/releases/tag/v1.4.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.4.0<br>(<span class="relative" title="2021-01-27">2021-01-27</span>)</a></td>
<td><span class="relative" title="2022-04-30">2022-04-30</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ComplexLib">ComplexLib</a></td>
<td>Free library for steady-state analysis of AC circuits within phasor domain.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ComplexLib/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2008-05-18">2008-05-18</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/DeployStructLib">DeployStructLib</a></td>
<td>A Modelica library providing specialized structural and mechanism components for modeling deployable structures</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/DeployStructLib/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2019-11-01">2019-11-01</span>)</a></td>
<td><span class="relative" title="2021-02-02">2021-02-02</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/DESLib">DESLib</a></td>
<td>Free library for Parallel DEVS and Process-Oriented Modeling in Modelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/DESLib/releases/tag/v1.6.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.6.1<br>(<span class="relative" title="2013-02-01">2013-02-01</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/dhcSim">dhcSim</a></td>
<td>This is a repository of the dhcSim Modelica library</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-11-03">2021-11-03</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/DisHeatLib">DisHeatLib</a></td>
<td>Modelica library for district heating network modelling using IBPSA library as core</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/DisHeatLib/releases/tag/v1.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.0<br>(<span class="relative" title="2022-02-14">2022-02-14</span>)</a></td>
<td><span class="relative" title="2022-02-15">2022-02-15</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/DriveControl">DriveControl</a></td>
<td>Modelica library to demonstrate the control of electric drives.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/EHPT">EHPT</a></td>
<td></td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-01-12">2023-01-12</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ElectricalEnergyStorage">ElectricalEnergyStorage</a></td>
<td>Free library that contains models with different complexity for simulating of electric energy storages like batteries (single cells as well as stacks) interacting with loads, battery management systems, loads and charging devices.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-03-10">2023-03-10</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/electrolytemedia">electrolytemedia</a></td>
<td>Mirror of https://github.com/andreasbremen: Modelica framework for the dynamic simulation of aqueous electrolyte systems under consideration of dissociation and phase equilibria</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/electrolytemedia/releases/tag/v0.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.2<br>(<span class="relative" title="2022-05-31">2022-05-31</span>)</a></td>
<td><span class="relative" title="2022-12-26">2022-12-26</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ElectroMechanicalDrives">ElectroMechanicalDrives</a></td>
<td>Electromechancial drives</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ElectroMechanicalDrives/releases/tag/v3.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.0.0<br>(<span class="relative" title="2021-07-18">2021-07-18</span>)</a></td>
<td><span class="relative" title="2022-04-14">2022-04-14</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/EMOTH">EMOTH</a></td>
<td>E-Mobility Library of OTH Regensburg (developed by master student Alexander Grimm)</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/EMOTH/releases/tag/1.9.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> 1.9.0<br>(<span class="relative" title="2021-07-11">2021-07-11</span>)</a></td>
<td><span class="relative" title="2021-07-12">2021-07-12</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ESL">ESL</a></td>
<td></td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-12-30">2021-12-30</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ExtendedPetriNets">ExtendedPetriNets</a></td>
<td>Free library to model Petri nets and state transition diagrams (extended version).</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ExtendedPetriNets/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2002-04-11">2002-04-11</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ExternalMedia">ExternalMedia</a></td>
<td>The ExternalMedia library provides a framework for interfacing external codes computing fluid properties to Modelica.Media-compatible component models.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ExternalMedia/releases/tag/v3.3.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.3.1<br>(<span class="relative" title="2022-02-17">2022-02-17</span>)</a></td>
<td><span class="relative" title="2023-03-22">2023-03-22</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ExternalMemoryLib">ExternalMemoryLib</a></td>
<td>A Modelica Library to get permanent access to some memory in case you want to conserve some data during simulation.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2016-08-09">2016-08-09</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ExternData">ExternData</a></td>
<td>:page_facing_up: Modelica library for data I/O of CSV, INI, JSON, MATLAB MAT, SSV, TIR, Excel XLS/XLSX and XML files</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ExternData/releases/tag/v3.0.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.0.3<br>(<span class="relative" title="2021-09-28">2021-09-28</span>)</a></td>
<td><span class="relative" title="2023-03-11">2023-03-11</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FailureModes">FailureModes</a></td>
<td>A collection of examples of failure modes for Modelica models</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/FailureModes/releases/tag/v2.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.0<br>(<span class="relative" title="2023-02-27">2023-02-27</span>)</a></td>
<td><span class="relative" title="2023-02-28">2023-02-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FastBuildings">FastBuildings</a></td>
<td>Modelica library for low-order building modelling</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/FastBuildings/releases/tag/master"><i class="glyphicon glyphicon-download-alt icon-white"></i> master<br>(<span class="relative" title="2015-01-11">2015-01-11</span>)</a></td>
<td><span class="relative" title="2022-12-10">2022-12-10</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FaultTriggering">FaultTriggering</a></td>
<td>Library for fault modelling in Modelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/FaultTriggering/releases/tag/v0.6.6"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.6.6<br>(<span class="relative" title="2017-01-12">2017-01-12</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FCSys">FCSys</a></td>
<td>Modelica library of fuel cell models</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/FCSys/releases/tag/v0.2.6"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.2.6<br>(<span class="relative" title="2014-01-25">2014-01-25</span>)</a></td>
<td><span class="relative" title="2022-12-26">2022-12-26</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FeedDriveLibrary">FeedDriveLibrary</a></td>
<td>Modelica Feed Drive Library</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/FeedDriveLibrary/releases/tag/1.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> 1.0.1<br>(<span class="relative" title="2016-10-16">2016-10-16</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FMITest">FMITest</a></td>
<td>Library of Modelica models to test connected FMUs in a Modelica tool </td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FreeFluidsModelica">FreeFluidsModelica</a></td>
<td>Modelica package for chemical engineering. Includes media definitions compatible with Modelica.Media</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2022-12-19">2022-12-19</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FuelCellLib">FuelCellLib</a></td>
<td>Free library to model fuel cells (unlicensed)</td>
<td><a class="btn btn-sm btn-default" target=_blank href="https://github.com/modelica-3rdparty/FuelCellLib/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2005-01-15">2005-01-15</span>)</a></td>
<td><span class="relative" title="2022-12-26">2022-12-26</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/FuzzyControl">FuzzyControl</a></td>
<td>Free library for fuzzy control (unlicensed)</td>
<td><a class="btn btn-sm btn-default" target=_blank href="https://github.com/modelica-3rdparty/FuzzyControl/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2002-11-01">2002-11-01</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Greenhouses-Library">Greenhouses-Library</a></td>
<td>The Greenhouse Modelica Library aims at providing a fully open-source modeling framework for the simulation of greenhouse climate, crop yield and the energy integration of greenhouses with thermal systems (e.g. generation units, thermal storage units, district heating networks, etc.).</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2020-09-11">2020-09-11</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/HanserModelica">HanserModelica</a></td>
<td>HanserModelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/HanserModelica/releases/tag/v2.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.0<br>(<span class="relative" title="2022-10-31">2022-10-31</span>)</a></td>
<td><span class="relative" title="2022-11-01">2022-11-01</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/HelmholtzMedia">HelmholtzMedia</a></td>
<td>Fluid properties for Modelica, for pure fluids that can be described by a Helmholtz energy equation of state</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/HelmholtzMedia/releases/tag/v0.9.8"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.9.8<br>(<span class="relative" title="2017-07-31">2017-07-31</span>)</a></td>
<td><span class="relative" title="2021-11-29">2021-11-29</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Icons">Icons</a></td>
<td>Modelica Icons</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2019-11-08">2019-11-08</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/IdealizedContact">IdealizedContact</a></td>
<td>A Modelica library for idealized simulation of contact phenomena</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/IdealizedContact/releases/tag/v0.2.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.2.0<br>(<span class="relative" title="2014-11-24">2014-11-24</span>)</a></td>
<td><span class="relative" title="2022-09-08">2022-09-08</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/IDEAS">IDEAS</a></td>
<td>Modelica library allowing simultaneous transient simulation of thermal and electrical systems at both building and feeder level.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/IDEAS/releases/tag/v3.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.0<br>(<span class="relative" title="2022-05-03">2022-05-03</span>)</a></td>
<td><span class="relative" title="2023-01-18">2023-01-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/IndustrialControlSystems">IndustrialControlSystems</a></td>
<td>A Modelica library for the realistic modelling of industrial control system</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/IndustrialControlSystems/releases/tag/v1.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.0<br>(<span class="relative" title="2019-12-05">2019-12-05</span>)</a></td>
<td><span class="relative" title="2021-09-13">2021-09-13</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ipsl">ipsl</a></td>
<td>iTesla Power System Library</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ipsl/releases/tag/v1.1.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1.1<br>(<span class="relative" title="2017-05-30">2017-05-30</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/KeyWordIO">KeyWordIO</a></td>
<td>Modelica library for reading and writing variables and parameters to files. The main objective of the library is to read and write variables and parameters in INI file format.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/KeyWordIO/releases/tag/v0.11.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.11.0<br>(<span class="relative" title="2021-11-29">2021-11-29</span>)</a></td>
<td><span class="relative" title="2021-11-30">2021-11-30</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/LibRAS">LibRAS</a></td>
<td>A Modelica library for simulation of recirculating aquaculture systems</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-10-06">2021-10-06</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/LinearMPC">LinearMPC</a></td>
<td>Library for model-based predictive controllers with linear process models.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/LinearMPC/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2013-03-21">2013-03-21</span>)</a></td>
<td><span class="relative" title="2022-11-05">2022-11-05</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica-Arduino">Modelica-Arduino</a></td>
<td>Simulate circuits and sketches on a virtual Arduino Uno in Modelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Modelica-Arduino/releases/tag/v0.3.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.3.0<br>(<span class="relative" title="2022-08-20">2022-08-20</span>)</a></td>
<td><span class="relative" title="2023-03-17">2023-03-17</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica-ExternalLibrary">Modelica-ExternalLibrary</a></td>
<td>Use C++ and Python objects in Modelica</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-03-25">2023-03-25</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/modelica-flight">modelica-flight</a></td>
<td>Flight dynamics library for Modelica.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica-GNU_ScientificLibrary">Modelica-GNU_ScientificLibrary</a></td>
<td>Free library for accessing the GNU Scientific Library functions via Modelica</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-01-09">2021-01-09</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/modelica-ibpsa">modelica-ibpsa</a></td>
<td>Modelica library for building and district energy systems developed within IBPSA Project 1</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/modelica-ibpsa/releases/tag/v3.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.0.0<br>(<span class="relative" title="2018-09-27">2018-09-27</span>)</a></td>
<td><span class="relative" title="2023-03-30">2023-03-30</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica-MVEM">Modelica-MVEM</a></td>
<td>Free Modelica Libraries resulting from the openProd combustion engine use case</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Modelica-MVEM/releases/tag/v1.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.1<br>(<span class="relative" title="2015-12-02">2015-12-02</span>)</a></td>
<td><span class="relative" title="2023-02-10">2023-02-10</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModelicaADS">ModelicaADS</a></td>
<td>This is a Modelica wrapper for TwinCATs ADS library. It provides functions for communicating with TwinCAT devices. ModelicaADS uses the C API AdsDLL.dll. The documentation for the ADS API is available on https://infosys.beckhoff.com/</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ModelicaADS/releases/tag/v1.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.1<br>(<span class="relative" title="2017-09-21">2017-09-21</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModelicaDEVS">ModelicaDEVS</a></td>
<td>A free library for discrete-event modeling using the DEVS formalism. (unlicensed)</td>
<td><a class="btn btn-sm btn-default" target=_blank href="https://github.com/modelica-3rdparty/ModelicaDEVS/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2007-09-27">2007-09-27</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModelicaDFR">ModelicaDFR</a></td>
<td>A package for Modelica simulating Molten Salt Reactors</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModelicaTableAdditions">ModelicaTableAdditions</a></td>
<td>Extension of the CombiTable blocks of the Modelica Standard Library to additionally support reading CSV, EPW (EnergyPlus Weather) and JSON files</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ModelicaTableAdditions/releases/tag/v2.2.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.2.3<br>(<span class="relative" title="2023-03-11">2023-03-11</span>)</a></td>
<td><span class="relative" title="2023-03-12">2023-03-12</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModelicaTutorials">ModelicaTutorials</a></td>
<td>A collection of Modelica tutorials on the topics that have not already been covered by others.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2022-10-13">2022-10-13</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica_DeviceDrivers">Modelica_DeviceDrivers</a></td>
<td>Free library for interfacing hardware drivers to Modelica models. There is support for joysticks, keyboards, UDP, TCP/IP, LCM, MQTT, shared memory, AD/DA converters, serial port and other devices.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Modelica_DeviceDrivers/releases/tag/v2.1.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.1.1<br>(<span class="relative" title="2022-10-06">2022-10-06</span>)</a></td>
<td><span class="relative" title="2023-03-18">2023-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica_Requirements">Modelica_Requirements</a></td>
<td>Defining requirements formally and checking them when simulating</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-03-02">2023-03-02</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Modelica_StateGraph2">Modelica_StateGraph2</a></td>
<td>Free Dymola library providing components to model discrete event, reactive and hybrid systems in a convenient way with deterministic hierarchical state diagrams. Modelica_StateGraph2 is not fully Modelica compliant and will never be, since a better solution is available with Modelica 3.3</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Modelica_StateGraph2/releases/tag/v2.1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.1.0<br>(<span class="relative" title="2020-06-09">2020-06-09</span>)</a></td>
<td><span class="relative" title="2020-06-10">2020-06-10</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ModPowerSystems">ModPowerSystems</a></td>
<td></td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MoMoUrEnSySi">MoMoUrEnSySi</a></td>
<td>MOdelica MOdels for URban ENergy SYstem SImulation</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MoSDH">MoSDH</a></td>
<td>Library for solar and geothermal district heating systems with seasonal storage</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/MoSDH/releases/tag/v1.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.1<br>(<span class="relative" title="2022-09-01">2022-09-01</span>)</a></td>
<td><span class="relative" title="2022-11-15">2022-11-15</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MotorcycleDynamics">MotorcycleDynamics</a></td>
<td>Free library for the dynamic simulation of a motorcycle, and tailored to test and validation of active control systems for motorcycle dynamics.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/MotorcycleDynamics/releases/tag/v0.7.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.7.0<br>(<span class="relative" title="2011-06-27">2011-06-27</span>)</a></td>
<td><span class="relative" title="2022-10-26">2022-10-26</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MotorcycleLib">MotorcycleLib</a></td>
<td>Free Modelica library for the purpose of simulation, analysis and control of bicycles and motorcycles (single-track vehicles, uses BondLib)</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/MotorcycleLib/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2009-08-24">2009-08-24</span>)</a></td>
<td><span class="relative" title="2022-10-26">2022-10-26</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/msgpack-modelica">msgpack-modelica</a></td>
<td>A MessagePack implementation as a Modelica package</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/msgpack-modelica/releases/tag/v0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.1<br>(<span class="relative" title="2014-06-19">2014-06-19</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MultiBondLib">MultiBondLib</a></td>
<td>Free library to model physical systems with multi-bond graphs.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/MultiBondLib/releases/tag/v1.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.3<br>(<span class="relative" title="2007-09-27">2007-09-27</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/MultiPhaseMixtureMedia">MultiPhaseMixtureMedia</a></td>
<td>MultiPhaseMixtureMedia is a framework for thermodynamic properties in Modelica including an external C/C++ Modelica property interface with back ends to CAPE-OPEN, RefProp and FluidProp.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/MultiPhaseMixtureMedia/releases/tag/v1.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.0<br>(<span class="relative" title="2015-10-06">2015-10-06</span>)</a></td>
<td><span class="relative" title="2022-01-28">2022-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/NCLib">NCLib</a></td>
<td>Free library for combined simulation of networks and controllers in the domain of automation systems.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/NCLib/releases/tag/v0.82"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.82<br>(<span class="relative" title="2009-04-16">2009-04-16</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/netCDF-DataReader">netCDF-DataReader</a></td>
<td>Modelica library for interfacing netCDF files using different interpolation and extrapolation methods</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/netCDF-DataReader/releases/tag/v2.5.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.5.0<br>(<span class="relative" title="2019-03-27">2019-03-27</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/NeuralNetwork">NeuralNetwork</a></td>
<td>Free library that provides a neural network mathematical model. (unlicensed)</td>
<td><a class="btn btn-sm btn-default" target=_blank href="https://github.com/modelica-3rdparty/NeuralNetwork/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2006-04-28">2006-04-28</span>)</a></td>
<td><span class="relative" title="2023-03-18">2023-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Noise">Noise</a></td>
<td>An open Library for the Generation of Stochastic Signals in Modelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Noise/releases/tag/v1.0-beta.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0-beta.1<br>(<span class="relative" title="2015-09-07">2015-09-07</span>)</a></td>
<td><span class="relative" title="2021-12-16">2021-12-16</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/ObjectStab">ObjectStab</a></td>
<td>A Modelica Library for Power System Stability Studies</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/ObjectStab/releases/tag/v1.0.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.3<br>(<span class="relative" title="2002-09-25">2002-09-25</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/open-bldc-modelica">open-bldc-modelica</a></td>
<td>Multi physics simulation models for open-bldc</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-02-01">2023-02-01</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/openfdm">openfdm</a></td>
<td>An open source flight dynamics library for Modelica</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/OpenHydraulics">OpenHydraulics</a></td>
<td>A free Modelica package providing components describing 1-dimensional fluid flow in hydraulic circuits.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/OpenHydraulics/releases/tag/v2.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.0<br>(<span class="relative" title="2022-10-14">2022-10-14</span>)</a></td>
<td><span class="relative" title="2022-12-15">2022-12-15</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/OpenIPSL">OpenIPSL</a></td>
<td>The OpenIPSL is a fork of the iTesla Power System Library developed and maintained by the SmarTS Lab Research Group and its collaborators, and a Modelica library containing a set of power system component models for phasor time domain simulations.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/OpenIPSL/releases/tag/v3.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v3.0.1<br>(<span class="relative" title="2022-06-23">2022-06-23</span>)</a></td>
<td><span class="relative" title="2023-02-17">2023-02-17</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/OpenModelica_Microgrids">OpenModelica_Microgrids</a></td>
<td>OpenModelica_Microgrids is a library to simulate three phase AC Microgrids. Usable as stand-alone version or part of the toolbox OpenModelica Microgrid Gym (https://github.com/upb-lea/openmodelica-microgrid-gym).</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/OpenModelica_Microgrids/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2020-09-08">2020-09-08</span>)</a></td>
<td><span class="relative" title="2023-03-18">2023-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Optimisers">Optimisers</a></td>
<td>Modelica model-based optimisation library</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PDELib">PDELib</a></td>
<td>A free library for modeling systems described by 1D partial differential equations.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PDELib/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2007-06-18">2007-06-18</span>)</a></td>
<td><span class="relative" title="2023-02-21">2023-02-21</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PhotoVoltaics">PhotoVoltaics</a></td>
<td>Modelica library for the simulation of photo voltaic cells and modules</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PhotoVoltaics/releases/tag/v2.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.0.0<br>(<span class="relative" title="2021-07-19">2021-07-19</span>)</a></td>
<td><span class="relative" title="2023-03-18">2023-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Physiolibrary">Physiolibrary</a></td>
<td>Modelica library for Human Physiology</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Physiolibrary/releases/tag/v2.3.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.3.1<br>(<span class="relative" title="2015-09-15">2015-09-15</span>)</a></td>
<td><span class="relative" title="2022-12-06">2022-12-06</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/Physiomodel">Physiomodel</a></td>
<td>Mammalian physiology model in Modelica</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/Physiomodel/releases/tag/v1.0.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.0<br>(<span class="relative" title="2015-10-12">2015-10-12</span>)</a></td>
<td><span class="relative" title="2021-03-16">2021-03-16</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PlanarMechanics">PlanarMechanics</a></td>
<td>A free Modelica library for planar mechanical multi-body systems</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PlanarMechanics/releases/tag/v1.5.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.5.1<br>(<span class="relative" title="2021-11-30">2021-11-30</span>)</a></td>
<td><span class="relative" title="2023-02-21">2023-02-21</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PNlib">PNlib</a></td>
<td>Free library for modeling xHPN</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PNlib/releases/tag/v2.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v2.2<br>(<span class="relative" title="2019-10-24">2019-10-24</span>)</a></td>
<td><span class="relative" title="2021-03-23">2021-03-23</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PowerGrids">PowerGrids</a></td>
<td>This repository contains the code for PowerGrids, a Modelica library for electro-mechanical modelling of power systems.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PowerGrids/releases/tag/v1.0.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.2<br>(<span class="relative" title="2021-01-19">2021-01-19</span>)</a></td>
<td><span class="relative" title="2022-02-07">2022-02-07</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PowerSystems">PowerSystems</a></td>
<td>Free (standard conform) library that is intended to model electrical power systems at different levels of detail both in transient and steady-state mode.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PowerSystems/releases/tag/v1.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.1<br>(<span class="relative" title="2022-06-19">2022-06-19</span>)</a></td>
<td><span class="relative" title="2023-03-20">2023-03-20</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/pow_el">pow_el</a></td>
<td>A Modelica library with building blocks for modeling of SMPS (switched - mode power supply) based power electronics applications.</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-03-19">2023-03-19</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PraxisSimulationstechnik">PraxisSimulationstechnik</a></td>
<td>Modelica library from Peter Junglas' book "Praxis der Simulationstechnik"</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PropulsionSystem">PropulsionSystem</a></td>
<td>Modelica lib. of propulsion&power system. Under active development</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PropulsionSystem/releases/tag/ver.2022.12.17"><i class="glyphicon glyphicon-download-alt icon-white"></i> ver.2022.12.17<br>(<span class="relative" title="2022-12-15">2022-12-15</span>)</a></td>
<td><span class="relative" title="2023-01-10">2023-01-10</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/PVSystems">PVSystems</a></td>
<td>A Modelica library for photovoltaic systems</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/PVSystems/releases/tag/v0.6.2"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.6.2<br>(<span class="relative" title="2017-07-06">2017-07-06</span>)</a></td>
<td><span class="relative" title="2022-08-24">2022-08-24</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/QCalc">QCalc</a></td>
<td>Modelica units based on quantity calculus</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/QCalc/releases/tag/v0.3.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.3.3<br>(<span class="relative" title="2015-03-24">2015-03-24</span>)</a></td>
<td><span class="relative" title="2021-03-18">2021-03-18</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-3rdparty/QSSFluidFlow">QSSFluidFlow</a></td>
<td>Free library for quasi steady-state fluid pipe flow.</td>
<td><a class="btn btn-sm btn-info" target=_blank href="https://github.com/modelica-3rdparty/QSSFluidFlow/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2011-04-12">2011-04-12</span>)</a></td>
<td><span class="relative" title="2022-08-23">2022-08-23</span></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="4" class="heading">Older libraries developed by the MA (deprecated)</th>
</tr>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last Release</th>
<th>Last Active</th>
</tr>
</thead>
<tbody>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/InstantaneousSymmetricalComponents">InstantaneousSymmetricalComponents</a></td>
<td>Archived from svn.modelica.org</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/ModelicaAdditions">ModelicaAdditions</a></td>
<td>All components of this library have been incorporated in an improved form into the Modelica Standard Library in version 2.1</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/ModelicaAdditions/releases/tag/v1.5"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.5<br>(<span class="relative" title="2002-12-03">2002-12-03</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_ElectricalEnergyStorages">Modelica_ElectricalEnergyStorages</a></td>
<td>Archived from svn.modelica.org</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_Electrical_PowerConverters">Modelica_Electrical_PowerConverters</a></td>
<td>Archived from svn.modelica.org</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/Modelica_Electrical_PowerConverters/releases/tag/Modelica_Electrical_PowerConverters%201.4.0@7785"><i class="glyphicon glyphicon-download-alt icon-white"></i> Modelica_Electrical_PowerConverters%201.4.0@7785<br>(<span class="relative" title="2014-07-10">2014-07-10</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_Fluid">Modelica_Fluid</a></td>
<td>Free library from the Modelica Association providing components to model 1-dimensional thermo-fluid flow in networks of vessels, pipes, fluid machines, valves and fittings. This library is included in the Modelica Standard Library since version 3.1.</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/Modelica_Fluid/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2009-02-10">2009-02-10</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_FundamentalWave">Modelica_FundamentalWave</a></td>
<td>Free library for the modeling of spatial fundamental wave effects of electro magnetic quantities in electric machines. (Still using Modelica Standard Library 2.2.2!) This library is included in the Modelica Standard Library since version 3.1.</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/Modelica_FundamentalWave/releases/tag/v0.6"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.6<br>(<span class="relative" title="2009-12-08">2009-12-08</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_Magnetic">Modelica_Magnetic</a></td>
<td>Free library for modelling of electromagnetic devices with lumped magnetic networks. This library is included in the Modelica Standard Library since version 3.1.</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/Modelica_Magnetic/releases/tag/v1.0"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0<br>(<span class="relative" title="2007-10-11">2007-10-11</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_PowerFlow">Modelica_PowerFlow</a></td>
<td>Archived from svn.modelica.org</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_QuasiStatic_FluxTubes">Modelica_QuasiStatic_FluxTubes</a></td>
<td>Archived from svn.modelica.org</td>
<td><a class="btn btn-default btn-sm disabled" href="#">N/A</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/Modelica_Quasistationary">Modelica_Quasistationary</a></td>
<td>Free library for the analysis of electrical circuits with purely sinusoidal voltages and currents. With this library single and multi phase circuits can be modelled. (Still uses Modelica Standard Library 2.2.2!) This library is included in the MSL starting from version 3.2.</td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/Modelica_Quasistationary/releases/tag/v0.9.3"><i class="glyphicon glyphicon-download-alt icon-white"></i> v0.9.3<br>(<span class="relative" title="2009-12-08">2009-12-08</span>)</a></td>
<td><span class="relative" title="2023-01-28">2023-01-28</span></td>
</tr>
<tr>
<td><a target="_blank" href="https://github.com/modelica-deprecated/MultiBody">MultiBody</a></td>
<td>Deprecated library which is part of the Modelica Standard Library since version 2.1. </td>
<td><a class="btn btn-sm btn-danger" target=_blank href="https://github.com/modelica-deprecated/MultiBody/releases/tag/v1.0.1"><i class="glyphicon glyphicon-download-alt icon-white"></i> v1.0.1<br>(<span class="relative" title="2004-07-07">2004-07-07</span>)</a></td>