luminarycloud 0.19.0__py3-none-any.whl → 0.22.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/__init__.py +5 -1
- luminarycloud/_client/client.py +7 -0
- luminarycloud/_client/http_client.py +10 -8
- luminarycloud/_feature_flag.py +22 -0
- luminarycloud/_helpers/_create_simulation.py +7 -2
- luminarycloud/_helpers/_upload_mesh.py +1 -0
- luminarycloud/_helpers/_wait_for_mesh.py +6 -5
- luminarycloud/_helpers/_wait_for_simulation.py +3 -3
- luminarycloud/_helpers/download.py +3 -1
- luminarycloud/_helpers/pagination.py +62 -0
- luminarycloud/_helpers/proto_decorator.py +13 -5
- luminarycloud/_helpers/upload.py +18 -12
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +168 -124
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +133 -4
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +66 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +20 -0
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +5 -5
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +17 -3
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +96 -25
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +235 -1
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +7 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +77 -4
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +126 -27
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +183 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +99 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +30 -0
- luminarycloud/_proto/assistant/assistant_pb2.py +74 -41
- luminarycloud/_proto/assistant/assistant_pb2.pyi +64 -2
- luminarycloud/_proto/assistant/assistant_pb2_grpc.py +33 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/base/base_pb2.py +20 -7
- luminarycloud/_proto/base/base_pb2.pyi +38 -0
- luminarycloud/_proto/cad/shape_pb2.py +39 -19
- luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
- luminarycloud/_proto/cad/transformation_pb2.py +60 -16
- luminarycloud/_proto/cad/transformation_pb2.pyi +138 -32
- luminarycloud/_proto/client/simulation_pb2.py +501 -348
- luminarycloud/_proto/client/simulation_pb2.pyi +607 -11
- luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +24 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +23 -2
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +5 -5
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +29 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +70 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +30 -0
- luminarycloud/_proto/quantity/quantity_options_pb2.py +6 -6
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +10 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +176 -167
- luminarycloud/_proto/quantity/quantity_pb2.pyi +11 -5
- luminarycloud/enum/__init__.py +1 -0
- luminarycloud/enum/gpu_type.py +2 -0
- luminarycloud/enum/quantity_type.py +9 -0
- luminarycloud/enum/vis_enums.py +23 -3
- luminarycloud/exceptions.py +7 -1
- luminarycloud/feature_modification.py +45 -35
- luminarycloud/geometry.py +107 -9
- luminarycloud/geometry_version.py +57 -3
- luminarycloud/mesh.py +1 -2
- luminarycloud/meshing/mesh_generation_params.py +8 -8
- luminarycloud/params/enum/_enum_wrappers.py +562 -30
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +4 -0
- luminarycloud/params/simulation/material/material_solid_.py +15 -1
- luminarycloud/params/simulation/physics/__init__.py +0 -1
- luminarycloud/params/simulation/physics/periodic_pair_.py +12 -31
- luminarycloud/physics_ai/architectures.py +58 -0
- luminarycloud/physics_ai/inference.py +13 -13
- luminarycloud/physics_ai/solution.py +3 -1
- luminarycloud/physics_ai/training_jobs.py +37 -0
- luminarycloud/pipelines/__init__.py +11 -3
- luminarycloud/pipelines/api.py +248 -16
- luminarycloud/pipelines/arguments.py +15 -0
- luminarycloud/pipelines/core.py +113 -96
- luminarycloud/pipelines/{operators.py → stages.py} +96 -39
- luminarycloud/project.py +15 -47
- luminarycloud/simulation.py +69 -5
- luminarycloud/simulation_param.py +0 -9
- luminarycloud/simulation_template.py +2 -1
- luminarycloud/types/matrix3.py +12 -0
- luminarycloud/vis/__init__.py +17 -0
- luminarycloud/vis/data_extraction.py +20 -4
- luminarycloud/vis/interactive_report.py +110 -0
- luminarycloud/vis/interactive_scene.py +29 -2
- luminarycloud/vis/report.py +252 -0
- luminarycloud/vis/visualization.py +127 -5
- luminarycloud/volume_selection.py +132 -69
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/RECORD +105 -97
- luminarycloud/params/simulation/physics/periodic_pair/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +0 -31
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/translational_periodicity_.py +0 -29
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type_.py +0 -25
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/WHEEL +0 -0
|
@@ -480,7 +480,9 @@ class _DensityRelationshipEnumTypeWrapper(google.protobuf.internal.enum_type_wra
|
|
|
480
480
|
IDEAL_GAS: _DensityRelationship.ValueType # 37484
|
|
481
481
|
"""Compute density using the ideal gas law."""
|
|
482
482
|
REAL_GAS: _DensityRelationship.ValueType # 8165
|
|
483
|
-
"""Compute density and other thermodynamic properties using lookup
|
|
483
|
+
"""Compute density and other thermodynamic properties using lookup
|
|
484
|
+
tables populated using the CoolProp fluid library.
|
|
485
|
+
"""
|
|
484
486
|
CONSTANT_DENSITY: _DensityRelationship.ValueType # 28817
|
|
485
487
|
"""Constant density fluid (heat transfer is not simulated)."""
|
|
486
488
|
CONSTANT_DENSITY_ENERGY: _DensityRelationship.ValueType # 41777
|
|
@@ -492,13 +494,520 @@ INVALID_DENSITY_RELATIONSHIP: DensityRelationship.ValueType # 0
|
|
|
492
494
|
IDEAL_GAS: DensityRelationship.ValueType # 37484
|
|
493
495
|
"""Compute density using the ideal gas law."""
|
|
494
496
|
REAL_GAS: DensityRelationship.ValueType # 8165
|
|
495
|
-
"""Compute density and other thermodynamic properties using lookup
|
|
497
|
+
"""Compute density and other thermodynamic properties using lookup
|
|
498
|
+
tables populated using the CoolProp fluid library.
|
|
499
|
+
"""
|
|
496
500
|
CONSTANT_DENSITY: DensityRelationship.ValueType # 28817
|
|
497
501
|
"""Constant density fluid (heat transfer is not simulated)."""
|
|
498
502
|
CONSTANT_DENSITY_ENERGY: DensityRelationship.ValueType # 41777
|
|
499
503
|
"""Constant density fluid with energy equation."""
|
|
500
504
|
global___DensityRelationship = DensityRelationship
|
|
501
505
|
|
|
506
|
+
class _PtTableFluid:
|
|
507
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
508
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
509
|
+
|
|
510
|
+
class _PtTableFluidEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_PtTableFluid.ValueType], builtins.type): # noqa: F821
|
|
511
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
512
|
+
INVALID_PT_TABLE_FLUID: _PtTableFluid.ValueType # 0
|
|
513
|
+
REAL_GAS_1_BUTENE: _PtTableFluid.ValueType # 48729
|
|
514
|
+
"""1-Butene."""
|
|
515
|
+
REAL_GAS_ACETONE: _PtTableFluid.ValueType # 30436
|
|
516
|
+
"""Acetone."""
|
|
517
|
+
REAL_GAS_AIR: _PtTableFluid.ValueType # 41111
|
|
518
|
+
"""Air."""
|
|
519
|
+
REAL_GAS_AMMONIA: _PtTableFluid.ValueType # 30222
|
|
520
|
+
"""Ammonia."""
|
|
521
|
+
REAL_GAS_ARGON: _PtTableFluid.ValueType # 23930
|
|
522
|
+
"""Argon."""
|
|
523
|
+
REAL_GAS_BENZENE: _PtTableFluid.ValueType # 53253
|
|
524
|
+
"""Benzene."""
|
|
525
|
+
REAL_GAS_CARBON_DIOXIDE: _PtTableFluid.ValueType # 5433
|
|
526
|
+
"""Carbon Dioxide."""
|
|
527
|
+
REAL_GAS_CARBON_MONOXIDE: _PtTableFluid.ValueType # 41703
|
|
528
|
+
"""Carbon Monoxide."""
|
|
529
|
+
REAL_GAS_CARBONYL_SULFIDE: _PtTableFluid.ValueType # 44169
|
|
530
|
+
"""Carbonyl Sulfide."""
|
|
531
|
+
REAL_GAS_CIS_2_BUTENE: _PtTableFluid.ValueType # 46066
|
|
532
|
+
"""cis-2-Butene."""
|
|
533
|
+
REAL_GAS_CYCLOHEXANE: _PtTableFluid.ValueType # 46914
|
|
534
|
+
"""Cyclohexane."""
|
|
535
|
+
REAL_GAS_CYCLOPENTANE: _PtTableFluid.ValueType # 49970
|
|
536
|
+
"""Cyclopentane."""
|
|
537
|
+
REAL_GAS_CYCLOPROPANE: _PtTableFluid.ValueType # 45704
|
|
538
|
+
"""Cyclopropane."""
|
|
539
|
+
REAL_GAS_D4: _PtTableFluid.ValueType # 25740
|
|
540
|
+
"""D4."""
|
|
541
|
+
REAL_GAS_D5: _PtTableFluid.ValueType # 55385
|
|
542
|
+
"""D5."""
|
|
543
|
+
REAL_GAS_D6: _PtTableFluid.ValueType # 53299
|
|
544
|
+
"""D6."""
|
|
545
|
+
REAL_GAS_DEUTERIUM: _PtTableFluid.ValueType # 31972
|
|
546
|
+
"""Deuterium."""
|
|
547
|
+
REAL_GAS_DICHLOROETHANE: _PtTableFluid.ValueType # 11508
|
|
548
|
+
"""Dichloroethane."""
|
|
549
|
+
REAL_GAS_DIETHYL_ETHER: _PtTableFluid.ValueType # 37247
|
|
550
|
+
"""Diethyl Ether."""
|
|
551
|
+
REAL_GAS_DIMETHYL_CARBONATE: _PtTableFluid.ValueType # 58525
|
|
552
|
+
"""Dimethyl Carbonate."""
|
|
553
|
+
REAL_GAS_DIMETHYL_ETHER: _PtTableFluid.ValueType # 45707
|
|
554
|
+
"""Dimethyl Ether."""
|
|
555
|
+
REAL_GAS_ETHANE: _PtTableFluid.ValueType # 27889
|
|
556
|
+
"""Ethane."""
|
|
557
|
+
REAL_GAS_ETHANOL: _PtTableFluid.ValueType # 1229
|
|
558
|
+
"""Ethanol."""
|
|
559
|
+
REAL_GAS_ETHYL_BENZENE: _PtTableFluid.ValueType # 38305
|
|
560
|
+
"""Ethyl Benzene."""
|
|
561
|
+
REAL_GAS_ETHYLENE: _PtTableFluid.ValueType # 35934
|
|
562
|
+
"""Ethylene."""
|
|
563
|
+
REAL_GAS_ETHYLENE_OXIDE: _PtTableFluid.ValueType # 15118
|
|
564
|
+
"""Ethylene Oxide."""
|
|
565
|
+
REAL_GAS_FLUORINE: _PtTableFluid.ValueType # 18245
|
|
566
|
+
"""Fluorine."""
|
|
567
|
+
REAL_GAS_HEAVY_WATER: _PtTableFluid.ValueType # 54790
|
|
568
|
+
"""Heavy Water."""
|
|
569
|
+
REAL_GAS_HELIUM: _PtTableFluid.ValueType # 24299
|
|
570
|
+
"""Helium."""
|
|
571
|
+
REAL_GAS_HFE143M: _PtTableFluid.ValueType # 51519
|
|
572
|
+
"""HFE143m."""
|
|
573
|
+
REAL_GAS_HYDROGEN: _PtTableFluid.ValueType # 59233
|
|
574
|
+
"""Hydrogen."""
|
|
575
|
+
REAL_GAS_HYDROGEN_CHLORIDE: _PtTableFluid.ValueType # 51986
|
|
576
|
+
"""Hydrogen Chloride."""
|
|
577
|
+
REAL_GAS_HYDROGEN_SULFIDE: _PtTableFluid.ValueType # 45458
|
|
578
|
+
"""Hydrogen Sulfide."""
|
|
579
|
+
REAL_GAS_ISOBUTANE: _PtTableFluid.ValueType # 46574
|
|
580
|
+
"""Isobutane."""
|
|
581
|
+
REAL_GAS_ISOBUTENE: _PtTableFluid.ValueType # 1912
|
|
582
|
+
"""Isobutene."""
|
|
583
|
+
REAL_GAS_ISOHEXANE: _PtTableFluid.ValueType # 12971
|
|
584
|
+
"""Isohexane."""
|
|
585
|
+
REAL_GAS_ISOPENTANE: _PtTableFluid.ValueType # 6072
|
|
586
|
+
"""Isopentane."""
|
|
587
|
+
REAL_GAS_KRYPTON: _PtTableFluid.ValueType # 36257
|
|
588
|
+
"""Krypton."""
|
|
589
|
+
REAL_GAS_M_XYLENE: _PtTableFluid.ValueType # 51564
|
|
590
|
+
"""m-Xylene."""
|
|
591
|
+
REAL_GAS_MD2M: _PtTableFluid.ValueType # 40922
|
|
592
|
+
"""MD2M."""
|
|
593
|
+
REAL_GAS_MD3M: _PtTableFluid.ValueType # 29878
|
|
594
|
+
"""MD3M."""
|
|
595
|
+
REAL_GAS_MD4M: _PtTableFluid.ValueType # 34537
|
|
596
|
+
"""MD4M."""
|
|
597
|
+
REAL_GAS_MDM: _PtTableFluid.ValueType # 38825
|
|
598
|
+
"""MDM."""
|
|
599
|
+
REAL_GAS_METHANE: _PtTableFluid.ValueType # 34998
|
|
600
|
+
"""Methane."""
|
|
601
|
+
REAL_GAS_METHANOL: _PtTableFluid.ValueType # 39047
|
|
602
|
+
"""Methanol."""
|
|
603
|
+
REAL_GAS_METHYL_LINOLEATE: _PtTableFluid.ValueType # 34215
|
|
604
|
+
"""Methyl Linoleate."""
|
|
605
|
+
REAL_GAS_METHYL_LINOLENATE: _PtTableFluid.ValueType # 16848
|
|
606
|
+
"""Methyl Linolenate."""
|
|
607
|
+
REAL_GAS_METHYL_OLEATE: _PtTableFluid.ValueType # 47922
|
|
608
|
+
"""Methyl Oleate."""
|
|
609
|
+
REAL_GAS_METHYL_PALMITATE: _PtTableFluid.ValueType # 16107
|
|
610
|
+
"""Methyl Palmitate."""
|
|
611
|
+
REAL_GAS_METHYL_STEARATE: _PtTableFluid.ValueType # 24343
|
|
612
|
+
"""Methyl Stearate."""
|
|
613
|
+
REAL_GAS_MM: _PtTableFluid.ValueType # 14110
|
|
614
|
+
"""MM."""
|
|
615
|
+
REAL_GAS_N_BUTANE: _PtTableFluid.ValueType # 35207
|
|
616
|
+
"""n-Butane."""
|
|
617
|
+
REAL_GAS_N_DECANE: _PtTableFluid.ValueType # 57319
|
|
618
|
+
"""n-Decane."""
|
|
619
|
+
REAL_GAS_N_DODECANE: _PtTableFluid.ValueType # 9844
|
|
620
|
+
"""n-Dodecane."""
|
|
621
|
+
REAL_GAS_N_HEPTANE: _PtTableFluid.ValueType # 28314
|
|
622
|
+
"""n-Heptane."""
|
|
623
|
+
REAL_GAS_N_HEXANE: _PtTableFluid.ValueType # 7707
|
|
624
|
+
"""n-Hexane."""
|
|
625
|
+
REAL_GAS_N_NONANE: _PtTableFluid.ValueType # 25221
|
|
626
|
+
"""n-Nonane."""
|
|
627
|
+
REAL_GAS_N_OCTANE: _PtTableFluid.ValueType # 27430
|
|
628
|
+
"""n-Octane."""
|
|
629
|
+
REAL_GAS_N_PENTANE: _PtTableFluid.ValueType # 11273
|
|
630
|
+
"""n-Pentane."""
|
|
631
|
+
REAL_GAS_N_PROPANE: _PtTableFluid.ValueType # 34546
|
|
632
|
+
"""n-Propane."""
|
|
633
|
+
REAL_GAS_N_UNDECANE: _PtTableFluid.ValueType # 55958
|
|
634
|
+
"""n-Undecane."""
|
|
635
|
+
REAL_GAS_NEON: _PtTableFluid.ValueType # 46870
|
|
636
|
+
"""Neon."""
|
|
637
|
+
REAL_GAS_NEOPENTANE: _PtTableFluid.ValueType # 59971
|
|
638
|
+
"""Neopentane."""
|
|
639
|
+
REAL_GAS_NITROGEN: _PtTableFluid.ValueType # 51017
|
|
640
|
+
"""Nitrogen."""
|
|
641
|
+
REAL_GAS_NITROUS_OXIDE: _PtTableFluid.ValueType # 2554
|
|
642
|
+
"""Nitrous Oxide."""
|
|
643
|
+
REAL_GAS_NOVEC649: _PtTableFluid.ValueType # 32592
|
|
644
|
+
"""Novec649."""
|
|
645
|
+
REAL_GAS_O_XYLENE: _PtTableFluid.ValueType # 44040
|
|
646
|
+
"""o-Xylene."""
|
|
647
|
+
REAL_GAS_ORTHO_DEUTERIUM: _PtTableFluid.ValueType # 25024
|
|
648
|
+
"""Ortho Deuterium."""
|
|
649
|
+
REAL_GAS_ORTHO_HYDROGEN: _PtTableFluid.ValueType # 17344
|
|
650
|
+
"""Ortho Hydrogen."""
|
|
651
|
+
REAL_GAS_OXYGEN: _PtTableFluid.ValueType # 8842
|
|
652
|
+
"""Oxygen."""
|
|
653
|
+
REAL_GAS_P_XYLENE: _PtTableFluid.ValueType # 59591
|
|
654
|
+
"""p-Xylene."""
|
|
655
|
+
REAL_GAS_PARA_DEUTERIUM: _PtTableFluid.ValueType # 27076
|
|
656
|
+
"""Para Deuterium."""
|
|
657
|
+
REAL_GAS_PARA_HYDROGEN: _PtTableFluid.ValueType # 1111
|
|
658
|
+
"""Para Hydrogen."""
|
|
659
|
+
REAL_GAS_PROPYLENE: _PtTableFluid.ValueType # 27552
|
|
660
|
+
"""Propylene."""
|
|
661
|
+
REAL_GAS_PROPYNE: _PtTableFluid.ValueType # 60222
|
|
662
|
+
"""Propyne."""
|
|
663
|
+
REAL_GAS_R11: _PtTableFluid.ValueType # 37137
|
|
664
|
+
"""R11."""
|
|
665
|
+
REAL_GAS_R113: _PtTableFluid.ValueType # 8758
|
|
666
|
+
"""R113."""
|
|
667
|
+
REAL_GAS_R114: _PtTableFluid.ValueType # 31237
|
|
668
|
+
"""R114."""
|
|
669
|
+
REAL_GAS_R115: _PtTableFluid.ValueType # 53259
|
|
670
|
+
"""R115."""
|
|
671
|
+
REAL_GAS_R116: _PtTableFluid.ValueType # 31172
|
|
672
|
+
"""R116."""
|
|
673
|
+
REAL_GAS_R12: _PtTableFluid.ValueType # 24011
|
|
674
|
+
"""R12."""
|
|
675
|
+
REAL_GAS_R123: _PtTableFluid.ValueType # 59134
|
|
676
|
+
"""R123."""
|
|
677
|
+
REAL_GAS_R1233ZDE: _PtTableFluid.ValueType # 7660
|
|
678
|
+
"""R1233zd(E)."""
|
|
679
|
+
REAL_GAS_R1234YF: _PtTableFluid.ValueType # 16492
|
|
680
|
+
"""R1234yf."""
|
|
681
|
+
REAL_GAS_R1234ZEE: _PtTableFluid.ValueType # 29700
|
|
682
|
+
"""R1234ze(E)."""
|
|
683
|
+
REAL_GAS_R1234ZEZ: _PtTableFluid.ValueType # 59266
|
|
684
|
+
"""R1234ze(Z)."""
|
|
685
|
+
REAL_GAS_R124: _PtTableFluid.ValueType # 2921
|
|
686
|
+
"""R124."""
|
|
687
|
+
REAL_GAS_R1243ZF: _PtTableFluid.ValueType # 60204
|
|
688
|
+
"""R1243zf."""
|
|
689
|
+
REAL_GAS_R125: _PtTableFluid.ValueType # 8853
|
|
690
|
+
"""R125."""
|
|
691
|
+
REAL_GAS_R13: _PtTableFluid.ValueType # 48903
|
|
692
|
+
"""R13."""
|
|
693
|
+
REAL_GAS_R134A: _PtTableFluid.ValueType # 12296
|
|
694
|
+
"""R134a."""
|
|
695
|
+
REAL_GAS_R13I1: _PtTableFluid.ValueType # 33854
|
|
696
|
+
"""R13I1."""
|
|
697
|
+
REAL_GAS_R14: _PtTableFluid.ValueType # 20370
|
|
698
|
+
"""R14."""
|
|
699
|
+
REAL_GAS_R141B: _PtTableFluid.ValueType # 59327
|
|
700
|
+
"""R141b."""
|
|
701
|
+
REAL_GAS_R142B: _PtTableFluid.ValueType # 34762
|
|
702
|
+
"""R142b."""
|
|
703
|
+
REAL_GAS_R143A: _PtTableFluid.ValueType # 40747
|
|
704
|
+
"""R143a."""
|
|
705
|
+
REAL_GAS_R152A: _PtTableFluid.ValueType # 14616
|
|
706
|
+
"""R152A."""
|
|
707
|
+
REAL_GAS_R161: _PtTableFluid.ValueType # 22366
|
|
708
|
+
"""R161."""
|
|
709
|
+
REAL_GAS_R21: _PtTableFluid.ValueType # 63756
|
|
710
|
+
"""R21."""
|
|
711
|
+
REAL_GAS_R218: _PtTableFluid.ValueType # 27431
|
|
712
|
+
"""R218."""
|
|
713
|
+
REAL_GAS_R22: _PtTableFluid.ValueType # 59602
|
|
714
|
+
"""R22."""
|
|
715
|
+
REAL_GAS_R227EA: _PtTableFluid.ValueType # 28778
|
|
716
|
+
"""R227EA."""
|
|
717
|
+
REAL_GAS_R23: _PtTableFluid.ValueType # 59836
|
|
718
|
+
"""R23."""
|
|
719
|
+
REAL_GAS_R236EA: _PtTableFluid.ValueType # 51443
|
|
720
|
+
"""R236EA."""
|
|
721
|
+
REAL_GAS_R236FA: _PtTableFluid.ValueType # 35653
|
|
722
|
+
"""R236FA."""
|
|
723
|
+
REAL_GAS_R245CA: _PtTableFluid.ValueType # 43868
|
|
724
|
+
"""R245ca."""
|
|
725
|
+
REAL_GAS_R245FA: _PtTableFluid.ValueType # 43670
|
|
726
|
+
"""R245fa."""
|
|
727
|
+
REAL_GAS_R32: _PtTableFluid.ValueType # 65221
|
|
728
|
+
"""R32."""
|
|
729
|
+
REAL_GAS_R365MFC: _PtTableFluid.ValueType # 42836
|
|
730
|
+
"""R365MFC."""
|
|
731
|
+
REAL_GAS_R40: _PtTableFluid.ValueType # 20185
|
|
732
|
+
"""R40."""
|
|
733
|
+
REAL_GAS_R404A: _PtTableFluid.ValueType # 25108
|
|
734
|
+
"""R404A."""
|
|
735
|
+
REAL_GAS_R407C: _PtTableFluid.ValueType # 34805
|
|
736
|
+
"""R407C."""
|
|
737
|
+
REAL_GAS_R41: _PtTableFluid.ValueType # 27641
|
|
738
|
+
"""R41."""
|
|
739
|
+
REAL_GAS_R410A: _PtTableFluid.ValueType # 59981
|
|
740
|
+
"""R410A."""
|
|
741
|
+
REAL_GAS_R507A: _PtTableFluid.ValueType # 56561
|
|
742
|
+
"""R507A."""
|
|
743
|
+
REAL_GAS_RC318: _PtTableFluid.ValueType # 66529
|
|
744
|
+
"""RC318."""
|
|
745
|
+
REAL_GAS_SES36: _PtTableFluid.ValueType # 14408
|
|
746
|
+
"""SES36."""
|
|
747
|
+
REAL_GAS_SULFUR_DIOXIDE: _PtTableFluid.ValueType # 37035
|
|
748
|
+
"""Sulfur Dioxide."""
|
|
749
|
+
REAL_GAS_SULFUR_HEXAFLUORIDE: _PtTableFluid.ValueType # 52056
|
|
750
|
+
"""Sulfur Hexafluoride."""
|
|
751
|
+
REAL_GAS_TOLUENE: _PtTableFluid.ValueType # 54546
|
|
752
|
+
"""Toluene."""
|
|
753
|
+
REAL_GAS_TRANS_2_BUTENE: _PtTableFluid.ValueType # 496
|
|
754
|
+
"""trans-2-Butene."""
|
|
755
|
+
REAL_GAS_WATER: _PtTableFluid.ValueType # 42184
|
|
756
|
+
"""Water."""
|
|
757
|
+
REAL_GAS_XENON: _PtTableFluid.ValueType # 12913
|
|
758
|
+
"""Xenon."""
|
|
759
|
+
|
|
760
|
+
class PtTableFluid(_PtTableFluid, metaclass=_PtTableFluidEnumTypeWrapper): ...
|
|
761
|
+
|
|
762
|
+
INVALID_PT_TABLE_FLUID: PtTableFluid.ValueType # 0
|
|
763
|
+
REAL_GAS_1_BUTENE: PtTableFluid.ValueType # 48729
|
|
764
|
+
"""1-Butene."""
|
|
765
|
+
REAL_GAS_ACETONE: PtTableFluid.ValueType # 30436
|
|
766
|
+
"""Acetone."""
|
|
767
|
+
REAL_GAS_AIR: PtTableFluid.ValueType # 41111
|
|
768
|
+
"""Air."""
|
|
769
|
+
REAL_GAS_AMMONIA: PtTableFluid.ValueType # 30222
|
|
770
|
+
"""Ammonia."""
|
|
771
|
+
REAL_GAS_ARGON: PtTableFluid.ValueType # 23930
|
|
772
|
+
"""Argon."""
|
|
773
|
+
REAL_GAS_BENZENE: PtTableFluid.ValueType # 53253
|
|
774
|
+
"""Benzene."""
|
|
775
|
+
REAL_GAS_CARBON_DIOXIDE: PtTableFluid.ValueType # 5433
|
|
776
|
+
"""Carbon Dioxide."""
|
|
777
|
+
REAL_GAS_CARBON_MONOXIDE: PtTableFluid.ValueType # 41703
|
|
778
|
+
"""Carbon Monoxide."""
|
|
779
|
+
REAL_GAS_CARBONYL_SULFIDE: PtTableFluid.ValueType # 44169
|
|
780
|
+
"""Carbonyl Sulfide."""
|
|
781
|
+
REAL_GAS_CIS_2_BUTENE: PtTableFluid.ValueType # 46066
|
|
782
|
+
"""cis-2-Butene."""
|
|
783
|
+
REAL_GAS_CYCLOHEXANE: PtTableFluid.ValueType # 46914
|
|
784
|
+
"""Cyclohexane."""
|
|
785
|
+
REAL_GAS_CYCLOPENTANE: PtTableFluid.ValueType # 49970
|
|
786
|
+
"""Cyclopentane."""
|
|
787
|
+
REAL_GAS_CYCLOPROPANE: PtTableFluid.ValueType # 45704
|
|
788
|
+
"""Cyclopropane."""
|
|
789
|
+
REAL_GAS_D4: PtTableFluid.ValueType # 25740
|
|
790
|
+
"""D4."""
|
|
791
|
+
REAL_GAS_D5: PtTableFluid.ValueType # 55385
|
|
792
|
+
"""D5."""
|
|
793
|
+
REAL_GAS_D6: PtTableFluid.ValueType # 53299
|
|
794
|
+
"""D6."""
|
|
795
|
+
REAL_GAS_DEUTERIUM: PtTableFluid.ValueType # 31972
|
|
796
|
+
"""Deuterium."""
|
|
797
|
+
REAL_GAS_DICHLOROETHANE: PtTableFluid.ValueType # 11508
|
|
798
|
+
"""Dichloroethane."""
|
|
799
|
+
REAL_GAS_DIETHYL_ETHER: PtTableFluid.ValueType # 37247
|
|
800
|
+
"""Diethyl Ether."""
|
|
801
|
+
REAL_GAS_DIMETHYL_CARBONATE: PtTableFluid.ValueType # 58525
|
|
802
|
+
"""Dimethyl Carbonate."""
|
|
803
|
+
REAL_GAS_DIMETHYL_ETHER: PtTableFluid.ValueType # 45707
|
|
804
|
+
"""Dimethyl Ether."""
|
|
805
|
+
REAL_GAS_ETHANE: PtTableFluid.ValueType # 27889
|
|
806
|
+
"""Ethane."""
|
|
807
|
+
REAL_GAS_ETHANOL: PtTableFluid.ValueType # 1229
|
|
808
|
+
"""Ethanol."""
|
|
809
|
+
REAL_GAS_ETHYL_BENZENE: PtTableFluid.ValueType # 38305
|
|
810
|
+
"""Ethyl Benzene."""
|
|
811
|
+
REAL_GAS_ETHYLENE: PtTableFluid.ValueType # 35934
|
|
812
|
+
"""Ethylene."""
|
|
813
|
+
REAL_GAS_ETHYLENE_OXIDE: PtTableFluid.ValueType # 15118
|
|
814
|
+
"""Ethylene Oxide."""
|
|
815
|
+
REAL_GAS_FLUORINE: PtTableFluid.ValueType # 18245
|
|
816
|
+
"""Fluorine."""
|
|
817
|
+
REAL_GAS_HEAVY_WATER: PtTableFluid.ValueType # 54790
|
|
818
|
+
"""Heavy Water."""
|
|
819
|
+
REAL_GAS_HELIUM: PtTableFluid.ValueType # 24299
|
|
820
|
+
"""Helium."""
|
|
821
|
+
REAL_GAS_HFE143M: PtTableFluid.ValueType # 51519
|
|
822
|
+
"""HFE143m."""
|
|
823
|
+
REAL_GAS_HYDROGEN: PtTableFluid.ValueType # 59233
|
|
824
|
+
"""Hydrogen."""
|
|
825
|
+
REAL_GAS_HYDROGEN_CHLORIDE: PtTableFluid.ValueType # 51986
|
|
826
|
+
"""Hydrogen Chloride."""
|
|
827
|
+
REAL_GAS_HYDROGEN_SULFIDE: PtTableFluid.ValueType # 45458
|
|
828
|
+
"""Hydrogen Sulfide."""
|
|
829
|
+
REAL_GAS_ISOBUTANE: PtTableFluid.ValueType # 46574
|
|
830
|
+
"""Isobutane."""
|
|
831
|
+
REAL_GAS_ISOBUTENE: PtTableFluid.ValueType # 1912
|
|
832
|
+
"""Isobutene."""
|
|
833
|
+
REAL_GAS_ISOHEXANE: PtTableFluid.ValueType # 12971
|
|
834
|
+
"""Isohexane."""
|
|
835
|
+
REAL_GAS_ISOPENTANE: PtTableFluid.ValueType # 6072
|
|
836
|
+
"""Isopentane."""
|
|
837
|
+
REAL_GAS_KRYPTON: PtTableFluid.ValueType # 36257
|
|
838
|
+
"""Krypton."""
|
|
839
|
+
REAL_GAS_M_XYLENE: PtTableFluid.ValueType # 51564
|
|
840
|
+
"""m-Xylene."""
|
|
841
|
+
REAL_GAS_MD2M: PtTableFluid.ValueType # 40922
|
|
842
|
+
"""MD2M."""
|
|
843
|
+
REAL_GAS_MD3M: PtTableFluid.ValueType # 29878
|
|
844
|
+
"""MD3M."""
|
|
845
|
+
REAL_GAS_MD4M: PtTableFluid.ValueType # 34537
|
|
846
|
+
"""MD4M."""
|
|
847
|
+
REAL_GAS_MDM: PtTableFluid.ValueType # 38825
|
|
848
|
+
"""MDM."""
|
|
849
|
+
REAL_GAS_METHANE: PtTableFluid.ValueType # 34998
|
|
850
|
+
"""Methane."""
|
|
851
|
+
REAL_GAS_METHANOL: PtTableFluid.ValueType # 39047
|
|
852
|
+
"""Methanol."""
|
|
853
|
+
REAL_GAS_METHYL_LINOLEATE: PtTableFluid.ValueType # 34215
|
|
854
|
+
"""Methyl Linoleate."""
|
|
855
|
+
REAL_GAS_METHYL_LINOLENATE: PtTableFluid.ValueType # 16848
|
|
856
|
+
"""Methyl Linolenate."""
|
|
857
|
+
REAL_GAS_METHYL_OLEATE: PtTableFluid.ValueType # 47922
|
|
858
|
+
"""Methyl Oleate."""
|
|
859
|
+
REAL_GAS_METHYL_PALMITATE: PtTableFluid.ValueType # 16107
|
|
860
|
+
"""Methyl Palmitate."""
|
|
861
|
+
REAL_GAS_METHYL_STEARATE: PtTableFluid.ValueType # 24343
|
|
862
|
+
"""Methyl Stearate."""
|
|
863
|
+
REAL_GAS_MM: PtTableFluid.ValueType # 14110
|
|
864
|
+
"""MM."""
|
|
865
|
+
REAL_GAS_N_BUTANE: PtTableFluid.ValueType # 35207
|
|
866
|
+
"""n-Butane."""
|
|
867
|
+
REAL_GAS_N_DECANE: PtTableFluid.ValueType # 57319
|
|
868
|
+
"""n-Decane."""
|
|
869
|
+
REAL_GAS_N_DODECANE: PtTableFluid.ValueType # 9844
|
|
870
|
+
"""n-Dodecane."""
|
|
871
|
+
REAL_GAS_N_HEPTANE: PtTableFluid.ValueType # 28314
|
|
872
|
+
"""n-Heptane."""
|
|
873
|
+
REAL_GAS_N_HEXANE: PtTableFluid.ValueType # 7707
|
|
874
|
+
"""n-Hexane."""
|
|
875
|
+
REAL_GAS_N_NONANE: PtTableFluid.ValueType # 25221
|
|
876
|
+
"""n-Nonane."""
|
|
877
|
+
REAL_GAS_N_OCTANE: PtTableFluid.ValueType # 27430
|
|
878
|
+
"""n-Octane."""
|
|
879
|
+
REAL_GAS_N_PENTANE: PtTableFluid.ValueType # 11273
|
|
880
|
+
"""n-Pentane."""
|
|
881
|
+
REAL_GAS_N_PROPANE: PtTableFluid.ValueType # 34546
|
|
882
|
+
"""n-Propane."""
|
|
883
|
+
REAL_GAS_N_UNDECANE: PtTableFluid.ValueType # 55958
|
|
884
|
+
"""n-Undecane."""
|
|
885
|
+
REAL_GAS_NEON: PtTableFluid.ValueType # 46870
|
|
886
|
+
"""Neon."""
|
|
887
|
+
REAL_GAS_NEOPENTANE: PtTableFluid.ValueType # 59971
|
|
888
|
+
"""Neopentane."""
|
|
889
|
+
REAL_GAS_NITROGEN: PtTableFluid.ValueType # 51017
|
|
890
|
+
"""Nitrogen."""
|
|
891
|
+
REAL_GAS_NITROUS_OXIDE: PtTableFluid.ValueType # 2554
|
|
892
|
+
"""Nitrous Oxide."""
|
|
893
|
+
REAL_GAS_NOVEC649: PtTableFluid.ValueType # 32592
|
|
894
|
+
"""Novec649."""
|
|
895
|
+
REAL_GAS_O_XYLENE: PtTableFluid.ValueType # 44040
|
|
896
|
+
"""o-Xylene."""
|
|
897
|
+
REAL_GAS_ORTHO_DEUTERIUM: PtTableFluid.ValueType # 25024
|
|
898
|
+
"""Ortho Deuterium."""
|
|
899
|
+
REAL_GAS_ORTHO_HYDROGEN: PtTableFluid.ValueType # 17344
|
|
900
|
+
"""Ortho Hydrogen."""
|
|
901
|
+
REAL_GAS_OXYGEN: PtTableFluid.ValueType # 8842
|
|
902
|
+
"""Oxygen."""
|
|
903
|
+
REAL_GAS_P_XYLENE: PtTableFluid.ValueType # 59591
|
|
904
|
+
"""p-Xylene."""
|
|
905
|
+
REAL_GAS_PARA_DEUTERIUM: PtTableFluid.ValueType # 27076
|
|
906
|
+
"""Para Deuterium."""
|
|
907
|
+
REAL_GAS_PARA_HYDROGEN: PtTableFluid.ValueType # 1111
|
|
908
|
+
"""Para Hydrogen."""
|
|
909
|
+
REAL_GAS_PROPYLENE: PtTableFluid.ValueType # 27552
|
|
910
|
+
"""Propylene."""
|
|
911
|
+
REAL_GAS_PROPYNE: PtTableFluid.ValueType # 60222
|
|
912
|
+
"""Propyne."""
|
|
913
|
+
REAL_GAS_R11: PtTableFluid.ValueType # 37137
|
|
914
|
+
"""R11."""
|
|
915
|
+
REAL_GAS_R113: PtTableFluid.ValueType # 8758
|
|
916
|
+
"""R113."""
|
|
917
|
+
REAL_GAS_R114: PtTableFluid.ValueType # 31237
|
|
918
|
+
"""R114."""
|
|
919
|
+
REAL_GAS_R115: PtTableFluid.ValueType # 53259
|
|
920
|
+
"""R115."""
|
|
921
|
+
REAL_GAS_R116: PtTableFluid.ValueType # 31172
|
|
922
|
+
"""R116."""
|
|
923
|
+
REAL_GAS_R12: PtTableFluid.ValueType # 24011
|
|
924
|
+
"""R12."""
|
|
925
|
+
REAL_GAS_R123: PtTableFluid.ValueType # 59134
|
|
926
|
+
"""R123."""
|
|
927
|
+
REAL_GAS_R1233ZDE: PtTableFluid.ValueType # 7660
|
|
928
|
+
"""R1233zd(E)."""
|
|
929
|
+
REAL_GAS_R1234YF: PtTableFluid.ValueType # 16492
|
|
930
|
+
"""R1234yf."""
|
|
931
|
+
REAL_GAS_R1234ZEE: PtTableFluid.ValueType # 29700
|
|
932
|
+
"""R1234ze(E)."""
|
|
933
|
+
REAL_GAS_R1234ZEZ: PtTableFluid.ValueType # 59266
|
|
934
|
+
"""R1234ze(Z)."""
|
|
935
|
+
REAL_GAS_R124: PtTableFluid.ValueType # 2921
|
|
936
|
+
"""R124."""
|
|
937
|
+
REAL_GAS_R1243ZF: PtTableFluid.ValueType # 60204
|
|
938
|
+
"""R1243zf."""
|
|
939
|
+
REAL_GAS_R125: PtTableFluid.ValueType # 8853
|
|
940
|
+
"""R125."""
|
|
941
|
+
REAL_GAS_R13: PtTableFluid.ValueType # 48903
|
|
942
|
+
"""R13."""
|
|
943
|
+
REAL_GAS_R134A: PtTableFluid.ValueType # 12296
|
|
944
|
+
"""R134a."""
|
|
945
|
+
REAL_GAS_R13I1: PtTableFluid.ValueType # 33854
|
|
946
|
+
"""R13I1."""
|
|
947
|
+
REAL_GAS_R14: PtTableFluid.ValueType # 20370
|
|
948
|
+
"""R14."""
|
|
949
|
+
REAL_GAS_R141B: PtTableFluid.ValueType # 59327
|
|
950
|
+
"""R141b."""
|
|
951
|
+
REAL_GAS_R142B: PtTableFluid.ValueType # 34762
|
|
952
|
+
"""R142b."""
|
|
953
|
+
REAL_GAS_R143A: PtTableFluid.ValueType # 40747
|
|
954
|
+
"""R143a."""
|
|
955
|
+
REAL_GAS_R152A: PtTableFluid.ValueType # 14616
|
|
956
|
+
"""R152A."""
|
|
957
|
+
REAL_GAS_R161: PtTableFluid.ValueType # 22366
|
|
958
|
+
"""R161."""
|
|
959
|
+
REAL_GAS_R21: PtTableFluid.ValueType # 63756
|
|
960
|
+
"""R21."""
|
|
961
|
+
REAL_GAS_R218: PtTableFluid.ValueType # 27431
|
|
962
|
+
"""R218."""
|
|
963
|
+
REAL_GAS_R22: PtTableFluid.ValueType # 59602
|
|
964
|
+
"""R22."""
|
|
965
|
+
REAL_GAS_R227EA: PtTableFluid.ValueType # 28778
|
|
966
|
+
"""R227EA."""
|
|
967
|
+
REAL_GAS_R23: PtTableFluid.ValueType # 59836
|
|
968
|
+
"""R23."""
|
|
969
|
+
REAL_GAS_R236EA: PtTableFluid.ValueType # 51443
|
|
970
|
+
"""R236EA."""
|
|
971
|
+
REAL_GAS_R236FA: PtTableFluid.ValueType # 35653
|
|
972
|
+
"""R236FA."""
|
|
973
|
+
REAL_GAS_R245CA: PtTableFluid.ValueType # 43868
|
|
974
|
+
"""R245ca."""
|
|
975
|
+
REAL_GAS_R245FA: PtTableFluid.ValueType # 43670
|
|
976
|
+
"""R245fa."""
|
|
977
|
+
REAL_GAS_R32: PtTableFluid.ValueType # 65221
|
|
978
|
+
"""R32."""
|
|
979
|
+
REAL_GAS_R365MFC: PtTableFluid.ValueType # 42836
|
|
980
|
+
"""R365MFC."""
|
|
981
|
+
REAL_GAS_R40: PtTableFluid.ValueType # 20185
|
|
982
|
+
"""R40."""
|
|
983
|
+
REAL_GAS_R404A: PtTableFluid.ValueType # 25108
|
|
984
|
+
"""R404A."""
|
|
985
|
+
REAL_GAS_R407C: PtTableFluid.ValueType # 34805
|
|
986
|
+
"""R407C."""
|
|
987
|
+
REAL_GAS_R41: PtTableFluid.ValueType # 27641
|
|
988
|
+
"""R41."""
|
|
989
|
+
REAL_GAS_R410A: PtTableFluid.ValueType # 59981
|
|
990
|
+
"""R410A."""
|
|
991
|
+
REAL_GAS_R507A: PtTableFluid.ValueType # 56561
|
|
992
|
+
"""R507A."""
|
|
993
|
+
REAL_GAS_RC318: PtTableFluid.ValueType # 66529
|
|
994
|
+
"""RC318."""
|
|
995
|
+
REAL_GAS_SES36: PtTableFluid.ValueType # 14408
|
|
996
|
+
"""SES36."""
|
|
997
|
+
REAL_GAS_SULFUR_DIOXIDE: PtTableFluid.ValueType # 37035
|
|
998
|
+
"""Sulfur Dioxide."""
|
|
999
|
+
REAL_GAS_SULFUR_HEXAFLUORIDE: PtTableFluid.ValueType # 52056
|
|
1000
|
+
"""Sulfur Hexafluoride."""
|
|
1001
|
+
REAL_GAS_TOLUENE: PtTableFluid.ValueType # 54546
|
|
1002
|
+
"""Toluene."""
|
|
1003
|
+
REAL_GAS_TRANS_2_BUTENE: PtTableFluid.ValueType # 496
|
|
1004
|
+
"""trans-2-Butene."""
|
|
1005
|
+
REAL_GAS_WATER: PtTableFluid.ValueType # 42184
|
|
1006
|
+
"""Water."""
|
|
1007
|
+
REAL_GAS_XENON: PtTableFluid.ValueType # 12913
|
|
1008
|
+
"""Xenon."""
|
|
1009
|
+
global___PtTableFluid = PtTableFluid
|
|
1010
|
+
|
|
502
1011
|
class _LaminarThermalConductivity:
|
|
503
1012
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
504
1013
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -599,6 +1108,31 @@ TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY: LaminarViscosityModelNewtonian.ValueTyp
|
|
|
599
1108
|
"""Tabulated dynamic viscosity values vs temperature."""
|
|
600
1109
|
global___LaminarViscosityModelNewtonian = LaminarViscosityModelNewtonian
|
|
601
1110
|
|
|
1111
|
+
class _ThermalConductivityModelSolid:
|
|
1112
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
1113
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
1114
|
+
|
|
1115
|
+
class _ThermalConductivityModelSolidEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ThermalConductivityModelSolid.ValueType], builtins.type): # noqa: F821
|
|
1116
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
1117
|
+
INVALID_THERMAL_CONDUCTIVITY_MODEL_SOLID: _ThermalConductivityModelSolid.ValueType # 0
|
|
1118
|
+
ISOTROPIC_CONDUCTIVITY: _ThermalConductivityModelSolid.ValueType # 52316
|
|
1119
|
+
"""Equal thermal conductivity in all directions."""
|
|
1120
|
+
ORTHOTROPIC_CONDUCTIVITY: _ThermalConductivityModelSolid.ValueType # 60601
|
|
1121
|
+
"""Different thermal conductivity along each axis of the frames to which
|
|
1122
|
+
the volumes of this material are assigned.
|
|
1123
|
+
"""
|
|
1124
|
+
|
|
1125
|
+
class ThermalConductivityModelSolid(_ThermalConductivityModelSolid, metaclass=_ThermalConductivityModelSolidEnumTypeWrapper): ...
|
|
1126
|
+
|
|
1127
|
+
INVALID_THERMAL_CONDUCTIVITY_MODEL_SOLID: ThermalConductivityModelSolid.ValueType # 0
|
|
1128
|
+
ISOTROPIC_CONDUCTIVITY: ThermalConductivityModelSolid.ValueType # 52316
|
|
1129
|
+
"""Equal thermal conductivity in all directions."""
|
|
1130
|
+
ORTHOTROPIC_CONDUCTIVITY: ThermalConductivityModelSolid.ValueType # 60601
|
|
1131
|
+
"""Different thermal conductivity along each axis of the frames to which
|
|
1132
|
+
the volumes of this material are assigned.
|
|
1133
|
+
"""
|
|
1134
|
+
global___ThermalConductivityModelSolid = ThermalConductivityModelSolid
|
|
1135
|
+
|
|
602
1136
|
class _MaterialSolidPreset:
|
|
603
1137
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
604
1138
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -1069,9 +1603,11 @@ class _AllTetEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTyp
|
|
|
1069
1603
|
ALL_TET_UNSET: _AllTet.ValueType # 4214
|
|
1070
1604
|
"""TODO: no help"""
|
|
1071
1605
|
ALL_TET_OFF: _AllTet.ValueType # 24636
|
|
1072
|
-
"""
|
|
1606
|
+
"""Use classical prismatic boundary layer insertion."""
|
|
1073
1607
|
ALL_TET_ON: _AllTet.ValueType # 48394
|
|
1074
|
-
"""
|
|
1608
|
+
"""Use high aspect ratio tetrahedra automatically in areas of the flow
|
|
1609
|
+
field that require higher resolution (including boundary layers).
|
|
1610
|
+
"""
|
|
1075
1611
|
|
|
1076
1612
|
class AllTet(_AllTet, metaclass=_AllTetEnumTypeWrapper): ...
|
|
1077
1613
|
|
|
@@ -1079,9 +1615,11 @@ INVALID_ALL_TET: AllTet.ValueType # 0
|
|
|
1079
1615
|
ALL_TET_UNSET: AllTet.ValueType # 4214
|
|
1080
1616
|
"""TODO: no help"""
|
|
1081
1617
|
ALL_TET_OFF: AllTet.ValueType # 24636
|
|
1082
|
-
"""
|
|
1618
|
+
"""Use classical prismatic boundary layer insertion."""
|
|
1083
1619
|
ALL_TET_ON: AllTet.ValueType # 48394
|
|
1084
|
-
"""
|
|
1620
|
+
"""Use high aspect ratio tetrahedra automatically in areas of the flow
|
|
1621
|
+
field that require higher resolution (including boundary layers).
|
|
1622
|
+
"""
|
|
1085
1623
|
global___AllTet = AllTet
|
|
1086
1624
|
|
|
1087
1625
|
class _RelaxationMethod:
|
|
@@ -2985,6 +3523,13 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
2985
3523
|
REFERENCE_PRESSURE_FIELD_NUMBER: builtins.int
|
|
2986
3524
|
DENSITY_RELATIONSHIP_FIELD_NUMBER: builtins.int
|
|
2987
3525
|
MOLECULAR_WEIGHT_FIELD_NUMBER: builtins.int
|
|
3526
|
+
PT_TABLE_FLUID_FIELD_NUMBER: builtins.int
|
|
3527
|
+
PT_TABLE_MIN_PRESSURE_FIELD_NUMBER: builtins.int
|
|
3528
|
+
PT_TABLE_MAX_PRESSURE_FIELD_NUMBER: builtins.int
|
|
3529
|
+
PT_TABLE_N_PRESSURE_FIELD_NUMBER: builtins.int
|
|
3530
|
+
PT_TABLE_MIN_TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
3531
|
+
PT_TABLE_MAX_TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
3532
|
+
PT_TABLE_N_TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
2988
3533
|
CONSTANT_DENSITY_VALUE_FIELD_NUMBER: builtins.int
|
|
2989
3534
|
SPECIFIC_HEAT_CP_FIELD_NUMBER: builtins.int
|
|
2990
3535
|
LAMINAR_THERMAL_CONDUCTIVITY_FIELD_NUMBER: builtins.int
|
|
@@ -3009,6 +3554,41 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3009
3554
|
@property
|
|
3010
3555
|
def molecular_weight(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3011
3556
|
"""Molecular weight of the gas used to compute its specific gas constant. Air is 28.96 g/mol."""
|
|
3557
|
+
pt_table_fluid: global___PtTableFluid.ValueType
|
|
3558
|
+
"""Fluid for which the real gas tables are created. The liquid phase is not
|
|
3559
|
+
included, properties in the saturation region are extrapolated to ensure numerical
|
|
3560
|
+
stability.
|
|
3561
|
+
"""
|
|
3562
|
+
@property
|
|
3563
|
+
def pt_table_min_pressure(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3564
|
+
"""Lower bound for the pressure axis of real gas tables. For accuracy and
|
|
3565
|
+
numerical stability, this value should be lower than the minimum absolute static
|
|
3566
|
+
pressure expected in the solution.
|
|
3567
|
+
"""
|
|
3568
|
+
@property
|
|
3569
|
+
def pt_table_max_pressure(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3570
|
+
"""Upper bound for the pressure axis of real gas tables. For accuracy and
|
|
3571
|
+
numerical stability, this value should be greater than the maximum absolute total
|
|
3572
|
+
pressure expected in the solution.
|
|
3573
|
+
"""
|
|
3574
|
+
@property
|
|
3575
|
+
def pt_table_n_pressure(self) -> luminarycloud._proto.base.base_pb2.Int:
|
|
3576
|
+
"""Number of linearly-spaced values in the pressure axis of real gas tables."""
|
|
3577
|
+
@property
|
|
3578
|
+
def pt_table_min_temperature(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3579
|
+
"""Lower bound for the temperature axis of real gas tables. For accuracy and
|
|
3580
|
+
numerical stability, this value should be lower than the minimum static temperature
|
|
3581
|
+
expected in the solution.
|
|
3582
|
+
"""
|
|
3583
|
+
@property
|
|
3584
|
+
def pt_table_max_temperature(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3585
|
+
"""Upper bound for the temperature axis of real gas tables. For accuracy and
|
|
3586
|
+
numerical stability, this value should be greater than the maximum total temperature
|
|
3587
|
+
expected in the solution.
|
|
3588
|
+
"""
|
|
3589
|
+
@property
|
|
3590
|
+
def pt_table_n_temperature(self) -> luminarycloud._proto.base.base_pb2.Int:
|
|
3591
|
+
"""Number of linearly-spaced values in the temperature axis of real gas tables."""
|
|
3012
3592
|
@property
|
|
3013
3593
|
def constant_density_value(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3014
3594
|
"""Constant density value."""
|
|
@@ -3057,6 +3637,13 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3057
3637
|
reference_pressure: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3058
3638
|
density_relationship: global___DensityRelationship.ValueType = ...,
|
|
3059
3639
|
molecular_weight: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3640
|
+
pt_table_fluid: global___PtTableFluid.ValueType = ...,
|
|
3641
|
+
pt_table_min_pressure: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3642
|
+
pt_table_max_pressure: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3643
|
+
pt_table_n_pressure: luminarycloud._proto.base.base_pb2.Int | None = ...,
|
|
3644
|
+
pt_table_min_temperature: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3645
|
+
pt_table_max_temperature: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3646
|
+
pt_table_n_temperature: luminarycloud._proto.base.base_pb2.Int | None = ...,
|
|
3060
3647
|
constant_density_value: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3061
3648
|
specific_heat_cp: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3062
3649
|
laminar_thermal_conductivity: global___LaminarThermalConductivity.ValueType = ...,
|
|
@@ -3074,8 +3661,8 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3074
3661
|
laminar_constant_viscosity_constant: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3075
3662
|
dynamic_viscosity_table_data: builtins.str = ...,
|
|
3076
3663
|
) -> None: ...
|
|
3077
|
-
def HasField(self, field_name: typing_extensions.Literal["boussinesq_temp_ref", b"boussinesq_temp_ref", "constant_density_value", b"constant_density_value", "laminar_constant_thermal_conductivity_constant", b"laminar_constant_thermal_conductivity_constant", "laminar_constant_thermal_prandtl_constant", b"laminar_constant_thermal_prandtl_constant", "laminar_constant_viscosity_constant", b"laminar_constant_viscosity_constant", "molecular_weight", b"molecular_weight", "reference_pressure", b"reference_pressure", "specific_heat_cp", b"specific_heat_cp", "sutherland_constant", b"sutherland_constant", "sutherland_viscosity_ref", b"sutherland_viscosity_ref", "sutherland_viscosity_temp_ref", b"sutherland_viscosity_temp_ref", "thermal_expansion_coefficient", b"thermal_expansion_coefficient"]) -> builtins.bool: ...
|
|
3078
|
-
def ClearField(self, field_name: typing_extensions.Literal["boussinesq_approximation", b"boussinesq_approximation", "boussinesq_temp_ref", b"boussinesq_temp_ref", "constant_density_value", b"constant_density_value", "density_relationship", b"density_relationship", "dynamic_viscosity_table_data", b"dynamic_viscosity_table_data", "laminar_constant_thermal_conductivity_constant", b"laminar_constant_thermal_conductivity_constant", "laminar_constant_thermal_prandtl_constant", b"laminar_constant_thermal_prandtl_constant", "laminar_constant_viscosity_constant", b"laminar_constant_viscosity_constant", "laminar_thermal_conductivity", b"laminar_thermal_conductivity", "laminar_viscosity_model_newtonian", b"laminar_viscosity_model_newtonian", "material_fluid_preset", b"material_fluid_preset", "molecular_weight", b"molecular_weight", "reference_pressure", b"reference_pressure", "specific_heat_cp", b"specific_heat_cp", "sutherland_constant", b"sutherland_constant", "sutherland_viscosity_ref", b"sutherland_viscosity_ref", "sutherland_viscosity_temp_ref", b"sutherland_viscosity_temp_ref", "thermal_conductivity_table_data", b"thermal_conductivity_table_data", "thermal_expansion_coefficient", b"thermal_expansion_coefficient"]) -> None: ...
|
|
3664
|
+
def HasField(self, field_name: typing_extensions.Literal["boussinesq_temp_ref", b"boussinesq_temp_ref", "constant_density_value", b"constant_density_value", "laminar_constant_thermal_conductivity_constant", b"laminar_constant_thermal_conductivity_constant", "laminar_constant_thermal_prandtl_constant", b"laminar_constant_thermal_prandtl_constant", "laminar_constant_viscosity_constant", b"laminar_constant_viscosity_constant", "molecular_weight", b"molecular_weight", "pt_table_max_pressure", b"pt_table_max_pressure", "pt_table_max_temperature", b"pt_table_max_temperature", "pt_table_min_pressure", b"pt_table_min_pressure", "pt_table_min_temperature", b"pt_table_min_temperature", "pt_table_n_pressure", b"pt_table_n_pressure", "pt_table_n_temperature", b"pt_table_n_temperature", "reference_pressure", b"reference_pressure", "specific_heat_cp", b"specific_heat_cp", "sutherland_constant", b"sutherland_constant", "sutherland_viscosity_ref", b"sutherland_viscosity_ref", "sutherland_viscosity_temp_ref", b"sutherland_viscosity_temp_ref", "thermal_expansion_coefficient", b"thermal_expansion_coefficient"]) -> builtins.bool: ...
|
|
3665
|
+
def ClearField(self, field_name: typing_extensions.Literal["boussinesq_approximation", b"boussinesq_approximation", "boussinesq_temp_ref", b"boussinesq_temp_ref", "constant_density_value", b"constant_density_value", "density_relationship", b"density_relationship", "dynamic_viscosity_table_data", b"dynamic_viscosity_table_data", "laminar_constant_thermal_conductivity_constant", b"laminar_constant_thermal_conductivity_constant", "laminar_constant_thermal_prandtl_constant", b"laminar_constant_thermal_prandtl_constant", "laminar_constant_viscosity_constant", b"laminar_constant_viscosity_constant", "laminar_thermal_conductivity", b"laminar_thermal_conductivity", "laminar_viscosity_model_newtonian", b"laminar_viscosity_model_newtonian", "material_fluid_preset", b"material_fluid_preset", "molecular_weight", b"molecular_weight", "pt_table_fluid", b"pt_table_fluid", "pt_table_max_pressure", b"pt_table_max_pressure", "pt_table_max_temperature", b"pt_table_max_temperature", "pt_table_min_pressure", b"pt_table_min_pressure", "pt_table_min_temperature", b"pt_table_min_temperature", "pt_table_n_pressure", b"pt_table_n_pressure", "pt_table_n_temperature", b"pt_table_n_temperature", "reference_pressure", b"reference_pressure", "specific_heat_cp", b"specific_heat_cp", "sutherland_constant", b"sutherland_constant", "sutherland_viscosity_ref", b"sutherland_viscosity_ref", "sutherland_viscosity_temp_ref", b"sutherland_viscosity_temp_ref", "thermal_conductivity_table_data", b"thermal_conductivity_table_data", "thermal_expansion_coefficient", b"thermal_expansion_coefficient"]) -> None: ...
|
|
3079
3666
|
|
|
3080
3667
|
global___MaterialFluid = MaterialFluid
|
|
3081
3668
|
|
|
@@ -3086,7 +3673,9 @@ class MaterialSolid(google.protobuf.message.Message):
|
|
|
3086
3673
|
|
|
3087
3674
|
CONSTANT_DENSITY_VALUE_SOLID_FIELD_NUMBER: builtins.int
|
|
3088
3675
|
SPECIFIC_HEAT_CP_SOLID_FIELD_NUMBER: builtins.int
|
|
3676
|
+
THERMAL_CONDUCTIVITY_MODEL_SOLID_FIELD_NUMBER: builtins.int
|
|
3089
3677
|
THERMAL_CONDUCTIVITY_CONSTANT_SOLID_FIELD_NUMBER: builtins.int
|
|
3678
|
+
THERMAL_CONDUCTIVITY_ORTHOTROPIC_SOLID_FIELD_NUMBER: builtins.int
|
|
3090
3679
|
THERMAL_CONDUCTIVITY_TABLE_DATA_FIELD_NUMBER: builtins.int
|
|
3091
3680
|
MATERIAL_SOLID_PRESET_FIELD_NUMBER: builtins.int
|
|
3092
3681
|
@property
|
|
@@ -3094,10 +3683,15 @@ class MaterialSolid(google.protobuf.message.Message):
|
|
|
3094
3683
|
"""Constant density value."""
|
|
3095
3684
|
@property
|
|
3096
3685
|
def specific_heat_cp_solid(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3097
|
-
"""Specific heat
|
|
3686
|
+
"""Specific heat."""
|
|
3687
|
+
thermal_conductivity_model_solid: global___ThermalConductivityModelSolid.ValueType
|
|
3688
|
+
"""Uniform or direction-dependent conductivity models."""
|
|
3098
3689
|
@property
|
|
3099
3690
|
def thermal_conductivity_constant_solid(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3100
3691
|
"""The thermal conductivity of the material."""
|
|
3692
|
+
@property
|
|
3693
|
+
def thermal_conductivity_orthotropic_solid(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
3694
|
+
"""The thermal conductivities of the material along each axis."""
|
|
3101
3695
|
thermal_conductivity_table_data: builtins.str
|
|
3102
3696
|
"""Correlation between thermal conductivity and temperature."""
|
|
3103
3697
|
material_solid_preset: global___MaterialSolidPreset.ValueType
|
|
@@ -3107,12 +3701,14 @@ class MaterialSolid(google.protobuf.message.Message):
|
|
|
3107
3701
|
*,
|
|
3108
3702
|
constant_density_value_solid: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3109
3703
|
specific_heat_cp_solid: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3704
|
+
thermal_conductivity_model_solid: global___ThermalConductivityModelSolid.ValueType = ...,
|
|
3110
3705
|
thermal_conductivity_constant_solid: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3706
|
+
thermal_conductivity_orthotropic_solid: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
3111
3707
|
thermal_conductivity_table_data: builtins.str = ...,
|
|
3112
3708
|
material_solid_preset: global___MaterialSolidPreset.ValueType = ...,
|
|
3113
3709
|
) -> None: ...
|
|
3114
|
-
def HasField(self, field_name: typing_extensions.Literal["constant_density_value_solid", b"constant_density_value_solid", "specific_heat_cp_solid", b"specific_heat_cp_solid", "thermal_conductivity_constant_solid", b"thermal_conductivity_constant_solid"]) -> builtins.bool: ...
|
|
3115
|
-
def ClearField(self, field_name: typing_extensions.Literal["constant_density_value_solid", b"constant_density_value_solid", "material_solid_preset", b"material_solid_preset", "specific_heat_cp_solid", b"specific_heat_cp_solid", "thermal_conductivity_constant_solid", b"thermal_conductivity_constant_solid", "thermal_conductivity_table_data", b"thermal_conductivity_table_data"]) -> None: ...
|
|
3710
|
+
def HasField(self, field_name: typing_extensions.Literal["constant_density_value_solid", b"constant_density_value_solid", "specific_heat_cp_solid", b"specific_heat_cp_solid", "thermal_conductivity_constant_solid", b"thermal_conductivity_constant_solid", "thermal_conductivity_orthotropic_solid", b"thermal_conductivity_orthotropic_solid"]) -> builtins.bool: ...
|
|
3711
|
+
def ClearField(self, field_name: typing_extensions.Literal["constant_density_value_solid", b"constant_density_value_solid", "material_solid_preset", b"material_solid_preset", "specific_heat_cp_solid", b"specific_heat_cp_solid", "thermal_conductivity_constant_solid", b"thermal_conductivity_constant_solid", "thermal_conductivity_model_solid", b"thermal_conductivity_model_solid", "thermal_conductivity_orthotropic_solid", b"thermal_conductivity_orthotropic_solid", "thermal_conductivity_table_data", b"thermal_conductivity_table_data"]) -> None: ...
|
|
3116
3712
|
|
|
3117
3713
|
global___MaterialSolid = MaterialSolid
|
|
3118
3714
|
|