luminarycloud 0.19.1__py3-none-any.whl → 0.21.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 +2 -0
- luminarycloud/_client/client.py +2 -0
- luminarycloud/_helpers/_wait_for_mesh.py +6 -5
- luminarycloud/_helpers/_wait_for_simulation.py +3 -3
- luminarycloud/_helpers/pagination.py +62 -0
- luminarycloud/_helpers/upload.py +3 -6
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +168 -124
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +125 -3
- 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/vis/vis_pb2.py +124 -27
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +177 -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 +61 -41
- luminarycloud/_proto/assistant/assistant_pb2.pyi +43 -1
- luminarycloud/_proto/assistant/assistant_pb2_grpc.py +33 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/base/base_pb2.py +9 -6
- luminarycloud/_proto/base/base_pb2.pyi +12 -0
- luminarycloud/_proto/client/simulation_pb2.py +490 -348
- luminarycloud/_proto/client/simulation_pb2.pyi +570 -8
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +5 -5
- luminarycloud/_proto/quantity/quantity_pb2.py +24 -15
- luminarycloud/_proto/quantity/quantity_pb2.pyi +10 -4
- luminarycloud/enum/__init__.py +1 -0
- luminarycloud/enum/quantity_type.py +9 -0
- luminarycloud/enum/vis_enums.py +23 -3
- luminarycloud/exceptions.py +7 -1
- luminarycloud/geometry.py +44 -2
- luminarycloud/geometry_version.py +57 -3
- luminarycloud/mesh.py +1 -2
- luminarycloud/params/enum/_enum_wrappers.py +537 -30
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +4 -0
- luminarycloud/params/simulation/physics/__init__.py +0 -1
- luminarycloud/params/simulation/physics/periodic_pair_.py +12 -31
- luminarycloud/physics_ai/architectures.py +5 -5
- luminarycloud/physics_ai/inference.py +13 -13
- luminarycloud/pipelines/__init__.py +8 -0
- luminarycloud/pipelines/api.py +160 -10
- luminarycloud/pipelines/arguments.py +15 -0
- luminarycloud/pipelines/operators.py +74 -17
- luminarycloud/project.py +5 -44
- luminarycloud/simulation.py +10 -5
- luminarycloud/simulation_param.py +0 -9
- 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 +58 -9
- {luminarycloud-0.19.1.dist-info → luminarycloud-0.21.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.19.1.dist-info → luminarycloud-0.21.0.dist-info}/RECORD +58 -60
- 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.1.dist-info → luminarycloud-0.21.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
|
|
@@ -1094,9 +1603,11 @@ class _AllTetEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTyp
|
|
|
1094
1603
|
ALL_TET_UNSET: _AllTet.ValueType # 4214
|
|
1095
1604
|
"""TODO: no help"""
|
|
1096
1605
|
ALL_TET_OFF: _AllTet.ValueType # 24636
|
|
1097
|
-
"""
|
|
1606
|
+
"""Use classical prismatic boundary layer insertion."""
|
|
1098
1607
|
ALL_TET_ON: _AllTet.ValueType # 48394
|
|
1099
|
-
"""
|
|
1608
|
+
"""Use high aspect ratio tetrahedra automatically in areas of the flow
|
|
1609
|
+
field that require higher resolution (including boundary layers).
|
|
1610
|
+
"""
|
|
1100
1611
|
|
|
1101
1612
|
class AllTet(_AllTet, metaclass=_AllTetEnumTypeWrapper): ...
|
|
1102
1613
|
|
|
@@ -1104,9 +1615,11 @@ INVALID_ALL_TET: AllTet.ValueType # 0
|
|
|
1104
1615
|
ALL_TET_UNSET: AllTet.ValueType # 4214
|
|
1105
1616
|
"""TODO: no help"""
|
|
1106
1617
|
ALL_TET_OFF: AllTet.ValueType # 24636
|
|
1107
|
-
"""
|
|
1618
|
+
"""Use classical prismatic boundary layer insertion."""
|
|
1108
1619
|
ALL_TET_ON: AllTet.ValueType # 48394
|
|
1109
|
-
"""
|
|
1620
|
+
"""Use high aspect ratio tetrahedra automatically in areas of the flow
|
|
1621
|
+
field that require higher resolution (including boundary layers).
|
|
1622
|
+
"""
|
|
1110
1623
|
global___AllTet = AllTet
|
|
1111
1624
|
|
|
1112
1625
|
class _RelaxationMethod:
|
|
@@ -3010,6 +3523,13 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3010
3523
|
REFERENCE_PRESSURE_FIELD_NUMBER: builtins.int
|
|
3011
3524
|
DENSITY_RELATIONSHIP_FIELD_NUMBER: builtins.int
|
|
3012
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
|
|
3013
3533
|
CONSTANT_DENSITY_VALUE_FIELD_NUMBER: builtins.int
|
|
3014
3534
|
SPECIFIC_HEAT_CP_FIELD_NUMBER: builtins.int
|
|
3015
3535
|
LAMINAR_THERMAL_CONDUCTIVITY_FIELD_NUMBER: builtins.int
|
|
@@ -3034,6 +3554,41 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3034
3554
|
@property
|
|
3035
3555
|
def molecular_weight(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3036
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."""
|
|
3037
3592
|
@property
|
|
3038
3593
|
def constant_density_value(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3039
3594
|
"""Constant density value."""
|
|
@@ -3082,6 +3637,13 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3082
3637
|
reference_pressure: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3083
3638
|
density_relationship: global___DensityRelationship.ValueType = ...,
|
|
3084
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 = ...,
|
|
3085
3647
|
constant_density_value: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3086
3648
|
specific_heat_cp: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3087
3649
|
laminar_thermal_conductivity: global___LaminarThermalConductivity.ValueType = ...,
|
|
@@ -3099,8 +3661,8 @@ class MaterialFluid(google.protobuf.message.Message):
|
|
|
3099
3661
|
laminar_constant_viscosity_constant: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3100
3662
|
dynamic_viscosity_table_data: builtins.str = ...,
|
|
3101
3663
|
) -> None: ...
|
|
3102
|
-
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: ...
|
|
3103
|
-
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: ...
|
|
3104
3666
|
|
|
3105
3667
|
global___MaterialFluid = MaterialFluid
|
|
3106
3668
|
|