forked from modelica/fmi-standard.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.json
5294 lines (5294 loc) · 152 KB
/
tools.json
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
[
{
"name": "aiSim",
"license": "commercial",
"url": "https://aimotive.com/aisim",
"logo": "aiSim.svg",
"vendor": "aiMotive",
"vendorURL": "https://aimotive.com/",
"description": "aiSim is a high-fidelity, ISO26262-certified sensor and environment simulation software for automated driving and ADAS development",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"interfaces": [
"GUI",
"CLI"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS"
]
},
{
"name": "DistrictLab\u00ae SimulationStudio",
"license": "commercial",
"url": "https://www.districtlab.eu/our-solution/",
"logo": "IconDLab.png",
"vendor": "DistrictLab",
"vendorURL": "https://www.districtlab.eu/",
"description": "The SimulationStudio is a graphical modelling environment for district heating and cooling simulation and Model-Based Design.",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": []
},
{
"name": "rust-fmi",
"license": "osi",
"url": "https://crates.io/crates/fmi",
"vendor": "John Hughes",
"vendorURL": "https://crates.io/users/jondo2010",
"description": "A Rust interface to FMUs (Functional Mock-up Units) that follow the FMI Standard.",
"features": [],
"platforms": [
"macOS",
"Linux",
"Windows"
],
"interfaces": [
"library"
],
"fmiVersions": [
"2.0",
"3.0"
],
"fmuExport": [],
"fmuImport": [
"ME",
"CS",
"SE"
]
},
{
"name": "RTMaps",
"license": "commercial",
"url": "https://intempora.com/products/rtmaps/",
"logo": "Intempora_dSPACE.png",
"vendor": "Intempora",
"vendorURL": "https://intempora.com/",
"description": "RTMaps is a component-based development and execution software tool. FMUs can be easily integrated as components in our framework for co-simulation.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"interfaces": [
"GUI",
"CLI"
],
"fmiVersions": [
"2.0",
"3.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "preCICE-FMI Runner",
"license": "osi",
"url": "https://github.com/precice/fmi-runner",
"logo": "precice-logo.svg",
"vendor": "preCICE",
"vendorURL": "https://precice.org/",
"description": "preCICE is a coupling library for partitioned multi-physics simulations. FMUs can be coupled to PDE-based simulation programs like OpenFOAM and FEniCS with the preCICE-FMI runner software (experimental).",
"features": [],
"platforms": [
"macOS",
"Linux",
"Windows"
],
"interfaces": [
"CLI"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "20-sim",
"license": "commercial",
"url": "https://www.20sim.com/",
"vendor": "Controllab Products",
"vendorURL": "https://www.20sim.com/",
"description": "Modeling and simulation program for mechatronic systems and control",
"features": [],
"platforms": [
"macOS",
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS"
]
},
{
"name": "@Source",
"license": "commercial",
"url": "https://podiumtechnology.co.uk/atsource-targets.htm#Modelisar",
"vendor": "Podium Technology",
"vendorURL": "https://podiumtechnology.co.uk/",
"description": "Simulink via @Source",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [
"ME"
],
"fmuImport": []
},
{
"name": "NeurEco",
"license": "commercial",
"url": "https://www.adagos.com/neureco",
"vendor": "ADAGOS",
"vendorURL": "https://www.adagos.com/neureco",
"description": "Automatic parsimonious neural network factory",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"ME"
],
"fmuImport": []
},
{
"name": "Adams",
"license": "commercial",
"url": "https://hexagon.com/products/product-groups/computer-aided-engineering-software/adams",
"logo": "Hexagon.svg",
"vendor": "Hexagon",
"vendorURL": "https://hexagon.com/",
"description": "High end multibody dynamics simulation software from Hexagon",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "ADEPT Framework",
"license": "commercial",
"url": "https://www.adi.com/products/adept-framework/",
"vendor": "ADI",
"vendorURL": "https://www.adi.com/products/adept-framework/",
"description": "Industrial data and control software platform built around the concept of a data framework that links real-time Linux servers as a distributed resource and provides desktop client control of the time-deterministic computing and data handling capability",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "Dynamics",
"license": "commercial",
"url": "https://www.algoryx.se/products/agx-dynamics",
"vendor": "AGX",
"vendorURL": "https://www.algoryx.se/products/agx-dynamics",
"description": "AGX Dynamics is a professional multi-purpose physics engine for simulators, engineering, large scale granular simulators and more",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": []
},
{
"name": "Altair Activate",
"license": "commercial",
"url": "https://www.altair.com/activate",
"logo": "Activate.png",
"vendor": "Altair",
"vendorURL": "https://www.altair.com/",
"examplesURL": "https://github.com/altairengineering/fmus",
"description": "Software environment for modeling, simulation and analysis of multi-disciplinary systems",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "Altair MotionSolve",
"license": "commercial",
"url": "https://www.altair.com/motionsolve/",
"vendor": "Altair",
"logo": "MotionSolve.png",
"vendorURL": "https://www.altair.com/",
"description": "MotionSolve is a solver that performs 3D multi-body system simulations to predict the dynamic response and optimize the performance of products that move.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "Altair MotionView",
"license": "commercial",
"url": "https://www.altair.com/motionsolve/motionview/",
"logo": "MotionView.png",
"vendor": "Altair",
"vendorURL": "https://www.altair.com/",
"description": "MotionView is a graphical environment for building multibody system models and for visualizing motion simulation results using animations and plots.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "CFX",
"license": "commercial",
"url": "https://www.ansys.com/products/fluids/ansys-cfx",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "ANSYS CFX is a general purpose CFD package with advanced turbomachinery capabilities",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "DesignXplorer",
"license": "commercial",
"url": "https://www.ansys.com/Products/Platform/ANSYS-DesignXplorer",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "DesignXplorer is able to export a computed response surface as an FMU",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [
"ME"
],
"fmuImport": []
},
{
"name": "SCADE Display",
"license": "commercial",
"url": "https://www.ansys.com/products/embedded-software/ansys-scade-display",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "Model-based development environment for safe and reliable embedded human-machine interfaces (HMI) software",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI",
"CLI"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"ME",
"CS"
],
"fmuImport": []
},
{
"name": "SCADE Suite",
"license": "commercial",
"url": "https://www.ansys.com/products/embedded-software/ansys-scade-suite",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "Model-based development environment for safe and reliable embedded control software, from design to safety certified code generation",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI",
"CLI"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"ME",
"CS"
],
"fmuImport": []
},
{
"name": "Scade One",
"license": "commercial",
"url": "https://www.ansys.com/products/embedded-software/ansys-scade-one",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "Model-based solution for the development of embedded control, mission and autonomy software, enabling a seamless MBSE process from the start. Successor of the SCADE products family.",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"ME",
"CS"
],
"fmuImport": []
},
{
"name": "Twin Builder",
"license": "commercial",
"url": "https://www.ansys.com/products/digital-twin/ansys-twin-builder",
"logo": "Ansys.svg",
"vendor": "Ansys",
"vendorURL": "https://www.ansys.com/",
"description": "Ansys Twin Builder enables you to quickly create a digital twin\u2013a connected replica of an in-service asset.",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "AutoFOCUS3",
"license": "osi",
"url": "https://www.fortiss.org/en/results/software/autofocus-3",
"vendor": "fortiss",
"vendorURL": "https://www.fortiss.org/en/",
"description": "AutoFOCUS3 is a model-based tool and research platform for the design, development and validation of safety-critical embedded systems developed at fortiss",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "AUTOSAR Builder",
"license": "commercial",
"url": "https://www.3ds.com/products-services/catia/products/autosarbuilder/",
"logo": "3DS.svg",
"vendor": "Dassault Syst\u00e8mes",
"vendorURL": "https://3ds.com/",
"description": "AUTOSAR Builder is a powerful, flexible, and open AUTOSAR authoring and test solution enabling modeling, test, and validation of in-vehicle embedded systems. It fully supports the AUTOSAR standard, both Classic and Adaptive, in one environment.",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": []
},
{
"name": "CRUISE",
"license": "commercial",
"url": "https://www.avl.com/cruise",
"logo": "cruise.svg",
"vendor": "AVL",
"vendorURL": "https://avl.com/",
"description": "Vehicle system analysis tool for the optimization of fuel efficiency, emission, performance and driveability, from office to HiL to testbed.",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "CRUISE M",
"license": "commercial",
"url": "https://www.avl.com/cruise-m",
"logo": "cruise_m.svg",
"vendor": "AVL",
"vendorURL": "https://avl.com/",
"description": "AVL CRUISE\u2122 M is a realtime, multi-disciplinary, vehicle system simulation software used in office environments for the design of powertrains and thermal management systems, in HiL environments for control function development and calibration, and in testbed environments to provide simulation models for component testing.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
],
"interfaces": [
"GUI",
"CLI"
]
},
{
"name": "Model.CONNECT",
"license": "commercial",
"url": "https://www.avl.com/model.connect",
"logo": "Model_CONNECT.svg",
"vendor": "AVL",
"vendorURL": "https://avl.com/",
"description": "AVL\u2019s open model integration and co-simulation platform, connecting virtual and real components into one functional prototype",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS",
"ME"
],
"interfaces": [
"GUI",
"CLI"
]
},
{
"name": "exothermia suite",
"license": "commercial",
"url": "https://www.gtisoft.com/exothermia-axisuite/",
"vendor": "Exothermia",
"vendorURL": "http://exothermia.com/",
"description": "Simulation of exhaust aftertreatment systems from Exothermia",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": []
},
{
"name": "Automation Studio",
"license": "commercial",
"url": "https://www.br-automation.com/en/",
"vendor": "B&R",
"vendorURL": "https://www.br-automation.com/en/",
"description": "B&Rs Automation Studio is a software engineering platform for industrial automation targetting PLCs, industrial PCs, HMI and embedded controllers from B&R",
"features": [],
"platforms": [
"Windows",
"Source Code"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS"
]
},
{
"name": "BEAST",
"license": "commercial",
"url": "https://www.skf.com",
"vendor": "SKF",
"vendorURL": "https://www.skf.com/",
"description": "BEAST is an advanced dynamic simulation tool for rolling bearings and other mechanical systems with contacts available through SKF Engineering Consultancy Services. BEAST analyzes what will happen under real conditions and predicts the behaviour of complex equipment that incorporates rolling bearings.",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "TwinCAT",
"license": "commercial",
"url": "https://www.beckhoff.com/en-en/products/automation/twincat/",
"logo": "beckhoff.png",
"vendor": "Beckhoff",
"vendorURL": "https://www.beckhoff.com/en-en/products/automation/twincat/",
"examplesURL": "https://github.com/Beckhoff/TE142x---FMU-Samples",
"description": "The TwinCAT software system turns almost any PC-based system into a real-time control with multiple PLC, NC, CNC and/or robotics runtime systems.",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI",
"CLI"
],
"fmiVersions": [
"2.0",
"3.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "Controls Virtual Test Bed",
"license": "commercial",
"url": "https://simulationresearch.lbl.gov/bcvtb/",
"vendor": "Building",
"vendorURL": "https://simulationresearch.lbl.gov/bcvtb/",
"description": "BCVTB is a Software environment, based on Ptolemy II, for co-simulation of, and data exchange with, building energy and control systems",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "Cameo Systems Modeler",
"license": "commercial",
"url": "https://www.3ds.com/products-services/catia/products/no-magic/cameo-systems-modeler/",
"logo": "3DS.svg",
"vendor": "Dassault Syst\u00e8mes",
"vendorURL": "https://3ds.com/",
"description": "Cameo Systems Modeler™ is an industry leading cross-platform collaborative Model-Based Systems Engineering (MBSE) environment, which provides smart, robust, and intuitive tools to define, track, and visualize all aspects of systems in the most standard-compliant SysML models and diagrams.",
"features": [],
"platforms": [
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "CANoe",
"license": "commercial",
"url": "https://www.vector.com/int/en/products/products-a-z/software/canoe/",
"logo": "Vector.svg",
"vendor": "Vector",
"vendorURL": "https://www.vector.com/",
"description": "CANoe is the comprehensive software tool for development, test and analysis of entire ECU networks and individual ECUs",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"ME"
],
"fmuImport": [
"CS"
]
},
{
"name": "CarMaker",
"license": "commercial",
"url": "https://ipg-automotive.com/en/products-solutions/software/carmaker/",
"logo": "IPG-Automotive-logo.svg",
"vendor": "IPG Automotive",
"vendorURL": "https://www.ipg-automotive.com/de/",
"description": "CarMaker is an open test- and integration-platform for MiL, SiL and HiL that allows to implement virtual test scenarios for the application areas ADAS, AD, Powertrain and Vehicle Dynamics provided by IPG Automotive.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS"
],
"fmuImport": [
"CS"
],
"interfaces": [
"GUI"
]
},
{
"name": "CarSim",
"license": "commercial",
"url": "https://www.carsim.com/",
"vendor": "Mechanical Simulation",
"vendorURL": "https://www.carsim.com/",
"description": "CarSim, TruckSim, and BikeSim are vehicle dynamics software solutions from Mechanical Simulation that support XiL development workflows and power real-time driving simulators around the globe",
"features": [],
"platforms": [
"Windows",
"Linux"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS"
],
"fmuImport": []
},
{
"name": "3DEXPERIENCE (CATIA)",
"license": "commercial",
"url": "https://www.3ds.com/3dexperience/",
"logo": "3DS.svg",
"vendor": "Dassault Syst\u00e8mes",
"vendorURL": "https://www.3ds.com/",
"description": "3DEXPERIENCE is a multi-platform software suite for computer-aided design, computer-aided manufacturing, computer-aided engineering, 3D modeling and product lifecycle management.",
"features": [],
"platforms": [
"Windows",
"Source Code"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"1.0",
"2.0",
"3.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "Collimator",
"license": "commercial",
"url": "https://app.collimator.ai/",
"logo": "collimator.svg",
"vendor": "Collimator",
"vendorURL": "https://www.collimator.ai/",
"description": "Cloud-based platform to model, simulate, and optimize complex dynamical systems with a combination of physics and machine learning. Built on an open core powered by Python and JAX.",
"features": [],
"platforms": [
"macOS",
"Linux",
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "pycollimator",
"license": "osi",
"url": "https://py.collimator.ai/",
"logo": "collimator.svg",
"vendor": "Collimator",
"vendorURL": "https://www.collimator.ai/",
"description": "Python package powering Collimator's Python- and cloud-native simulation platform. It contains both a local high-performance simulation engine built with JAX, and a client API to run simulations in the cloud.",
"features": [],
"platforms": [
"macOS",
"Linux",
"Windows"
],
"interfaces": [
"library"
],
"fmiVersions": [
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "ControlBuild",
"license": "commercial",
"url": "https://www.3ds.com/products-services/catia/products/controlbuild/",
"logo": "3DS.svg",
"vendor": "Dassault Syst\u00e8mes",
"vendorURL": "https://3ds.com/",
"description": "ControlBuild is an innovative environment for designing and validating distributed control and monitoring systems. Based on a model-driven approach and supported by a structured set of libraries, ControlBuild is used to efficiently model, simulate, test, validate, and deploy IEC 61131-3 control applications.",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"interfaces": [
"GUI"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [
"CS",
"ME"
],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "CosiMate",
"license": "commercial",
"url": "https://www.cosimate.com/",
"logo": "logochiastek_HR.png",
"vendor": "ChiasTek",
"vendorURL": "https://www.chiastek.com/",
"description": "Co-simulation Environment from ChiasTek",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS",
"ME"
]
},
{
"name": "CoTherm",
"license": "commercial",
"url": "https://www.thermoanalytics.com/cotherm",
"vendor": "ThermoAnalytics",
"vendorURL": "https://www.thermoanalytics.com/",
"description": "Co-simulation software for coupling thermal, CFD, FEA, and 1D tools",
"features": [],
"platforms": [
"Linux",
"Windows"
],
"fmiVersions": [
"1.0",
"2.0"
],
"fmuExport": [],
"fmuImport": [
"CS"
]
},
{
"name": "CPPFMU",
"license": "commercial",
"url": "https://github.com/viproma/cppfmu",
"vendor": "ViProMa",
"vendorURL": "https://viproma.no/",
"description": "Interfaces and helper functions for writing FMI-compliant model/slave code in C++",
"features": [],
"platforms": [
"Windows"
],
"fmiVersions": [
"1.0"
],
"fmuExport": [
"CS"
],
"fmuImport": []
},
{
"name": "CENIT",
"license": "commercial",
"url": "https://cenit.cybernetica.no",
"vendor": "Cybernetica",
"vendorURL": "https://cenit.cybernetica.no",
"description": "Industrial product for nonlinear Model Predictive Control (NMPC) from Cybernetica",
"features": [],
"platforms": [