luminarycloud 0.16.0__py3-none-any.whl → 0.16.1__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/_client/client.py +5 -0
- luminarycloud/_helpers/_code_representation.py +5 -3
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +7 -7
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +4 -4
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +128 -107
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +48 -3
- luminarycloud/_proto/client/simulation_pb2.py +348 -350
- luminarycloud/_proto/client/simulation_pb2.pyi +95 -95
- luminarycloud/_proto/geometry/geometry_pb2.py +68 -68
- luminarycloud/_proto/geometry/geometry_pb2.pyi +10 -6
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +40 -15
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +58 -1
- luminarycloud/_proto/lcstatus/codes_pb2.py +3 -2
- luminarycloud/_proto/lcstatus/codes_pb2.pyi +4 -0
- luminarycloud/enum/quantity_type.py +4 -0
- luminarycloud/enum/tables.py +1 -0
- luminarycloud/enum/vis_enums.py +20 -0
- luminarycloud/feature_modification.py +6 -7
- luminarycloud/geometry.py +24 -0
- luminarycloud/geometry_version.py +23 -0
- luminarycloud/params/simulation/adjoint_.py +4 -4
- luminarycloud/params/simulation/material/material_fluid_.py +1 -1
- luminarycloud/params/simulation/material/material_solid_.py +1 -1
- luminarycloud/params/simulation/output_.py +1 -1
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_existing_solution_.py +28 -0
- luminarycloud/params/simulation/simulation_param_.py +6 -0
- luminarycloud/project.py +9 -7
- luminarycloud/simulation_param.py +29 -15
- luminarycloud/simulation_template.py +14 -10
- luminarycloud/tables.py +5 -4
- luminarycloud/thirdparty/__init__.py +12 -0
- luminarycloud/thirdparty/onshape.py +170 -0
- luminarycloud/vis/__init__.py +2 -0
- luminarycloud/vis/data_extraction.py +40 -1
- luminarycloud/vis/filters.py +128 -2
- luminarycloud/vis/visualization.py +1 -1
- luminarycloud/volume_selection.py +2 -2
- {luminarycloud-0.16.0.dist-info → luminarycloud-0.16.1.dist-info}/METADATA +6 -6
- {luminarycloud-0.16.0.dist-info → luminarycloud-0.16.1.dist-info}/RECORD +40 -38
- {luminarycloud-0.16.0.dist-info → luminarycloud-0.16.1.dist-info}/WHEEL +0 -0
|
@@ -2539,6 +2539,63 @@ INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON: PotentialFlowPressureInitialization.V
|
|
|
2539
2539
|
"""Initialize the pressure using Bernouilli's equation."""
|
|
2540
2540
|
global___PotentialFlowPressureInitialization = PotentialFlowPressureInitialization
|
|
2541
2541
|
|
|
2542
|
+
class _VerificationSolutions:
|
|
2543
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
2544
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
2545
|
+
|
|
2546
|
+
class _VerificationSolutionsEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_VerificationSolutions.ValueType], builtins.type): # noqa: F821
|
|
2547
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
2548
|
+
INVALID_VERIFICATION_SOLUTIONS: _VerificationSolutions.ValueType # 0
|
|
2549
|
+
TAYLOR_GREEN_VORTEX: _VerificationSolutions.ValueType # 57970
|
|
2550
|
+
"""Taylor-Green vortex problem."""
|
|
2551
|
+
NS_MMS: _VerificationSolutions.ValueType # 3183
|
|
2552
|
+
"""Method of manufactured solutions (MMS) for the Navier-Stokes equations."""
|
|
2553
|
+
EULER_MMS: _VerificationSolutions.ValueType # 43874
|
|
2554
|
+
"""Method of manufactured solutions (MMS) for the Euler equations."""
|
|
2555
|
+
SHOCK_TUBE: _VerificationSolutions.ValueType # 7698
|
|
2556
|
+
"""Shock tube problem."""
|
|
2557
|
+
NORMAL_SHOCK: _VerificationSolutions.ValueType # 12571
|
|
2558
|
+
"""Normal shock problem."""
|
|
2559
|
+
SHOCK_VORTEX: _VerificationSolutions.ValueType # 59115
|
|
2560
|
+
"""Shock vortex problem."""
|
|
2561
|
+
SHU_OSHER: _VerificationSolutions.ValueType # 10488
|
|
2562
|
+
"""Shu Osher problem."""
|
|
2563
|
+
DISTURBANCE_WAVE: _VerificationSolutions.ValueType # 34992
|
|
2564
|
+
"""Disturbance wave problem."""
|
|
2565
|
+
INVISCID_VORTEX: _VerificationSolutions.ValueType # 33985
|
|
2566
|
+
"""Invisvid vortex transport by uniform flow."""
|
|
2567
|
+
INS_2D_LATTICE: _VerificationSolutions.ValueType # 60987
|
|
2568
|
+
"""2D planar lattice flow for incompressible NS."""
|
|
2569
|
+
CHECK_FLUX_SYMMETRY: _VerificationSolutions.ValueType # 2909
|
|
2570
|
+
"""Run a debug check on the left/right symmetry of fluxes."""
|
|
2571
|
+
|
|
2572
|
+
class VerificationSolutions(_VerificationSolutions, metaclass=_VerificationSolutionsEnumTypeWrapper): ...
|
|
2573
|
+
|
|
2574
|
+
INVALID_VERIFICATION_SOLUTIONS: VerificationSolutions.ValueType # 0
|
|
2575
|
+
TAYLOR_GREEN_VORTEX: VerificationSolutions.ValueType # 57970
|
|
2576
|
+
"""Taylor-Green vortex problem."""
|
|
2577
|
+
NS_MMS: VerificationSolutions.ValueType # 3183
|
|
2578
|
+
"""Method of manufactured solutions (MMS) for the Navier-Stokes equations."""
|
|
2579
|
+
EULER_MMS: VerificationSolutions.ValueType # 43874
|
|
2580
|
+
"""Method of manufactured solutions (MMS) for the Euler equations."""
|
|
2581
|
+
SHOCK_TUBE: VerificationSolutions.ValueType # 7698
|
|
2582
|
+
"""Shock tube problem."""
|
|
2583
|
+
NORMAL_SHOCK: VerificationSolutions.ValueType # 12571
|
|
2584
|
+
"""Normal shock problem."""
|
|
2585
|
+
SHOCK_VORTEX: VerificationSolutions.ValueType # 59115
|
|
2586
|
+
"""Shock vortex problem."""
|
|
2587
|
+
SHU_OSHER: VerificationSolutions.ValueType # 10488
|
|
2588
|
+
"""Shu Osher problem."""
|
|
2589
|
+
DISTURBANCE_WAVE: VerificationSolutions.ValueType # 34992
|
|
2590
|
+
"""Disturbance wave problem."""
|
|
2591
|
+
INVISCID_VORTEX: VerificationSolutions.ValueType # 33985
|
|
2592
|
+
"""Invisvid vortex transport by uniform flow."""
|
|
2593
|
+
INS_2D_LATTICE: VerificationSolutions.ValueType # 60987
|
|
2594
|
+
"""2D planar lattice flow for incompressible NS."""
|
|
2595
|
+
CHECK_FLUX_SYMMETRY: VerificationSolutions.ValueType # 2909
|
|
2596
|
+
"""Run a debug check on the left/right symmetry of fluxes."""
|
|
2597
|
+
global___VerificationSolutions = VerificationSolutions
|
|
2598
|
+
|
|
2542
2599
|
class _TurbulentVariableInitializationTypeSa:
|
|
2543
2600
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
2544
2601
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -2597,63 +2654,6 @@ INIT_FARFIELD_VALUES_KOMEGA: TurbulentVariableInitializationTypeKomega.ValueType
|
|
|
2597
2654
|
"""Uniform initial condition from the far-field boundary."""
|
|
2598
2655
|
global___TurbulentVariableInitializationTypeKomega = TurbulentVariableInitializationTypeKomega
|
|
2599
2656
|
|
|
2600
|
-
class _VerificationSolutions:
|
|
2601
|
-
ValueType = typing.NewType("ValueType", builtins.int)
|
|
2602
|
-
V: typing_extensions.TypeAlias = ValueType
|
|
2603
|
-
|
|
2604
|
-
class _VerificationSolutionsEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_VerificationSolutions.ValueType], builtins.type): # noqa: F821
|
|
2605
|
-
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
2606
|
-
INVALID_VERIFICATION_SOLUTIONS: _VerificationSolutions.ValueType # 0
|
|
2607
|
-
TAYLOR_GREEN_VORTEX: _VerificationSolutions.ValueType # 57970
|
|
2608
|
-
"""Taylor-Green vortex problem."""
|
|
2609
|
-
NS_MMS: _VerificationSolutions.ValueType # 3183
|
|
2610
|
-
"""Method of manufactured solutions (MMS) for the Navier-Stokes equations."""
|
|
2611
|
-
EULER_MMS: _VerificationSolutions.ValueType # 43874
|
|
2612
|
-
"""Method of manufactured solutions (MMS) for the Euler equations."""
|
|
2613
|
-
SHOCK_TUBE: _VerificationSolutions.ValueType # 7698
|
|
2614
|
-
"""Shock tube problem."""
|
|
2615
|
-
NORMAL_SHOCK: _VerificationSolutions.ValueType # 12571
|
|
2616
|
-
"""Normal shock problem."""
|
|
2617
|
-
SHOCK_VORTEX: _VerificationSolutions.ValueType # 59115
|
|
2618
|
-
"""Shock vortex problem."""
|
|
2619
|
-
SHU_OSHER: _VerificationSolutions.ValueType # 10488
|
|
2620
|
-
"""Shu Osher problem."""
|
|
2621
|
-
DISTURBANCE_WAVE: _VerificationSolutions.ValueType # 34992
|
|
2622
|
-
"""Disturbance wave problem."""
|
|
2623
|
-
INVISCID_VORTEX: _VerificationSolutions.ValueType # 33985
|
|
2624
|
-
"""Invisvid vortex transport by uniform flow."""
|
|
2625
|
-
INS_2D_LATTICE: _VerificationSolutions.ValueType # 60987
|
|
2626
|
-
"""2D planar lattice flow for incompressible NS."""
|
|
2627
|
-
CHECK_FLUX_SYMMETRY: _VerificationSolutions.ValueType # 2909
|
|
2628
|
-
"""Run a debug check on the left/right symmetry of fluxes."""
|
|
2629
|
-
|
|
2630
|
-
class VerificationSolutions(_VerificationSolutions, metaclass=_VerificationSolutionsEnumTypeWrapper): ...
|
|
2631
|
-
|
|
2632
|
-
INVALID_VERIFICATION_SOLUTIONS: VerificationSolutions.ValueType # 0
|
|
2633
|
-
TAYLOR_GREEN_VORTEX: VerificationSolutions.ValueType # 57970
|
|
2634
|
-
"""Taylor-Green vortex problem."""
|
|
2635
|
-
NS_MMS: VerificationSolutions.ValueType # 3183
|
|
2636
|
-
"""Method of manufactured solutions (MMS) for the Navier-Stokes equations."""
|
|
2637
|
-
EULER_MMS: VerificationSolutions.ValueType # 43874
|
|
2638
|
-
"""Method of manufactured solutions (MMS) for the Euler equations."""
|
|
2639
|
-
SHOCK_TUBE: VerificationSolutions.ValueType # 7698
|
|
2640
|
-
"""Shock tube problem."""
|
|
2641
|
-
NORMAL_SHOCK: VerificationSolutions.ValueType # 12571
|
|
2642
|
-
"""Normal shock problem."""
|
|
2643
|
-
SHOCK_VORTEX: VerificationSolutions.ValueType # 59115
|
|
2644
|
-
"""Shock vortex problem."""
|
|
2645
|
-
SHU_OSHER: VerificationSolutions.ValueType # 10488
|
|
2646
|
-
"""Shu Osher problem."""
|
|
2647
|
-
DISTURBANCE_WAVE: VerificationSolutions.ValueType # 34992
|
|
2648
|
-
"""Disturbance wave problem."""
|
|
2649
|
-
INVISCID_VORTEX: VerificationSolutions.ValueType # 33985
|
|
2650
|
-
"""Invisvid vortex transport by uniform flow."""
|
|
2651
|
-
INS_2D_LATTICE: VerificationSolutions.ValueType # 60987
|
|
2652
|
-
"""2D planar lattice flow for incompressible NS."""
|
|
2653
|
-
CHECK_FLUX_SYMMETRY: VerificationSolutions.ValueType # 2909
|
|
2654
|
-
"""Run a debug check on the left/right symmetry of fluxes."""
|
|
2655
|
-
global___VerificationSolutions = VerificationSolutions
|
|
2656
|
-
|
|
2657
2657
|
class _PhysicalBehaviorModel:
|
|
2658
2658
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
2659
2659
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -5321,14 +5321,6 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5321
5321
|
UNIFORM_T_FIELD_NUMBER: builtins.int
|
|
5322
5322
|
POTENTIAL_FLOW_PRESSURE_INITIALIZATION_FIELD_NUMBER: builtins.int
|
|
5323
5323
|
UNIFORM_P_FIELD_NUMBER: builtins.int
|
|
5324
|
-
TURBULENT_VARIABLE_INITIALIZATION_TYPE_SA_FIELD_NUMBER: builtins.int
|
|
5325
|
-
TURBULENT_VARIABLE_INITIALIZATION_TYPE_KOMEGA_FIELD_NUMBER: builtins.int
|
|
5326
|
-
INIT_TURBULENT_VISCOSITY_RATIO_FIELD_NUMBER: builtins.int
|
|
5327
|
-
INIT_TURBULENT_VISCOSITY_FIELD_NUMBER: builtins.int
|
|
5328
|
-
INIT_TURBULENCE_INTENSITY_FIELD_NUMBER: builtins.int
|
|
5329
|
-
UNIFORM_NU_TILDE_FIELD_NUMBER: builtins.int
|
|
5330
|
-
UNIFORM_TKE_FIELD_NUMBER: builtins.int
|
|
5331
|
-
UNIFORM_OMEGA_FIELD_NUMBER: builtins.int
|
|
5332
5324
|
VERIFICATION_SOLUTIONS_FIELD_NUMBER: builtins.int
|
|
5333
5325
|
TGV_RHO_FIELD_NUMBER: builtins.int
|
|
5334
5326
|
TGV_P_FIELD_NUMBER: builtins.int
|
|
@@ -5376,6 +5368,14 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5376
5368
|
INVISCID_VORTEX_BETAVORTEX_FIELD_NUMBER: builtins.int
|
|
5377
5369
|
EXISTING_SOLUTION_URL_FIELD_NUMBER: builtins.int
|
|
5378
5370
|
EXISTING_SOLUTION_ID_FIELD_NUMBER: builtins.int
|
|
5371
|
+
TURBULENT_VARIABLE_INITIALIZATION_TYPE_SA_FIELD_NUMBER: builtins.int
|
|
5372
|
+
TURBULENT_VARIABLE_INITIALIZATION_TYPE_KOMEGA_FIELD_NUMBER: builtins.int
|
|
5373
|
+
INIT_TURBULENT_VISCOSITY_RATIO_FIELD_NUMBER: builtins.int
|
|
5374
|
+
INIT_TURBULENT_VISCOSITY_FIELD_NUMBER: builtins.int
|
|
5375
|
+
INIT_TURBULENCE_INTENSITY_FIELD_NUMBER: builtins.int
|
|
5376
|
+
UNIFORM_NU_TILDE_FIELD_NUMBER: builtins.int
|
|
5377
|
+
UNIFORM_TKE_FIELD_NUMBER: builtins.int
|
|
5378
|
+
UNIFORM_OMEGA_FIELD_NUMBER: builtins.int
|
|
5379
5379
|
initialization_type: global___InitializationType.ValueType
|
|
5380
5380
|
"""Type of initial condition for the field variables."""
|
|
5381
5381
|
@property
|
|
@@ -5389,28 +5389,6 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5389
5389
|
@property
|
|
5390
5390
|
def uniform_p(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5391
5391
|
"""Uniform initial condition for the static pressure relative to the material reference pressure."""
|
|
5392
|
-
turbulent_variable_initialization_type_sa: global___TurbulentVariableInitializationTypeSa.ValueType
|
|
5393
|
-
"""Type of initial condition for the turbulent variables."""
|
|
5394
|
-
turbulent_variable_initialization_type_komega: global___TurbulentVariableInitializationTypeKomega.ValueType
|
|
5395
|
-
"""Type of initial condition for the turbulent variables."""
|
|
5396
|
-
@property
|
|
5397
|
-
def init_turbulent_viscosity_ratio(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5398
|
-
"""Turbulent-to-laminar viscosity ratio."""
|
|
5399
|
-
@property
|
|
5400
|
-
def init_turbulent_viscosity(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5401
|
-
"""Turbulent viscosity."""
|
|
5402
|
-
@property
|
|
5403
|
-
def init_turbulence_intensity(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5404
|
-
"""Turbulence intensity."""
|
|
5405
|
-
@property
|
|
5406
|
-
def uniform_nu_tilde(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5407
|
-
"""Uniform initial condition for the Spalart-Allmaras turbulence variable."""
|
|
5408
|
-
@property
|
|
5409
|
-
def uniform_tke(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5410
|
-
"""Uniform initial condition for the turbulent kinetic energy variable."""
|
|
5411
|
-
@property
|
|
5412
|
-
def uniform_omega(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5413
|
-
"""Uniform initial condition for the specific dissipation rate variable."""
|
|
5414
5392
|
verification_solutions: global___VerificationSolutions.ValueType
|
|
5415
5393
|
"""Predefined verification problems built into the solver."""
|
|
5416
5394
|
@property
|
|
@@ -5549,6 +5527,28 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5549
5527
|
"""Url for the existing solution to use for initialization."""
|
|
5550
5528
|
existing_solution_id: builtins.str
|
|
5551
5529
|
"""ID for the existing solution to use for initialization."""
|
|
5530
|
+
turbulent_variable_initialization_type_sa: global___TurbulentVariableInitializationTypeSa.ValueType
|
|
5531
|
+
"""Type of initial condition for the turbulent variables."""
|
|
5532
|
+
turbulent_variable_initialization_type_komega: global___TurbulentVariableInitializationTypeKomega.ValueType
|
|
5533
|
+
"""Type of initial condition for the turbulent variables."""
|
|
5534
|
+
@property
|
|
5535
|
+
def init_turbulent_viscosity_ratio(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5536
|
+
"""Turbulent-to-laminar viscosity ratio."""
|
|
5537
|
+
@property
|
|
5538
|
+
def init_turbulent_viscosity(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5539
|
+
"""Turbulent viscosity."""
|
|
5540
|
+
@property
|
|
5541
|
+
def init_turbulence_intensity(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5542
|
+
"""Turbulence intensity."""
|
|
5543
|
+
@property
|
|
5544
|
+
def uniform_nu_tilde(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5545
|
+
"""Uniform initial condition for the Spalart-Allmaras turbulence variable."""
|
|
5546
|
+
@property
|
|
5547
|
+
def uniform_tke(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5548
|
+
"""Uniform initial condition for the turbulent kinetic energy variable."""
|
|
5549
|
+
@property
|
|
5550
|
+
def uniform_omega(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
5551
|
+
"""Uniform initial condition for the specific dissipation rate variable."""
|
|
5552
5552
|
def __init__(
|
|
5553
5553
|
self,
|
|
5554
5554
|
*,
|
|
@@ -5557,14 +5557,6 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5557
5557
|
uniform_t: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5558
5558
|
potential_flow_pressure_initialization: global___PotentialFlowPressureInitialization.ValueType = ...,
|
|
5559
5559
|
uniform_p: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5560
|
-
turbulent_variable_initialization_type_sa: global___TurbulentVariableInitializationTypeSa.ValueType = ...,
|
|
5561
|
-
turbulent_variable_initialization_type_komega: global___TurbulentVariableInitializationTypeKomega.ValueType = ...,
|
|
5562
|
-
init_turbulent_viscosity_ratio: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5563
|
-
init_turbulent_viscosity: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5564
|
-
init_turbulence_intensity: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5565
|
-
uniform_nu_tilde: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5566
|
-
uniform_tke: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5567
|
-
uniform_omega: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5568
5560
|
verification_solutions: global___VerificationSolutions.ValueType = ...,
|
|
5569
5561
|
tgv_rho: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5570
5562
|
tgv_p: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
@@ -5612,6 +5604,14 @@ class InitializationFluid(google.protobuf.message.Message):
|
|
|
5612
5604
|
inviscid_vortex_betavortex: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5613
5605
|
existing_solution_url: builtins.str = ...,
|
|
5614
5606
|
existing_solution_id: builtins.str = ...,
|
|
5607
|
+
turbulent_variable_initialization_type_sa: global___TurbulentVariableInitializationTypeSa.ValueType = ...,
|
|
5608
|
+
turbulent_variable_initialization_type_komega: global___TurbulentVariableInitializationTypeKomega.ValueType = ...,
|
|
5609
|
+
init_turbulent_viscosity_ratio: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5610
|
+
init_turbulent_viscosity: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5611
|
+
init_turbulence_intensity: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5612
|
+
uniform_nu_tilde: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5613
|
+
uniform_tke: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5614
|
+
uniform_omega: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
5615
5615
|
) -> None: ...
|
|
5616
5616
|
def HasField(self, field_name: typing_extensions.Literal["acousticwave_amp", b"acousticwave_amp", "disturbancewave_kx", b"disturbancewave_kx", "disturbancewave_m", b"disturbancewave_m", "disturbancewave_p", b"disturbancewave_p", "disturbancewave_t", b"disturbancewave_t", "entropywave_amp", b"entropywave_amp", "init_turbulence_intensity", b"init_turbulence_intensity", "init_turbulent_viscosity", b"init_turbulent_viscosity", "init_turbulent_viscosity_ratio", b"init_turbulent_viscosity_ratio", "inviscid_vortex_betavortex", b"inviscid_vortex_betavortex", "inviscid_vortex_minfty", b"inviscid_vortex_minfty", "inviscid_vortex_pinfty", b"inviscid_vortex_pinfty", "inviscid_vortex_rvortex", b"inviscid_vortex_rvortex", "inviscid_vortex_tinfty", b"inviscid_vortex_tinfty", "inviscid_vortex_xflowdir", b"inviscid_vortex_xflowdir", "inviscid_vortex_xv", b"inviscid_vortex_xv", "inviscid_vortex_yflowdir", b"inviscid_vortex_yflowdir", "inviscid_vortex_yv", b"inviscid_vortex_yv", "mms_a", b"mms_a", "mms_k", b"mms_k", "normalshock_m1", b"normalshock_m1", "normalshock_p1", b"normalshock_p1", "normalshock_t1", b"normalshock_t1", "shocktube_p1", b"shocktube_p1", "shocktube_p4", b"shocktube_p4", "shocktube_t1", b"shocktube_t1", "shocktube_t4", b"shocktube_t4", "shockvortex_av", b"shockvortex_av", "shockvortex_bv", b"shockvortex_bv", "shockvortex_m1", b"shockvortex_m1", "shockvortex_mv", b"shockvortex_mv", "shockvortex_p1", b"shockvortex_p1", "shockvortex_t1", b"shockvortex_t1", "shockvortex_xv", b"shockvortex_xv", "shockvortex_zv", b"shockvortex_zv", "shuosher_amp", b"shuosher_amp", "shuosher_kx", b"shuosher_kx", "shuosher_m1", b"shuosher_m1", "shuosher_m2", b"shuosher_m2", "shuosher_p1", b"shuosher_p1", "shuosher_p2", b"shuosher_p2", "shuosher_rho1", b"shuosher_rho1", "shuosher_rho2", b"shuosher_rho2", "tgv_p", b"tgv_p", "tgv_rho", b"tgv_rho", "tgv_v", b"tgv_v", "uniform_nu_tilde", b"uniform_nu_tilde", "uniform_omega", b"uniform_omega", "uniform_p", b"uniform_p", "uniform_t", b"uniform_t", "uniform_tke", b"uniform_tke", "uniform_v", b"uniform_v", "vorticitywave_amp", b"vorticitywave_amp"]) -> builtins.bool: ...
|
|
5617
5617
|
def ClearField(self, field_name: typing_extensions.Literal["acousticwave_amp", b"acousticwave_amp", "disturbancewave_kx", b"disturbancewave_kx", "disturbancewave_m", b"disturbancewave_m", "disturbancewave_p", b"disturbancewave_p", "disturbancewave_t", b"disturbancewave_t", "entropywave_amp", b"entropywave_amp", "existing_solution_id", b"existing_solution_id", "existing_solution_url", b"existing_solution_url", "init_turbulence_intensity", b"init_turbulence_intensity", "init_turbulent_viscosity", b"init_turbulent_viscosity", "init_turbulent_viscosity_ratio", b"init_turbulent_viscosity_ratio", "initialization_type", b"initialization_type", "inviscid_vortex_betavortex", b"inviscid_vortex_betavortex", "inviscid_vortex_minfty", b"inviscid_vortex_minfty", "inviscid_vortex_pinfty", b"inviscid_vortex_pinfty", "inviscid_vortex_rvortex", b"inviscid_vortex_rvortex", "inviscid_vortex_tinfty", b"inviscid_vortex_tinfty", "inviscid_vortex_xflowdir", b"inviscid_vortex_xflowdir", "inviscid_vortex_xv", b"inviscid_vortex_xv", "inviscid_vortex_yflowdir", b"inviscid_vortex_yflowdir", "inviscid_vortex_yv", b"inviscid_vortex_yv", "mms_a", b"mms_a", "mms_k", b"mms_k", "normalshock_m1", b"normalshock_m1", "normalshock_p1", b"normalshock_p1", "normalshock_t1", b"normalshock_t1", "potential_flow_pressure_initialization", b"potential_flow_pressure_initialization", "shocktube_p1", b"shocktube_p1", "shocktube_p4", b"shocktube_p4", "shocktube_t1", b"shocktube_t1", "shocktube_t4", b"shocktube_t4", "shockvortex_av", b"shockvortex_av", "shockvortex_bv", b"shockvortex_bv", "shockvortex_m1", b"shockvortex_m1", "shockvortex_mv", b"shockvortex_mv", "shockvortex_p1", b"shockvortex_p1", "shockvortex_t1", b"shockvortex_t1", "shockvortex_xv", b"shockvortex_xv", "shockvortex_zv", b"shockvortex_zv", "shuosher_amp", b"shuosher_amp", "shuosher_kx", b"shuosher_kx", "shuosher_m1", b"shuosher_m1", "shuosher_m2", b"shuosher_m2", "shuosher_p1", b"shuosher_p1", "shuosher_p2", b"shuosher_p2", "shuosher_rho1", b"shuosher_rho1", "shuosher_rho2", b"shuosher_rho2", "tgv_p", b"tgv_p", "tgv_rho", b"tgv_rho", "tgv_v", b"tgv_v", "turbulent_variable_initialization_type_komega", b"turbulent_variable_initialization_type_komega", "turbulent_variable_initialization_type_sa", b"turbulent_variable_initialization_type_sa", "uniform_nu_tilde", b"uniform_nu_tilde", "uniform_omega", b"uniform_omega", "uniform_p", b"uniform_p", "uniform_t", b"uniform_t", "uniform_tke", b"uniform_tke", "uniform_v", b"uniform_v", "verification_solutions", b"verification_solutions", "vorticitywave_amp", b"vorticitywave_amp"]) -> None: ...
|
|
@@ -21,7 +21,7 @@ from luminarycloud._proto.parametricworker import parametricworker_pb2 as proto_
|
|
|
21
21
|
from luminarycloud._proto.lcstatus import lcstatus_pb2 as proto_dot_lcstatus_dot_lcstatus__pb2
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\xa8\x01\n\x0eImportGeometry\x12\x14\n\x0cgeometry_url\x18\x01 \x01(\t\x12\x0f\n\x07scaling\x18\x02 \x01(\x01\x12\x16\n\x0e\x66orce_discrete\x18\x03 \x01(\x08\x12>\n\nparameters\x18\x04 \x03(\x0b\x32*.luminary.proto.parametricworker.Parameter\x12\x17\n\x0fweb_geometry_id\x18\x05 \x01(\t\"\xc0\x02\n\x06\x43reate\x12,\n\x06sphere\x18\x01 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\'\n\x03\x62ox\x18\x02 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x30\n\x08\x63ylinder\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12*\n\x05torus\x18\x04 \x01(\x0b\x32\x19.luminary.proto.cad.TorusH\x00\x12(\n\x04\x63one\x18\x05 \x01(\x0b\x32\x18.luminary.proto.cad.ConeH\x00\x12\x35\n\x0bhalf_sphere\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.HalfSphereH\x00\x12\x17\n\x0fresult_body_tag\x18\x07 \x01(\tB\x07\n\x05shape\"V\n\x06\x44\x65lete\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32#.luminary.proto.geometry.EntityType\x12\x0b\n\x03ids\x18\x02 \x03(\x04\x12\x0c\n\x04tags\x18\x03 \x03(\t\"\x83\x02\n\x07\x42oolean\x12\x35\n\treg_union\x18\x01 \x01(\x0b\x32 .luminary.proto.cad.RegularUnionH\x00\x12\x41\n\x0freg_subtraction\x18\x02 \x01(\x0b\x32&.luminary.proto.cad.RegularSubtractionH\x00\x12\x43\n\x10reg_intersection\x18\x03 \x01(\x0b\x32\'.luminary.proto.cad.RegularIntersectionH\x00\x12\x33\n\x08reg_chop\x18\x04 \x01(\x0b\x32\x1f.luminary.proto.cad.RegularChopH\x00\x42\x04\n\x02op\"\xa2\x01\n\x07Imprint\x12\x42\n\x08\x62\x65havior\x18\x01 \x01(\x0e\x32\x30.luminary.proto.geometry.Imprint.ImprintBehavior\x12\x0c\n\x04\x62ody\x18\x02 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\"8\n\x0fImprintBehavior\x12\x0f\n\x0bIMPRINT_ALL\x10\x00\x12\x14\n\x10IMPRINT_SELECTED\x10\x01\"\xc0\x02\n\tTransform\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x08 \x03(\t\x12\x35\n\x06matrix\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AugmentedMatrixH\x00\x12\x36\n\x0btranslation\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12\x30\n\x08rotation\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.cad.RotationH\x00\x12.\n\x07scaling\x18\x05 \x01(\x0b\x32\x1b.luminary.proto.cad.ScalingH\x00\x12\x34\n\nreflection\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.ReflectionH\x00\x12\x0c\n\x04keep\x18\x07 \x01(\x08\x42\x03\n\x01t\"\xcf\x01\n\nShrinkwrap\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x10\n\x08tag_body\x18\x07 \x03(\t\x12\x0c\n\x04tool\x18\x06 \x03(\x04\x12\x10\n\x08tag_tool\x18\x08 \x03(\t\x12\x35\n\x04mode\x18\x02 \x01(\x0e\x32\'.luminary.proto.geometry.ShrinkwrapMode\x12\x16\n\x0eresolution_min\x18\x03 \x01(\x01\x12\x16\n\x0eresolution_max\x18\x04 \x01(\x01\x12\x1a\n\x12resolution_uniform\x18\x05 \x01(\x01\"\xb2\x01\n\x08\x46\x61rfield\x12/\n\x06\x63reate\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.Create\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x04\x12\x12\n\ntag_bodies\x18\x06 \x03(\t\x12\x1a\n\x12keep_source_bodies\x18\x03 \x01(\x08\x12\x18\n\x10keep_tool_bodies\x18\x04 \x01(\x08\x12\x1b\n\x13propagate_tool_tags\x18\x05 \x01(\x08\"\xf9\x02\n\x07Pattern\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\x12=\n\tdirection\x18\x02 \x01(\x0b\x32*.luminary.proto.geometry.Pattern.Direction\x1a\x93\x02\n\tDirection\x12\x10\n\x08quantity\x18\x01 \x01(\r\x12\x11\n\tsymmetric\x18\x02 \x01(\x08\x12\x39\n\x0elinear_spacing\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12T\n\x15\x63ircular_distribution\x18\x04 \x01(\x0b\x32\x33.luminary.proto.geometry.Pattern.Direction.CircularH\x00\x1aH\n\x08\x43ircular\x12.\n\x08rotation\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.cad.Rotation\x12\x0c\n\x04\x66ull\x18\x02 \x01(\x08\x42\x06\n\x04type\"\x8c\x02\n\x0e\x43onfigurations\x12Q\n\rconfiguration\x18\x01 \x03(\x0b\x32:.luminary.proto.geometry.Configurations.ConfigurationEntry\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\t\x1a*\n\rConfiguration\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x02 \x03(\t\x1ak\n\x12\x43onfigurationEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x44\n\x05value\x18\x02 \x01(\x0b\x32\x35.luminary.proto.geometry.Configurations.Configuration:\x02\x38\x01\"V\n\rFeatureIssues\x12\x31\n\x06issues\x18\x01 \x03(\x0b\x32!.luminary.proto.lcstatus.LCStatus\x12\x12\n\nfeature_id\x18\x02 \x01(\t\"\xef\x04\n\x07\x46\x65\x61ture\x12\x42\n\x0fimport_geometry\x18\x01 \x01(\x0b\x32\'.luminary.proto.geometry.ImportGeometryH\x00\x12\x31\n\x06\x63reate\x18\x02 \x01(\x0b\x32\x1f.luminary.proto.geometry.CreateH\x00\x12\x31\n\x06\x64\x65lete\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.geometry.DeleteH\x00\x12\x33\n\x07\x62oolean\x18\x04 \x01(\x0b\x32 .luminary.proto.geometry.BooleanH\x00\x12\x33\n\x07imprint\x18\x07 \x01(\x0b\x32 .luminary.proto.geometry.ImprintH\x00\x12\x37\n\ttransform\x18\x0c \x01(\x0b\x32\".luminary.proto.geometry.TransformH\x00\x12\x39\n\nshrinkwrap\x18\r \x01(\x0b\x32#.luminary.proto.geometry.ShrinkwrapH\x00\x12\x35\n\x08\x66\x61rfield\x18\x0e \x01(\x0b\x32!.luminary.proto.geometry.FarfieldH\x00\x12\x33\n\x07pattern\x18\x0f \x01(\x0b\x32 .luminary.proto.geometry.PatternH\x00\x12\x41\n\x0e\x63onfigurations\x18\x10 \x01(\x0b\x32\'.luminary.proto.geometry.ConfigurationsH\x00\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0c\x66\x65\x61ture_name\x18\x06 \x01(\tB\x0b\n\toperation\"@\n\x11\x43reateOrUpdateTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"/\n\tRenameTag\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"8\n\tDeleteTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"\x1b\n\nDeleteTags\x12\r\n\x05names\x18\x01 \x03(\t\"\x91\x07\n\x0cModification\x12H\n\x08mod_type\x18\x01 \x01(\x0e\x32\x36.luminary.proto.geometry.Modification.ModificationType\x12\x31\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .luminary.proto.geometry.Feature\x12H\n\x14\x63reate_or_update_tag\x18\x03 \x01(\x0b\x32*.luminary.proto.geometry.CreateOrUpdateTag\x12\x36\n\nrename_tag\x18\x04 \x01(\x0b\x32\".luminary.proto.geometry.RenameTag\x12\x36\n\ndelete_tag\x18\x05 \x01(\x0b\x32\".luminary.proto.geometry.DeleteTag\x12\x38\n\x0b\x64\x65lete_tags\x18\x06 \x01(\x0b\x32#.luminary.proto.geometry.DeleteTags\x12,\n$update_named_variable_set_version_id\x18\x07 \x01(\t\"\xe1\x03\n\x10ModificationType\x12!\n\x1dMODIFICATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODIFICATION_TYPE_CREATE_FEATURE\x10\x01\x12$\n MODIFICATION_TYPE_UPDATE_FEATURE\x10\x02\x12$\n MODIFICATION_TYPE_DELETE_FEATURE\x10\x03\x12\x1a\n\x16MODIFICATION_TYPE_UNDO\x10\x04\x12\x1a\n\x16MODIFICATION_TYPE_REDO\x10\x05\x12$\n MODIFICATION_TYPE_RENAME_FEATURE\x10\x06\x12 \n\x1cMODIFICATION_TYPE_CREATE_TAG\x10\x07\x12 \n\x1cMODIFICATION_TYPE_UPDATE_TAG\x10\x08\x12 \n\x1cMODIFICATION_TYPE_DELETE_TAG\x10\t\x12 \n\x1cMODIFICATION_TYPE_RENAME_TAG\x10\n\x12!\n\x1dMODIFICATION_TYPE_DELETE_TAGS\x10\x0b\x12/\n+MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET\x10\x0c\"\x85\x01\n\x04\x46\x61\x63\x65\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x11\n\tnative_id\x18\x04 \x01(\x04\"\x82\x01\n\x04\x42ody\x12\n\n\x02id\x18\x01 \x01(\x04\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x0e\n\x06lcn_id\x18\x04 \x01(\x04\"\"\n\x06Volume\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xc2\x01\n\x04Tags\x12/\n\x04tags\x18\x01 \x03(\x0b\x32!.luminary.proto.geometry.Tags.Tag\x1a\x88\x01\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x12\n\nlcn_bodies\x18\x04 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x05 \x03(\x05\x12\x17\n\x0f\x62odies_of_faces\x18\x06 \x03(\x05\x12\x1b\n\x13lcn_bodies_of_faces\x18\x07 \x03(\x05*S\n\nEntityType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04\x42ODY\x10\x01\x12\n\n\x06VOLUME\x10\x02\x12\x08\n\x04\x46\x41\x43\x45\x10\x03\x12\x08\n\x04\x45\x44GE\x10\x04\x12\n\n\x06VERTEX\x10\x05*8\n\x0eShrinkwrapMode\x12\r\n\tAUTOMATIC\x10\x00\x12\n\n\x06MINMAX\x10\x01\x12\x0b\n\x07UNIFORM\x10\x02*7\n\nKernelType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0e\n\nCONTINUOUS\x10\x01\x12\x0c\n\x08\x44ISCRETE\x10\x02\x42\'Z%luminarycloud.com/core/proto/geometryb\x06proto3')
|
|
25
25
|
|
|
26
26
|
_ENTITYTYPE = DESCRIPTOR.enum_types_by_name['EntityType']
|
|
27
27
|
EntityType = enum_type_wrapper.EnumTypeWrapper(_ENTITYTYPE)
|
|
@@ -43,7 +43,7 @@ CONTINUOUS = 1
|
|
|
43
43
|
DISCRETE = 2
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
_IMPORTGEOMETRY = DESCRIPTOR.message_types_by_name['ImportGeometry']
|
|
47
47
|
_CREATE = DESCRIPTOR.message_types_by_name['Create']
|
|
48
48
|
_DELETE = DESCRIPTOR.message_types_by_name['Delete']
|
|
49
49
|
_BOOLEAN = DESCRIPTOR.message_types_by_name['Boolean']
|
|
@@ -71,12 +71,12 @@ _TAGS = DESCRIPTOR.message_types_by_name['Tags']
|
|
|
71
71
|
_TAGS_TAG = _TAGS.nested_types_by_name['Tag']
|
|
72
72
|
_IMPRINT_IMPRINTBEHAVIOR = _IMPRINT.enum_types_by_name['ImprintBehavior']
|
|
73
73
|
_MODIFICATION_MODIFICATIONTYPE = _MODIFICATION.enum_types_by_name['ModificationType']
|
|
74
|
-
|
|
75
|
-
'DESCRIPTOR' :
|
|
74
|
+
ImportGeometry = _reflection.GeneratedProtocolMessageType('ImportGeometry', (_message.Message,), {
|
|
75
|
+
'DESCRIPTOR' : _IMPORTGEOMETRY,
|
|
76
76
|
'__module__' : 'proto.geometry.geometry_pb2'
|
|
77
|
-
# @@protoc_insertion_point(class_scope:luminary.proto.geometry.
|
|
77
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.geometry.ImportGeometry)
|
|
78
78
|
})
|
|
79
|
-
_sym_db.RegisterMessage(
|
|
79
|
+
_sym_db.RegisterMessage(ImportGeometry)
|
|
80
80
|
|
|
81
81
|
Create = _reflection.GeneratedProtocolMessageType('Create', (_message.Message,), {
|
|
82
82
|
'DESCRIPTOR' : _CREATE,
|
|
@@ -264,66 +264,66 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
264
264
|
DESCRIPTOR._serialized_options = b'Z%luminarycloud.com/core/proto/geometry'
|
|
265
265
|
_CONFIGURATIONS_CONFIGURATIONENTRY._options = None
|
|
266
266
|
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_options = b'8\001'
|
|
267
|
-
_ENTITYTYPE._serialized_start=
|
|
268
|
-
_ENTITYTYPE._serialized_end=
|
|
269
|
-
_SHRINKWRAPMODE._serialized_start=
|
|
270
|
-
_SHRINKWRAPMODE._serialized_end=
|
|
271
|
-
_KERNELTYPE._serialized_start=
|
|
272
|
-
_KERNELTYPE._serialized_end=
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
_CREATE._serialized_start=
|
|
276
|
-
_CREATE._serialized_end=
|
|
277
|
-
_DELETE._serialized_start=
|
|
278
|
-
_DELETE._serialized_end=
|
|
279
|
-
_BOOLEAN._serialized_start=
|
|
280
|
-
_BOOLEAN._serialized_end=
|
|
281
|
-
_IMPRINT._serialized_start=
|
|
282
|
-
_IMPRINT._serialized_end=
|
|
283
|
-
_IMPRINT_IMPRINTBEHAVIOR._serialized_start=
|
|
284
|
-
_IMPRINT_IMPRINTBEHAVIOR._serialized_end=
|
|
285
|
-
_TRANSFORM._serialized_start=
|
|
286
|
-
_TRANSFORM._serialized_end=
|
|
287
|
-
_SHRINKWRAP._serialized_start=
|
|
288
|
-
_SHRINKWRAP._serialized_end=
|
|
289
|
-
_FARFIELD._serialized_start=
|
|
290
|
-
_FARFIELD._serialized_end=
|
|
291
|
-
_PATTERN._serialized_start=
|
|
292
|
-
_PATTERN._serialized_end=
|
|
293
|
-
_PATTERN_DIRECTION._serialized_start=
|
|
294
|
-
_PATTERN_DIRECTION._serialized_end=
|
|
295
|
-
_PATTERN_DIRECTION_CIRCULAR._serialized_start=
|
|
296
|
-
_PATTERN_DIRECTION_CIRCULAR._serialized_end=
|
|
297
|
-
_CONFIGURATIONS._serialized_start=
|
|
298
|
-
_CONFIGURATIONS._serialized_end=
|
|
299
|
-
_CONFIGURATIONS_CONFIGURATION._serialized_start=
|
|
300
|
-
_CONFIGURATIONS_CONFIGURATION._serialized_end=
|
|
301
|
-
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=
|
|
302
|
-
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=
|
|
303
|
-
_FEATUREISSUES._serialized_start=
|
|
304
|
-
_FEATUREISSUES._serialized_end=
|
|
305
|
-
_FEATURE._serialized_start=
|
|
306
|
-
_FEATURE._serialized_end=
|
|
307
|
-
_CREATEORUPDATETAG._serialized_start=
|
|
308
|
-
_CREATEORUPDATETAG._serialized_end=
|
|
309
|
-
_RENAMETAG._serialized_start=
|
|
310
|
-
_RENAMETAG._serialized_end=
|
|
311
|
-
_DELETETAG._serialized_start=
|
|
312
|
-
_DELETETAG._serialized_end=
|
|
313
|
-
_DELETETAGS._serialized_start=
|
|
314
|
-
_DELETETAGS._serialized_end=
|
|
315
|
-
_MODIFICATION._serialized_start=
|
|
316
|
-
_MODIFICATION._serialized_end=
|
|
317
|
-
_MODIFICATION_MODIFICATIONTYPE._serialized_start=
|
|
318
|
-
_MODIFICATION_MODIFICATIONTYPE._serialized_end=
|
|
319
|
-
_FACE._serialized_start=
|
|
320
|
-
_FACE._serialized_end=
|
|
321
|
-
_BODY._serialized_start=
|
|
322
|
-
_BODY._serialized_end=
|
|
323
|
-
_VOLUME._serialized_start=
|
|
324
|
-
_VOLUME._serialized_end=
|
|
325
|
-
_TAGS._serialized_start=
|
|
326
|
-
_TAGS._serialized_end=
|
|
327
|
-
_TAGS_TAG._serialized_start=
|
|
328
|
-
_TAGS_TAG._serialized_end=
|
|
267
|
+
_ENTITYTYPE._serialized_start=4947
|
|
268
|
+
_ENTITYTYPE._serialized_end=5030
|
|
269
|
+
_SHRINKWRAPMODE._serialized_start=5032
|
|
270
|
+
_SHRINKWRAPMODE._serialized_end=5088
|
|
271
|
+
_KERNELTYPE._serialized_start=5090
|
|
272
|
+
_KERNELTYPE._serialized_end=5145
|
|
273
|
+
_IMPORTGEOMETRY._serialized_start=240
|
|
274
|
+
_IMPORTGEOMETRY._serialized_end=408
|
|
275
|
+
_CREATE._serialized_start=411
|
|
276
|
+
_CREATE._serialized_end=731
|
|
277
|
+
_DELETE._serialized_start=733
|
|
278
|
+
_DELETE._serialized_end=819
|
|
279
|
+
_BOOLEAN._serialized_start=822
|
|
280
|
+
_BOOLEAN._serialized_end=1081
|
|
281
|
+
_IMPRINT._serialized_start=1084
|
|
282
|
+
_IMPRINT._serialized_end=1246
|
|
283
|
+
_IMPRINT_IMPRINTBEHAVIOR._serialized_start=1190
|
|
284
|
+
_IMPRINT_IMPRINTBEHAVIOR._serialized_end=1246
|
|
285
|
+
_TRANSFORM._serialized_start=1249
|
|
286
|
+
_TRANSFORM._serialized_end=1569
|
|
287
|
+
_SHRINKWRAP._serialized_start=1572
|
|
288
|
+
_SHRINKWRAP._serialized_end=1779
|
|
289
|
+
_FARFIELD._serialized_start=1782
|
|
290
|
+
_FARFIELD._serialized_end=1960
|
|
291
|
+
_PATTERN._serialized_start=1963
|
|
292
|
+
_PATTERN._serialized_end=2340
|
|
293
|
+
_PATTERN_DIRECTION._serialized_start=2065
|
|
294
|
+
_PATTERN_DIRECTION._serialized_end=2340
|
|
295
|
+
_PATTERN_DIRECTION_CIRCULAR._serialized_start=2260
|
|
296
|
+
_PATTERN_DIRECTION_CIRCULAR._serialized_end=2332
|
|
297
|
+
_CONFIGURATIONS._serialized_start=2343
|
|
298
|
+
_CONFIGURATIONS._serialized_end=2611
|
|
299
|
+
_CONFIGURATIONS_CONFIGURATION._serialized_start=2460
|
|
300
|
+
_CONFIGURATIONS_CONFIGURATION._serialized_end=2502
|
|
301
|
+
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2504
|
|
302
|
+
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2611
|
|
303
|
+
_FEATUREISSUES._serialized_start=2613
|
|
304
|
+
_FEATUREISSUES._serialized_end=2699
|
|
305
|
+
_FEATURE._serialized_start=2702
|
|
306
|
+
_FEATURE._serialized_end=3325
|
|
307
|
+
_CREATEORUPDATETAG._serialized_start=3327
|
|
308
|
+
_CREATEORUPDATETAG._serialized_end=3391
|
|
309
|
+
_RENAMETAG._serialized_start=3393
|
|
310
|
+
_RENAMETAG._serialized_end=3440
|
|
311
|
+
_DELETETAG._serialized_start=3442
|
|
312
|
+
_DELETETAG._serialized_end=3498
|
|
313
|
+
_DELETETAGS._serialized_start=3500
|
|
314
|
+
_DELETETAGS._serialized_end=3527
|
|
315
|
+
_MODIFICATION._serialized_start=3530
|
|
316
|
+
_MODIFICATION._serialized_end=4443
|
|
317
|
+
_MODIFICATION_MODIFICATIONTYPE._serialized_start=3962
|
|
318
|
+
_MODIFICATION_MODIFICATIONTYPE._serialized_end=4443
|
|
319
|
+
_FACE._serialized_start=4446
|
|
320
|
+
_FACE._serialized_end=4579
|
|
321
|
+
_BODY._serialized_start=4582
|
|
322
|
+
_BODY._serialized_end=4712
|
|
323
|
+
_VOLUME._serialized_start=4714
|
|
324
|
+
_VOLUME._serialized_end=4748
|
|
325
|
+
_TAGS._serialized_start=4751
|
|
326
|
+
_TAGS._serialized_end=4945
|
|
327
|
+
_TAGS_TAG._serialized_start=4809
|
|
328
|
+
_TAGS_TAG._serialized_end=4945
|
|
329
329
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -83,7 +83,7 @@ CONTINUOUS: KernelType.ValueType # 1
|
|
|
83
83
|
DISCRETE: KernelType.ValueType # 2
|
|
84
84
|
global___KernelType = KernelType
|
|
85
85
|
|
|
86
|
-
class
|
|
86
|
+
class ImportGeometry(google.protobuf.message.Message):
|
|
87
87
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
88
88
|
|
|
89
89
|
GEOMETRY_URL_FIELD_NUMBER: builtins.int
|
|
@@ -113,7 +113,7 @@ class Import(google.protobuf.message.Message):
|
|
|
113
113
|
) -> None: ...
|
|
114
114
|
def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "geometry_url", b"geometry_url", "parameters", b"parameters", "scaling", b"scaling", "web_geometry_id", b"web_geometry_id"]) -> None: ...
|
|
115
115
|
|
|
116
|
-
|
|
116
|
+
global___ImportGeometry = ImportGeometry
|
|
117
117
|
|
|
118
118
|
class Create(google.protobuf.message.Message):
|
|
119
119
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -571,7 +571,7 @@ global___FeatureIssues = FeatureIssues
|
|
|
571
571
|
class Feature(google.protobuf.message.Message):
|
|
572
572
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
573
573
|
|
|
574
|
-
|
|
574
|
+
IMPORT_GEOMETRY_FIELD_NUMBER: builtins.int
|
|
575
575
|
CREATE_FIELD_NUMBER: builtins.int
|
|
576
576
|
DELETE_FIELD_NUMBER: builtins.int
|
|
577
577
|
BOOLEAN_FIELD_NUMBER: builtins.int
|
|
@@ -584,6 +584,9 @@ class Feature(google.protobuf.message.Message):
|
|
|
584
584
|
ID_FIELD_NUMBER: builtins.int
|
|
585
585
|
FEATURE_NAME_FIELD_NUMBER: builtins.int
|
|
586
586
|
@property
|
|
587
|
+
def import_geometry(self) -> global___ImportGeometry:
|
|
588
|
+
"""Import a new geometry file into the current geometry"""
|
|
589
|
+
@property
|
|
587
590
|
def create(self) -> global___Create:
|
|
588
591
|
"""Create a new canonical shape"""
|
|
589
592
|
@property
|
|
@@ -617,6 +620,7 @@ class Feature(google.protobuf.message.Message):
|
|
|
617
620
|
def __init__(
|
|
618
621
|
self,
|
|
619
622
|
*,
|
|
623
|
+
import_geometry: global___ImportGeometry | None = ...,
|
|
620
624
|
create: global___Create | None = ...,
|
|
621
625
|
delete: global___Delete | None = ...,
|
|
622
626
|
boolean: global___Boolean | None = ...,
|
|
@@ -629,9 +633,9 @@ class Feature(google.protobuf.message.Message):
|
|
|
629
633
|
id: builtins.str = ...,
|
|
630
634
|
feature_name: builtins.str = ...,
|
|
631
635
|
) -> None: ...
|
|
632
|
-
def HasField(self, field_name: typing_extensions.Literal["boolean", b"boolean", "configurations", b"configurations", "create", b"create", "delete", b"delete", "farfield", b"farfield", "
|
|
633
|
-
def ClearField(self, field_name: typing_extensions.Literal["boolean", b"boolean", "configurations", b"configurations", "create", b"create", "delete", b"delete", "farfield", b"farfield", "feature_name", b"feature_name", "id", b"id", "
|
|
634
|
-
def WhichOneof(self, oneof_group: typing_extensions.Literal["operation", b"operation"]) -> typing_extensions.Literal["
|
|
636
|
+
def HasField(self, field_name: typing_extensions.Literal["boolean", b"boolean", "configurations", b"configurations", "create", b"create", "delete", b"delete", "farfield", b"farfield", "import_geometry", b"import_geometry", "imprint", b"imprint", "operation", b"operation", "pattern", b"pattern", "shrinkwrap", b"shrinkwrap", "transform", b"transform"]) -> builtins.bool: ...
|
|
637
|
+
def ClearField(self, field_name: typing_extensions.Literal["boolean", b"boolean", "configurations", b"configurations", "create", b"create", "delete", b"delete", "farfield", b"farfield", "feature_name", b"feature_name", "id", b"id", "import_geometry", b"import_geometry", "imprint", b"imprint", "operation", b"operation", "pattern", b"pattern", "shrinkwrap", b"shrinkwrap", "transform", b"transform"]) -> None: ...
|
|
638
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["operation", b"operation"]) -> typing_extensions.Literal["import_geometry", "create", "delete", "boolean", "imprint", "transform", "shrinkwrap", "farfield", "pattern", "configurations"] | None: ...
|
|
635
639
|
|
|
636
640
|
global___Feature = Feature
|
|
637
641
|
|