-
Notifications
You must be signed in to change notification settings - Fork 169
/
ConvertModelica_from_3.2.3_to_4.0.0.mos
1954 lines (1933 loc) · 140 KB
/
ConvertModelica_from_3.2.3_to_4.0.0.mos
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
// Convert from Modelica 3.2.3 to Modelica 4.0.0
// Change references to classes that are removed from Modelica Standard Library
convertClass("Modelica.UsersGuide.ParameterDefaults",
"Modelica.UsersGuide.Conventions.ModelicaCode.ParameterDefaults");
convertClass("Modelica.Fluid.Dissipation.Utilities.Functions.General.CubicInterpolation_DP",
"Modelica.Fluid.Dissipation.Utilities.Functions.General.CubicInterpolation_Re");
convertClass("Modelica.Fluid.Dissipation.Utilities.Functions.General.CubicInterpolation_MFLOW",
"Modelica.Fluid.Dissipation.Utilities.Functions.General.CubicInterpolation_lambda");
convertClass("Modelica.Fluid.Icons.VariantLibrary",
"Modelica.Icons.VariantsPackage");
convertClass("Modelica.Fluid.Icons.BaseClassLibrary",
"Modelica.Icons.BasesPackage");
convertClass("Modelica.Icons.TypeComplex",
"Complex");
convertClass("Modelica.Mechanics.MultiBody.Sensors.Internal.ZeroForceAndTorque",
"Modelica.Mechanics.MultiBody.Forces.Internal.ZeroForceAndTorque");
convertClass("Modelica.Mechanics.Rotational.Interfaces.PartialElementaryOneFlangeAndSupport",
"ObsoleteModelica4.Mechanics.Rotational.Interfaces.PartialElementaryOneFlangeAndSupport");
convertClass("Modelica.Mechanics.Rotational.Interfaces.PartialElementaryTwoFlangesAndSupport",
"ObsoleteModelica4.Mechanics.Rotational.Interfaces.PartialElementaryTwoFlangesAndSupport");
convertClass("Modelica.Mechanics.Translational.Interfaces.PartialElementaryOneFlangeAndSupport",
"ObsoleteModelica4.Mechanics.Translational.Interfaces.PartialElementaryOneFlangeAndSupport");
convertClass("Modelica.Mechanics.Translational.Interfaces.PartialElementaryTwoFlangesAndSupport",
"ObsoleteModelica4.Mechanics.Translational.Interfaces.PartialElementaryTwoFlangesAndSupport");
convertClass("Modelica.Media.IdealGases.MixtureGases.simpleMoistAir",
"Modelica.Media.IdealGases.MixtureGases.SimpleMoistAir");
convertClass("Modelica.Media.Interfaces.PartialMedium.Choices",
"Modelica.Media.Interfaces.Choices");
convertClass("Modelica.Blocks.Tables.CombiTable1D",
"Modelica.Blocks.Tables.CombiTable1Dv");
convertClass("Modelica.Blocks.Tables.CombiTable2D",
"Modelica.Blocks.Tables.CombiTable2Ds");
convertClass("Modelica.Electrical.Analog.Basic.EMF",
"Modelica.Electrical.Analog.Basic.RotationalEMF");
convertClass("Modelica.Electrical.Analog.Ideal.IdealizedOpAmpLimted",
"Modelica.Electrical.Analog.Ideal.IdealizedOpAmpLimited");
convertClass("Modelica.Electrical.Digital.Converters.LogicToXO1",
"Modelica.Electrical.Digital.Converters.LogicToX01");
convertClass("Modelica.Electrical.Digital.Converters.LogicToXO1Z",
"Modelica.Electrical.Digital.Converters.LogicToX01Z");
convertClass("Modelica.Media.Incompressible.TableBased.Polynomials_Temp",
"Modelica.Math.Polynomials");
convertClass("Modelica.Math.Vectors.Utilities.roots",
"Modelica.Math.Polynomials.roots");
convertClass("Modelica.Electrical.QuasiStationary",
"Modelica.Electrical.QuasiStatic");
convertClass("Modelica.Electrical.Machines.Icons.QuasiStationaryMachine",
"Modelica.Electrical.Machines.Icons.QuasiStaticMachine");
convertClass("Modelica.Electrical.Machines.Icons.QuasiStationaryTransformer",
"Modelica.Electrical.Machines.Icons.QuasiStaticTransformer");
convertClass("Modelica.Electrical.Machines.BasicMachines.QuasiStationaryDCMachines",
"Modelica.Electrical.Machines.BasicMachines.QuasiStaticDCMachines");
convertClass("Modelica.Electrical.Machines.BasicMachines.Components.BasicTransformer",
"Modelica.Electrical.Machines.Interfaces.PartialBasicTransformer");
convertClass("Modelica.Blocks.Sources.Clock",
"Modelica.Blocks.Sources.ContinuousClock");
convertClass("Modelica.Electrical.Digital.Sources.Clock",
"Modelica.Electrical.Digital.Sources.DigitalClock");
convertClass("Modelica.Math.Matrices.LAPACK.dgegv",
"ObsoleteModelica4.Math.Matrices.LAPACK.dgegv");
convertClass("Modelica.Math.Matrices.LAPACK.dgelsx",
"ObsoleteModelica4.Math.Matrices.LAPACK.dgelsx");
convertClass("Modelica.Math.Matrices.LAPACK.dgelsx_vec",
"ObsoleteModelica4.Math.Matrices.LAPACK.dgelsx_vec");
convertClass("Modelica.Math.Matrices.LAPACK.dgeqpf",
"ObsoleteModelica4.Math.Matrices.LAPACK.dgeqpf");
convertClass("Modelica.Math.tempInterpol1",
"ObsoleteModelica4.Math.tempInterpol1");
convertClass("Modelica.Math.tempInterpol2",
"ObsoleteModelica4.Math.tempInterpol2");
convertClass("Modelica.Math.baseIcon1",
"Modelica.Math.Icons.AxisLeft");
convertClass("Modelica.Math.baseIcon2",
"Modelica.Math.Icons.AxisCenter");
convertClass("Modelica.Math.Matrices.Utilities.householderReflection",
"ObsoleteModelica4.Math.Matrices.Utilities.householderReflection");
convertClass("Modelica.Math.Matrices.Utilities.householderSimilarityTransformation",
"ObsoleteModelica4.Math.Matrices.Utilities.householderSimilarityTransformation");
convertClass("Modelica.Math.Vectors.Utilities.householderReflection",
"ObsoleteModelica4.Math.Vectors.Utilities.householderReflection");
convertClass("Modelica.Math.Vectors.Utilities.householderVector",
"ObsoleteModelica4.Math.Vectors.Utilities.householderVector");
convertClass("Modelica.ComplexMath.'abs'",
"Modelica.ComplexMath.abs");
convertClass("Modelica.ComplexMath.'sqrt'",
"Modelica.ComplexMath.sqrt");
convertClass("Modelica.ComplexMath.'max'",
"Modelica.ComplexMath.max");
convertClass("Modelica.ComplexMath.'min'",
"Modelica.ComplexMath.min");
convertClass("Modelica.ComplexMath.'sum'",
"Modelica.ComplexMath.sum");
convertClass("Modelica.ComplexMath.'product'",
"Modelica.ComplexMath.product");
convertClass("Modelica.Electrical.Analog.Basic.HeatingResistor",
"Modelica.Electrical.Analog.Basic.Resistor");
convertClass("Modelica.Electrical.Analog.Semiconductors.HeatingDiode",
"Modelica.Electrical.Analog.Semiconductors.Diode");
convertClass("Modelica.Electrical.Analog.Semiconductors.HeatingNMOS",
"Modelica.Electrical.Analog.Semiconductors.NMOS");
convertClass("Modelica.Electrical.Analog.Semiconductors.HeatingPMOS",
"Modelica.Electrical.Analog.Semiconductors.PMOS");
convertClass("Modelica.Electrical.Analog.Semiconductors.HeatingNPN",
"Modelica.Electrical.Analog.Semiconductors.NPN");
convertClass("Modelica.Electrical.Analog.Semiconductors.HeatingPNP",
"Modelica.Electrical.Analog.Semiconductors.PNP");
convertClass("Modelica.Electrical.PowerConverters.DCDC.Control.VoltageToDutyCycle",
"ObsoleteModelica4.Electrical.PowerConverters.DCDC.Control.VoltageToDutyCycle");
convertClass("Modelica.Blocks.Interfaces.BlockIcon",
"Modelica.Blocks.Icons.Block");
convertClass("Modelica.Blocks.Interfaces.BooleanBlockIcon",
"Modelica.Blocks.Icons.BooleanBlock");
convertClass("Modelica.Blocks.Interfaces.DiscreteBlockIcon",
"Modelica.Blocks.Icons.DiscreteBlock");
convertClass("Modelica.Blocks.Interfaces.IntegerBlockIcon",
"Modelica.Blocks.Icons.IntegerBlock");
convertClass("Modelica.Blocks.Interfaces.partialBooleanBlockIcon",
"Modelica.Blocks.Icons.PartialBooleanBlock");
convertClass("Modelica.Blocks.Interfaces.Adaptors.SendReal",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.SendReal");
convertClass("Modelica.Blocks.Interfaces.Adaptors.SendBoolean",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.SendBoolean");
convertClass("Modelica.Blocks.Interfaces.Adaptors.SendInteger",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.SendInteger");
convertClass("Modelica.Blocks.Interfaces.Adaptors.ReceiveReal",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.ReceiveReal");
convertClass("Modelica.Blocks.Interfaces.Adaptors.ReceiveBoolean",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.ReceiveBoolean");
convertClass("Modelica.Blocks.Interfaces.Adaptors.ReceiveInteger",
"ObsoleteModelica4.Blocks.Interfaces.Adaptors.ReceiveInteger");
convertClass("Modelica.Blocks.Types.Init.DoNotUse_InitialIntegratorState",
"Modelica.Blocks.Types.Init.InitialState");
convertClass("Modelica.Blocks.Types.InitPID.DoNotUse_InitialIntegratorState",
"Modelica.Blocks.Types.Init.InitialState");
convertClass("Modelica.Blocks.Types.InitPID",
"Modelica.Blocks.Types.Init");
convertClass("Modelica.Icons.RotationalSensor",
"Modelica.Icons.RoundSensor");
convertClass("Modelica.Icons.TranslationalSensor",
"Modelica.Icons.RectangularSensor");
convertClass("Modelica.Icons.Library",
"Modelica.Icons.Package");
convertClass("Modelica.Icons.Library2",
"Modelica.Icons.Package");
convertClass("Modelica.Icons.GearIcon",
"Modelica.Mechanics.Rotational.Icons.Gearbox");
convertClass("Modelica.Icons.MotorIcon",
"Modelica.Electrical.Machines.Icons.Drive");
convertClass("Modelica.Mechanics.MultiBody.Icons.MotorIcon",
"Modelica.Electrical.Machines.Icons.Drive");
convertClass("Modelica.Electrical.Analog.Basic.OpAmpDetailed.Pi",
"Modelica.Constants.pi");
convertClass("Modelica.Icons.Info",
"Modelica.Icons.Information");
convertClass("Modelica.Mechanics.MultiBody.Sensors.TansformAbsoluteVector",
"Modelica.Mechanics.MultiBody.Sensors.TransformAbsoluteVector");
convertClass("Modelica.Mechanics.MultiBody.Sensors.TansformRelativeVector",
"Modelica.Mechanics.MultiBody.Sensors.TransformRelativeVector");
convertClass("Modelica.Mechanics.MultiBody.Visualizers.Ground",
"ObsoleteModelica4.Mechanics.MultiBody.Visualizers.Ground");
convertClass("Modelica.Mechanics.MultiBody.Types.Init",
"ObsoleteModelica4.Mechanics.MultiBody.Types.Init");
convertClass("Modelica.ComplexBlocks.Sources.LogFrequencySweep",
"Modelica.Blocks.Sources.LogFrequencySweep");
convertClass("Modelica.Electrical.Machines.BasicMachines.AsynchronousInductionMachines.AIM_SquirrelCage",
"Modelica.Electrical.Machines.BasicMachines.InductionMachines.IM_SquirrelCage");
convertClass("Modelica.Electrical.Machines.BasicMachines.AsynchronousInductionMachines.AIM_SlipRing",
"Modelica.Electrical.Machines.BasicMachines.InductionMachines.IM_SlipRing");
convertClass("Modelica.Electrical.Machines.BasicMachines.SynchronousInductionMachines",
"Modelica.Electrical.Machines.BasicMachines.SynchronousMachines");
convertClass("Modelica.Electrical.Machines.Thermal.AsynchronousInductionMachines.ThermalAmbientAIMC",
"Modelica.Electrical.Machines.Thermal.InductionMachines.ThermalAmbientIMC");
convertClass("Modelica.Electrical.Machines.Thermal.AsynchronousInductionMachines.ThermalAmbientAIMS",
"Modelica.Electrical.Machines.Thermal.InductionMachines.ThermalAmbientIMS");
convertClass("Modelica.Electrical.Machines.Thermal.SynchronousInductionMachines",
"Modelica.Electrical.Machines.Thermal.SynchronousMachines");
convertClass("Modelica.Electrical.Machines.Interfaces.InductionMachines.ThermalPortAIMC",
"Modelica.Electrical.Machines.Interfaces.InductionMachines.ThermalPortIMC");
convertClass("Modelica.Electrical.Machines.Interfaces.InductionMachines.PowerBalanceAIMC",
"Modelica.Electrical.Machines.Interfaces.InductionMachines.PowerBalanceIMC");
convertClass("Modelica.Electrical.Machines.Interfaces.InductionMachines.ThermalPortAIMS",
"Modelica.Electrical.Machines.Interfaces.InductionMachines.ThermalPortIMS");
convertClass("Modelica.Electrical.Machines.Interfaces.InductionMachines.PowerBalanceAIMS",
"Modelica.Electrical.Machines.Interfaces.InductionMachines.PowerBalanceIMS");
convertClass("Modelica.Electrical.Machines.Utilities.ParameterRecords.AIM_SquirrelCageData",
"Modelica.Electrical.Machines.Utilities.ParameterRecords.IM_SquirrelCageData");
convertClass("Modelica.Electrical.Machines.Utilities.ParameterRecords.AIM_SlipRingData",
"Modelica.Electrical.Machines.Utilities.ParameterRecords.IM_SlipRingData");
convertClass("Modelica.Electrical.PowerConverters.DCAC.MultiPhase2Level",
"Modelica.Electrical.PowerConverters.DCAC.Polyphase2Level");
convertClass("Modelica.Electrical.QuasiStationary.MultiPhase",
"Modelica.Electrical.QuasiStatic.Polyphase");
convertClass("Modelica.Electrical.QuasiStationary.MultiPhase.Blocks.SingleToMultiPhase",
"Modelica.Electrical.QuasiStatic.Polyphase.Blocks.SingleToPolyphase");
convertClass("Modelica.Electrical.MultiPhase",
"Modelica.Electrical.Polyphase");
convertClass("Modelica.Magnetic.FundamentalWave.UsersGuide.MultiPhase",
"Modelica.Magnetic.FundamentalWave.UsersGuide.Polyphase");
convertClass("Modelica.Magnetic.FundamentalWave.Components.MultiPhaseElectroMagneticConverter",
"Modelica.Magnetic.FundamentalWave.Components.PolyphaseElectroMagneticConverter");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseWinding",
"Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricPolyphaseWinding");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseCageWinding",
"Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricPolyphaseCageWinding");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.AsynchronousInductionMachines.AIM_SquirrelCage",
"Modelica.Magnetic.FundamentalWave.BasicMachines.InductionMachines.IM_SquirrelCage");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.AsynchronousInductionMachines.AIM_SlipRing",
"Modelica.Magnetic.FundamentalWave.BasicMachines.InductionMachines.IM_SlipRing");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.SynchronousInductionMachines",
"Modelica.Magnetic.FundamentalWave.BasicMachines.SynchronousMachines");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.Components.MultiPhaseElectroMagneticConverter",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.Components.PolyphaseElectroMagneticConverter");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseWinding",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.BasicMachines.Components.SymmetricPolyphaseWinding");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseCageWinding",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.BasicMachines.Components.SymmetricPolyphaseCageWinding");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseCageWinding_obsolete",
"ObsoleteModelica4.Magnetic.FundamentalWave.BasicMachines.Components.SymmetricMultiPhaseCageWinding");
convertClass("Modelica.Magnetic.FundamentalWave.BasicMachines.Components.SaliencyCageWinding_obsolete",
"ObsoleteModelica4.Magnetic.FundamentalWave.BasicMachines.Components.SaliencyCageWinding");
convertClass("Modelica.Magnetic.FundamentalWave.Interfaces.PartialTwoPort",
"Modelica.Magnetic.FundamentalWave.Interfaces.TwoPortElementary");
convertClass("Modelica.Magnetic.FundamentalWave.Interfaces.PartialTwoPortExtended",
"Modelica.Magnetic.FundamentalWave.Interfaces.TwoPortExtended");
convertClass("Modelica.Magnetic.FundamentalWave.Interfaces.PartialTwoPortElementary",
"Modelica.Magnetic.FundamentalWave.Interfaces.TwoPort");
convertClass("Modelica.Magnetic.FundamentalWave.Interfaces.PartialBasicInductionMachine",
"Modelica.Magnetic.FundamentalWave.BaseClasses.Machine");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.PartialTwoPort",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.TwoPortElementary");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.PartialTwoPortExtended",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.TwoPortExtended");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.PartialTwoPortElementary",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.Interfaces.TwoPort");
convertClass("Modelica.Magnetic.QuasiStatic.FundamentalWave.BasicMachines.BaseClasses.PartialBasicMachine",
"Modelica.Magnetic.QuasiStatic.FundamentalWave.BaseClasses.Machine");
convertClass("Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.PartialTwoPortsElementary",
"Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.TwoPortElementary");
convertClass("Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.PartialTwoPorts",
"Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.TwoPort");
convertClass("Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.PartialFixedShape",
"Modelica.Magnetic.QuasiStatic.FluxTubes.BaseClasses.FixedShape");
convertClass("Modelica.Magnetic.QuasiStatic.FluxTubes.Interfaces.PartialLeakage",
"Modelica.Magnetic.QuasiStatic.FluxTubes.BaseClasses.Leakage");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPortsElementary",
"Modelica.Magnetic.FluxTubes.Interfaces.TwoPortElementary");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPorts",
"Modelica.Magnetic.FluxTubes.Interfaces.TwoPort");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialFixedShape",
"Modelica.Magnetic.FluxTubes.BaseClasses.FixedShape");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialForce",
"Modelica.Magnetic.FluxTubes.BaseClasses.Force");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialLeakage",
"Modelica.Magnetic.FluxTubes.BaseClasses.Leakage");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialGeneric",
"Modelica.Magnetic.FluxTubes.BaseClasses.Generic");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialGenericHysteresis",
"Modelica.Magnetic.FluxTubes.BaseClasses.GenericHysteresis");
convertClass("Modelica.Magnetic.FluxTubes.Interfaces.PartialGenericHysteresisTellinen",
"Modelica.Magnetic.FluxTubes.BaseClasses.GenericHysteresisTellinen");
// Issues #3300, #3424
convertModifiers({"Modelica.Magnetic.FluxTubes.Basic.LeakageWithCoefficient",
"Modelica.Magnetic.QuasiStatic.FluxTubes.Basic.LeakageWithCoefficient"},
fill("",0), {"c_usefulFlux=0.7"});
convertClass("Modelica.Thermal.FluidHeatFlow.Components.IsolatedPipe",
"Modelica.Thermal.FluidHeatFlow.Components.Pipe");
convertClass("Modelica.Thermal.FluidHeatFlow.Components.HeatedPipe",
"Modelica.Thermal.FluidHeatFlow.Components.Pipe");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.Ambient",
"Modelica.Thermal.FluidHeatFlow.BaseClasses.SinglePortLeft");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.TwoPort",
"Modelica.Thermal.FluidHeatFlow.BaseClasses.TwoPort");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.SinglePortLeft",
"Modelica.Thermal.FluidHeatFlow.BaseClasses.SinglePortLeft");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.SinglePortBottom",
"Modelica.Thermal.FluidHeatFlow.BaseClasses.SinglePortBottom");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.SimpleFriction",
"Modelica.Thermal.FluidHeatFlow.BaseClasses.SimpleFriction");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.AbsoluteSensor",
"Modelica.Thermal.FluidHeatFlow.Interfaces.AbsoluteSensor");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.RelativeSensor",
"Modelica.Thermal.FluidHeatFlow.Interfaces.RelativeSensor");
convertClass("Modelica.Thermal.FluidHeatFlow.Interfaces.Partials.FlowSensor",
"Modelica.Thermal.FluidHeatFlow.Interfaces.FlowSensor");
convertClass("Modelica.Electrical.Machines.Utilities.CurrentController",
"Modelica.Electrical.Machines.Utilities.DQToThreePhase");
convertClass("Modelica.Electrical.Machines.Utilities.VoltageController",
"Modelica.Electrical.Machines.Utilities.DQCurrentController");
convertClass("Modelica.Media.Common.OneNonLinearEquation",
"ObsoleteModelica4.Media.Common.OneNonLinearEquation");
convertClass("Modelica.Blocks.Tables.Internal.readTimeTableData",
"ObsoleteModelica4.Blocks.Tables.Internal.readTimeTableData");
convertClass("Modelica.Blocks.Tables.Internal.readTable1DData",
"ObsoleteModelica4.Blocks.Tables.Internal.readTable1DData");
convertClass("Modelica.Blocks.Tables.Internal.readTable2DData",
"ObsoleteModelica4.Blocks.Tables.Internal.readTable2DData");
// The Modelica_Synchronous library was integrated into the MSL as Modelica.Clocked
convertElement({"Modelica_Synchronous.RealSignals.TimeBasedSources.Sine"},
"freqHz", "f");
convertClass("Modelica_Synchronous", "Modelica.Clocked");
// Change renamed elements of classes
// mue -> mu
convertClass("Modelica.Constants.mue_0", "Modelica.Constants.mu_0");
convertElement({"Modelica.Mechanics.MultiBody.World",
"Modelica.Mechanics.MultiBody.World.gravityAcceleration",
"Modelica.Mechanics.MultiBody.Forces.Internal.standardGravityAcceleration"},
"mue", "mu");
convertElement({"Modelica.Mechanics.Rotational.Components.Brake",
"Modelica.Mechanics.Rotational.Components.Clutch",
"Modelica.Mechanics.Rotational.Components.OneWayClutch",
"Modelica.Mechanics.Translational.Components.Brake"},
"mue_pos", "mu_pos");
convertElement({"Modelica.Mechanics.Rotational.Components.Brake",
"Modelica.Mechanics.Rotational.Components.Clutch",
"Modelica.Mechanics.Rotational.Components.OneWayClutch",
"Modelica.Mechanics.Translational.Components.Brake"},
"mue0", "mu0");
convertElement({"Modelica.Electrical.Machines.Utilities.CurrentController"},
"id_rms", "d");
convertElement({"Modelica.Electrical.Machines.Utilities.CurrentController"},
"iq_rms", "q");
convertElement({"Modelica.Electrical.Machines.Utilities.VoltageController"},
"id_rms", "id");
convertElement({"Modelica.Electrical.Machines.Utilities.VoltageController"},
"iq_rms", "iq");
convertElement("Modelica.Mechanics.MultiBody.Sensors.AbsoluteVelocity",
"tansformAbsoluteVector", "transformAbsoluteVector");
convertElement("Modelica.Mechanics.MultiBody.Sensors.RelativeVelocity",
"tansformRelativeVector", "transformRelativeVector");
convertElement("Modelica.Mechanics.MultiBody.Visualizers.Advanced.SurfaceCharacteristics.torus",
{"ri", "ro"}, {"R", "r"});
convertElement("Modelica.Mechanics.MultiBody.Visualizers.Torus",
{"ri", "ro", "n_ri", "n_ro"}, {"R", "r", "n_R", "n_r"});
convertElement("Modelica.Thermal.FluidHeatFlow.Media.Medium",
{"lamda", "nue"}, {"lambda", "nu"});
convertElement("Modelica.Fluid.Dissipation.Utilities.Records.PressureLoss.Tjunction",
"united_converging_crossection", "united_converging_cross_section");
convertElement("Modelica.Electrical.Spice3.Internal.Functions.junctionParamDepTempSPICE3",
"jucntioncap", "junctioncap");
convertMessage("Modelica.Electrical.Spice3.Internal.Mosfet.Mosfet",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Bjt3",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Bjt.BjtModelLineVariables",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Bjt.BjtVariables",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Bjt.Bjt3Variables",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.BJT",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.ModelcardBJT",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Functions.junction2SPICE3MOSFET",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Functions.junctionCap",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.SpiceRoot.initJunctionVoltages",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.SpiceRoot.limitJunctionVoltage",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos.mos2CalcInitEquations",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos.mos2CalcCalcTempDependencies",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos.mos2CalcNoBypassCode",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos2.mos2ModelLineParamsInitEquations",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos2.drainCur",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Electrical.Spice3.Internal.Mos2.mos2RenameParameters",
"No support of automatic conversion for internal classes.");
convertMessage("Modelica.Media.Air.ReferenceMoistAir.Utilities.Ice09_Utilities.Basic.MyComplex",
"No support of automatic conversion for makeshift record MyComplex.");
convertMessage("Modelica.Media.Air.ReferenceMoistAir.Utilities.Ice09_Utilities.Basic.MyComplexF",
"No support of automatic conversion for makeshift package MyComplexF.");
convertMessage("Modelica.Fluid.Fittings.BaseClasses.QuadraticTurbulent.TestWallFriction",
"No support of automatic conversion for test model.");
convertMessage("Modelica.Fluid.Pipes.BaseClasses.WallFriction.TestWallFrictionAndGravity",
"No support of automatic conversion for test model.");
convertModifiers({"Modelica.Thermal.FluidHeatFlow.Components.IsolatedPipe"},
fill("",0), {"useHeatPort=false"});
convertModifiers("Modelica.Thermal.FluidHeatFlow.Components.HeatedPipe",
fill("",0), {"useHeatPort=true"});
// StateGraph.Temporary
convertClass("Modelica.StateGraph.Temporary.anyTrue",
"Modelica.Math.BooleanVectors.anyTrue");
convertClass("Modelica.StateGraph.Temporary.allTrue",
"Modelica.Math.BooleanVectors.andTrue");
convertClass("Modelica.StateGraph.Temporary.NumericValue",
"Modelica.Blocks.Interaction.Show.RealValue");
convertClass("Modelica.StateGraph.Temporary.IndicatorLamp",
"Modelica.Blocks.Interaction.Show.BooleanValue");
convertClass("Modelica.StateGraph.Temporary.RadioButton",
"Modelica.Blocks.Sources.RadioButtonSource");
convertClass("Modelica.StateGraph.Temporary.SetRealParameter",
"Real");
convertElement("Modelica.StateGraph.Temporary.NumericValue",
"Value", "numberPort");
convertElement("Modelica.StateGraph.Temporary.IndicatorLamp",
"u", "activePort");
convertModifiers("Modelica.StateGraph.Temporary.NumericValue",
{"precision"}, {"significantDigits=%precision%"});
convertModifiers("Modelica.StateGraph.Temporary.NumericValue",
{"Value"}, {"number=%Value%"});
convertModifiers("Modelica.StateGraph.Temporary.NumericValue",
{"hideConnector"}, {"use_numberPort=not %hideConnector%"});
convertModifiers({"Modelica.StateGraph.Interfaces.PartialStep",
"Modelica.StateGraph.InitialStep",
"Modelica.StateGraph.InitialStepWithSignal",
"Modelica.StateGraph.Step",
"Modelica.StateGraph.StepWithSignal"},
fill("",0), {"nIn=1", "nOut=1"});
convertElement("Modelica.Mechanics.MultiBody.Joints.RollingWheel",
{"wheelRadius"},
{"radius"});
convertElement("Modelica.Mechanics.MultiBody.Joints.RollingWheelSet",
{"wheelRadius", "wheelDistance"},
{"radius", "track"});
convertElement("Modelica.Mechanics.MultiBody.Parts.RollingWheel",
{"wheelRadius", "wheelMass", "wheel_I_axis", "wheel_I_long", "wheelColor"},
{"radius", "m", "I_axis", "I_long", "color"});
convertElement("Modelica.Mechanics.MultiBody.Parts.RollingWheelSet",
{"wheelRadius", "wheelMass", "wheel_I_axis", "wheel_I_long", "wheelDistance", "wheelWidth", "wheelColor"},
{"R_wheel", "m_wheel", "I_wheelAxis", "I_wheelLong", "track", "width_wheel", "color"});
convertElement({"Modelica.Mechanics.Rotational.Sources.SignTorque"},
"tau_constant", "tau_nominal");
convertElement({"Modelica.Electrical.Machines.BasicMachines.Components.InductorDC",
"Modelica.Electrical.Machines.BasicMachines.Components.PartialAirGapDC",
"Modelica.Electrical.Machines.Interfaces.PartialBasicDCMachine"},
"quasiStationary", "quasiStatic");
convertElement("Modelica.Electrical.QuasiStationary.MultiPhase.Basic.VariableConductor",
"variableResistor", "variableConductor");
convertElement({"Modelica.Media.Interfaces.PartialMedium.BaseProperties",
"Modelica.Media.Interfaces.PartialMixtureMedium.BaseProperties",
"Modelica.Media.Interfaces.PartialMixtureMedium.gasConstant",
"Modelica.Media.Interfaces.PartialCondensingGases.BaseProperties",
"Modelica.Media.Interfaces.PartialRealCondensingGases.BaseProperties",
"Modelica.Media.Common.ThermoFluidSpecial.FixedIGProperties",
"Modelica.Media.Common.ThermoFluidSpecial.ThermoProperties",
"Modelica.Media.Common.ThermoFluidSpecial.ThermoProperties_ph",
"Modelica.Media.Common.ThermoFluidSpecial.ThermoProperties_pT",
"Modelica.Media.Common.ThermoFluidSpecial.ThermoProperties_dT",
"Modelica.Media.Common.SaturationProperties",
"Modelica.Media.Common.IF97BaseTwoPhase",
"Modelica.Media.Common.IF97PhaseBoundaryProperties",
"Modelica.Media.Common.GibbsDerivs",
"Modelica.Media.Common.HelmholtzDerivs",
"Modelica.Media.Common.FundamentalConstants",
"Modelica.Media.Common.AuxiliaryProperties",
"Modelica.Media.Common.GibbsDerivs2",
"Modelica.Media.Air.MoistAir.gasConstant_X",
"Modelica.Media.IdealGases.Common.DataRecord",
"Modelica.Media.R134a.R134a_ph.setState_dTX",
"Modelica.Media.R134a.R134aData",
"Modelica.Media.R134a.R134aData.data",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ag",
"Modelica.Media.IdealGases.Common.SingleGasesData.Agplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Agminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Air",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALBr3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALC",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALC2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALCLplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALFplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALFCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALF4minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALH",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALHCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALHCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALHF",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALHFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALHF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALH2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALH2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALH2F",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALI",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALI3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALN",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALO",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOF",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOF2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOHCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOHCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOHF",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALOHF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALO2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL_OH_2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL_OH_2F",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL_OH_3",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALS",
"Modelica.Media.IdealGases.Common.SingleGasesData.ALS2",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2Br6",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2C2",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2CL6",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2F6",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2I6",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2Oplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2O2",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2O2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2O3",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2S",
"Modelica.Media.IdealGases.Common.SingleGasesData.AL2S2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ar",
"Modelica.Media.IdealGases.Common.SingleGasesData.Arplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.B",
"Modelica.Media.IdealGases.Common.SingleGasesData.Bplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Bminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.BBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BBr3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BC",
"Modelica.Media.IdealGases.Common.SingleGasesData.BC2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCLplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCLOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCL_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCL2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BCL2OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BFCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BFOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF2OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BF4minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BHCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BHCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BHF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BHFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BHF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH2F",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH3NH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BH4",
"Modelica.Media.IdealGases.Common.SingleGasesData.BI",
"Modelica.Media.IdealGases.Common.SingleGasesData.BI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BI3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BN",
"Modelica.Media.IdealGases.Common.SingleGasesData.BO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BO2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.B_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BS",
"Modelica.Media.IdealGases.Common.SingleGasesData.BS2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2C",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2CL4",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2F4",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H3",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H3_db",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H4",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H4_db",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H5",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H5_db",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2H6",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2O2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2O3",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2_OH_4",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2S",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2S2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B2S3",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3H7_C2v",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3H7_Cs",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3H9",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3N3H6",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3O3CL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3O3FCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3O3F2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.B3O3F3",
"Modelica.Media.IdealGases.Common.SingleGasesData.B4H4",
"Modelica.Media.IdealGases.Common.SingleGasesData.B4H10",
"Modelica.Media.IdealGases.Common.SingleGasesData.B4H12",
"Modelica.Media.IdealGases.Common.SingleGasesData.B5H9",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ba",
"Modelica.Media.IdealGases.Common.SingleGasesData.Baplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaCLplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaFplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaI",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaOplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaOHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ba_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BaS",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ba2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be",
"Modelica.Media.IdealGases.Common.SingleGasesData.Beplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Beplusplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeH2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeI",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeN",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeOHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BeS",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2CL4",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2F4",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2OF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be2O2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be3O3",
"Modelica.Media.IdealGases.Common.SingleGasesData.Be4O4",
"Modelica.Media.IdealGases.Common.SingleGasesData.Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.Brplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Brminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrF",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrF5",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrO",
"Modelica.Media.IdealGases.Common.SingleGasesData.OBrO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrOO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrO3",
"Modelica.Media.IdealGases.Common.SingleGasesData.Br2",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrBrO",
"Modelica.Media.IdealGases.Common.SingleGasesData.BrOBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.C",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CBr3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CBr4",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL2Br2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL3Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCL4",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFBr3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFCLBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFCL2Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CFCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2Br2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2CLBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF3plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF3Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF3CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CF4",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHBr3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHCLBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHCL2Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHFBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHFCLBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHFCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHF2Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHF2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CHI3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2Br2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2CLBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2F",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2FBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2FCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2F2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2I2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3F",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3I",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2OHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3O",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH4",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3OOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CI",
"Modelica.Media.IdealGases.Common.SingleGasesData.CI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CI3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CI4",
"Modelica.Media.IdealGases.Common.SingleGasesData.CN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CNplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CNminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CNN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CO",
"Modelica.Media.IdealGases.Common.SingleGasesData.COplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.COCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.COCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.COFCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.COF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.COHCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.COHF",
"Modelica.Media.IdealGases.Common.SingleGasesData.COS",
"Modelica.Media.IdealGases.Common.SingleGasesData.CO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CO2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.COOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CP",
"Modelica.Media.IdealGases.Common.SingleGasesData.CS",
"Modelica.Media.IdealGases.Common.SingleGasesData.CS2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2plus",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2CL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2CL4",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2CL6",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2FCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2FCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F3CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F4",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2F6",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HCL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HF",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HFCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HF2CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2HF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H2_vinylidene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H2FCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H2F2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2CO_ketene",
"Modelica.Media.IdealGases.Common.SingleGasesData.O_CH_2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.HO_CO_2OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H3_vinyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2BrminusCOOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H3CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH2CLminusCOOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H3F",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3CN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3CO_acetyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H4",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H4O_ethylen_o",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3CHO_ethanal",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3COOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.OHCH2COOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H5",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H5Br",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H6",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3N2CH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2H5OH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3OCH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3O2CH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CCN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CNC",
"Modelica.Media.IdealGases.Common.SingleGasesData.OCCN",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2N2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H3_1_propynl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H3_2_propynl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H4_allene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H4_propyne",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H4_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H5_allyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H6_propylene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H6_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H6O_propylox",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H6O_acetone",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H6O_propanal",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H7_n_propyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H7_i_propyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H8",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H8O_1propanol",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3H8O_2propanol",
"Modelica.Media.IdealGases.Common.SingleGasesData.CNCOCN",
"Modelica.Media.IdealGases.Common.SingleGasesData.C3O2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H2_butadiyne",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H4_1_3minuscyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H6_butadiene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H6_1butyne",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H6_2butyne",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H6_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H8_1_butene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H8_cis2_buten",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H8_isobutene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H8_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H9_n_butyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H9_i_butyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H9_s_butyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H9_t_butyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H10_n_butane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4H10_isobutane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C4N2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H6_1_3cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H8_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H10_1_pentene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H10_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H11_pentyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H11_t_pentyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H12_n_pentane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C5H12_i_pentane",
"Modelica.Media.IdealGases.Common.SingleGasesData.CH3C_CH3_2CH3",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6D5_phenyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6D6",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H2",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H5_phenyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H5O_phenoxy",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H6",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H5OH_phenol",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H10_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H12_1_hexene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H12_cyclo",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H13_n_hexyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C6H14_n_hexane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H7_benzyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H8",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H8O_cresol_mx",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H14_1_heptene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H15_n_heptyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H16_n_heptane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C7H16_2_methylh",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H8_styrene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H10_ethylbenz",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H16_1_octene",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H17_n_octyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H18_n_octane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C8H18_isooctane",
"Modelica.Media.IdealGases.Common.SingleGasesData.C9H19_n_nonyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C10H8_naphthale",
"Modelica.Media.IdealGases.Common.SingleGasesData.C10H21_n_decyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.C12H9_o_bipheny",
"Modelica.Media.IdealGases.Common.SingleGasesData.C12H10_biphenyl",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ca",
"Modelica.Media.IdealGases.Common.SingleGasesData.Caplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaBr2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaCLplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaCL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaFplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaI",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaI2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaO",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaOplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaOHplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ca_OH_2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CaS",
"Modelica.Media.IdealGases.Common.SingleGasesData.Ca2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cd",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cdplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLCN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLF3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLF5",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLO",
"Modelica.Media.IdealGases.Common.SingleGasesData.CLO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CL2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.Co",
"Modelica.Media.IdealGases.Common.SingleGasesData.Coplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cominus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cr",
"Modelica.Media.IdealGases.Common.SingleGasesData.Crplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Crminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CrN",
"Modelica.Media.IdealGases.Common.SingleGasesData.CrO",
"Modelica.Media.IdealGases.Common.SingleGasesData.CrO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CrO3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CrO3minus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs",
"Modelica.Media.IdealGases.Common.SingleGasesData.Csplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Csminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsBO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsBr",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsI",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsLi",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsNO2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsNO3",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsNa",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsO",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsOH",
"Modelica.Media.IdealGases.Common.SingleGasesData.CsRb",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2Br2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2CO3",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2CL2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2F2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2I2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2O",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2Oplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2O2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2O2H2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cs2SO4",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cu",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cuplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cuminus",
"Modelica.Media.IdealGases.Common.SingleGasesData.CuCL",
"Modelica.Media.IdealGases.Common.SingleGasesData.CuF",
"Modelica.Media.IdealGases.Common.SingleGasesData.CuF2",
"Modelica.Media.IdealGases.Common.SingleGasesData.CuO",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cu2",
"Modelica.Media.IdealGases.Common.SingleGasesData.Cu3CL3",
"Modelica.Media.IdealGases.Common.SingleGasesData.D",
"Modelica.Media.IdealGases.Common.SingleGasesData.Dplus",
"Modelica.Media.IdealGases.Common.SingleGasesData.Dminus",