luminarycloud 0.14.0__py3-none-any.whl → 0.15.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 +8 -1
- luminarycloud/_client/client.py +9 -0
- luminarycloud/_client/logging_interceptor.py +25 -0
- luminarycloud/_client/tracing.py +13 -8
- luminarycloud/_helpers/__init__.py +2 -0
- luminarycloud/_helpers/_code_representation.py +135 -0
- luminarycloud/_helpers/_simulation_params_from_json.py +5 -1
- luminarycloud/_helpers/download.py +16 -0
- luminarycloud/_helpers/named_variables.py +25 -0
- luminarycloud/_helpers/upload.py +31 -11
- luminarycloud/_helpers/warnings/deprecated.py +8 -10
- luminarycloud/_helpers/warnings/experimental.py +4 -4
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +135 -110
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +82 -10
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +40 -40
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -2
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +182 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +260 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +204 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +75 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +94 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +145 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +104 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +42 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +25 -25
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +10 -3
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +25 -3
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +32 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +162 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +254 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +203 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +74 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +157 -141
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +32 -4
- luminarycloud/_proto/cad/boolean_pb2.py +8 -8
- luminarycloud/_proto/cad/boolean_pb2.pyi +34 -4
- luminarycloud/_proto/client/simulation_pb2.py +304 -294
- luminarycloud/_proto/client/simulation_pb2.pyi +30 -1
- luminarycloud/_proto/geometry/geometry_pb2.py +58 -58
- luminarycloud/_proto/geometry/geometry_pb2.pyi +58 -11
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +42 -42
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +2 -2
- luminarycloud/_proto/output/reference_values_pb2.py +5 -5
- luminarycloud/_proto/parametricworker/parametricworker_pb2.py +31 -31
- luminarycloud/_proto/parametricworker/parametricworker_pb2.pyi +6 -4
- luminarycloud/_proto/quantity/quantity_pb2.py +4 -4
- luminarycloud/_proto/table/table_pb2.py +9 -8
- luminarycloud/_proto/table/table_pb2.pyi +7 -1
- luminarycloud/enum/__init__.py +2 -0
- luminarycloud/enum/geometry_status.py +28 -0
- luminarycloud/geometry.py +64 -32
- luminarycloud/geometry_version.py +2 -2
- luminarycloud/mesh.py +11 -4
- luminarycloud/meshing/__init__.py +1 -0
- luminarycloud/meshing/metadata/__init__.py +6 -0
- luminarycloud/meshing/metadata/mesh_metadata.py +57 -0
- luminarycloud/named_variable_set.py +121 -0
- luminarycloud/outputs/output_definitions.py +11 -10
- luminarycloud/params/enum/_enum_wrappers.py +77 -968
- luminarycloud/params/outputs/output.py +2 -1
- luminarycloud/params/simulation/__init__.py +16 -16
- luminarycloud/params/simulation/_lib.py +1 -67
- luminarycloud/params/simulation/adaptive_mesh_refinement/boundary_layer_profile_.py +3 -2
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +3 -2
- luminarycloud/params/simulation/adjoint_.py +4 -3
- luminarycloud/params/simulation/basic/gravity/gravity_off_.py +3 -2
- luminarycloud/params/simulation/basic/gravity/gravity_on_.py +3 -2
- luminarycloud/params/simulation/basic/gravity_.py +3 -2
- luminarycloud/params/simulation/body_frame_.py +3 -2
- luminarycloud/params/simulation/entity_relationships/volume_material_relationship_.py +7 -6
- luminarycloud/params/simulation/entity_relationships/volume_physics_relationship_.py +7 -6
- luminarycloud/params/simulation/entity_relationships_.py +3 -2
- luminarycloud/params/simulation/general_.py +4 -3
- luminarycloud/params/simulation/material/fluid/__init__.py +4 -4
- luminarycloud/params/simulation/material/fluid/boussinesq_approximation/boussinesq_off_.py +3 -2
- luminarycloud/params/simulation/material/fluid/boussinesq_approximation/boussinesq_on_.py +3 -2
- luminarycloud/params/simulation/material/fluid/boussinesq_approximation_.py +3 -2
- luminarycloud/params/simulation/material/fluid/material_model/__init__.py +1 -1
- luminarycloud/params/simulation/material/fluid/material_model/ideal_gas_.py +3 -2
- luminarycloud/params/simulation/material/fluid/material_model/incompressible_fluid_.py +3 -2
- luminarycloud/params/simulation/material/fluid/material_model/incompressible_fluid_with_energy_.py +3 -2
- luminarycloud/params/simulation/material/fluid/material_model_.py +3 -2
- luminarycloud/params/simulation/material/fluid/thermal_conductivity_model/__init__.py +2 -2
- luminarycloud/params/simulation/material/fluid/thermal_conductivity_model/prescribed_conductivity_.py +3 -2
- luminarycloud/params/simulation/material/fluid/thermal_conductivity_model/prescribed_prandtl_number_.py +3 -2
- luminarycloud/params/simulation/material/fluid/thermal_conductivity_model/temperature_dependent_conductivity_.py +4 -3
- luminarycloud/params/simulation/material/fluid/thermal_conductivity_model_.py +3 -2
- luminarycloud/params/simulation/material/fluid/viscosity_model/__init__.py +1 -1
- luminarycloud/params/simulation/material/fluid/viscosity_model/prescribed_viscosity_.py +3 -2
- luminarycloud/params/simulation/material/fluid/viscosity_model/sutherland_.py +3 -2
- luminarycloud/params/simulation/material/fluid/viscosity_model/temperature_dependent_viscosity_.py +4 -3
- luminarycloud/params/simulation/material/fluid/viscosity_model_.py +3 -2
- luminarycloud/params/simulation/material/material_fluid_.py +7 -6
- luminarycloud/params/simulation/material/material_solid_.py +4 -3
- luminarycloud/params/simulation/material_entity_.py +9 -8
- luminarycloud/params/simulation/monitor_plane_.py +5 -4
- luminarycloud/params/simulation/motion_data/__init__.py +1 -1
- luminarycloud/params/simulation/motion_data/frame_transforms/__init__.py +1 -1
- luminarycloud/params/simulation/motion_data/frame_transforms/no_transform_.py +5 -4
- luminarycloud/params/simulation/motion_data/frame_transforms/rotational_transform_.py +5 -4
- luminarycloud/params/simulation/motion_data/frame_transforms/translational_transform_.py +5 -4
- luminarycloud/params/simulation/motion_data/frame_transforms_.py +3 -2
- luminarycloud/params/simulation/motion_data/motion_type/__init__.py +1 -1
- luminarycloud/params/simulation/motion_data/motion_type/constant_angular_motion_.py +5 -4
- luminarycloud/params/simulation/motion_data/motion_type/constant_translation_motion_.py +5 -4
- luminarycloud/params/simulation/motion_data/motion_type_.py +3 -2
- luminarycloud/params/simulation/motion_data_.py +6 -5
- luminarycloud/params/simulation/multi_physics_coupling_options_.py +3 -2
- luminarycloud/params/simulation/output_.py +3 -2
- luminarycloud/params/simulation/particle_group/particle_group_type/__init__.py +1 -1
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_normal_vector_.py +4 -3
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_rotation_angles_.py +4 -3
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection_.py +3 -2
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk_.py +7 -6
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_line_.py +3 -2
- luminarycloud/params/simulation/particle_group/particle_group_type/probe_points_.py +5 -4
- luminarycloud/params/simulation/particle_group/particle_group_type/source_points_.py +5 -4
- luminarycloud/params/simulation/particle_group/particle_group_type_.py +3 -2
- luminarycloud/params/simulation/particle_group_.py +4 -3
- luminarycloud/params/simulation/physics/__init__.py +3 -3
- luminarycloud/params/simulation/physics/fluid/__init__.py +9 -9
- luminarycloud/params/simulation/physics/fluid/adjoint_controls_fluid_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/basic_fluid_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/__init__.py +5 -5
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/farfield_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/__init__.py +3 -3
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +7 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +6 -5
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/velocity_components_inlet_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +6 -5
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet_.py +8 -7
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy/fan_curve_outlet_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_pressure_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_corrected_mass_flow_rate_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_mass_flow_rate_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet/outlet_strategy_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/outlet_.py +6 -5
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/symmetry_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/turbulence_boundary_conditions_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/energy/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/energy/prescribed_heat_flux_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/energy/prescribed_temperature_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/momentum/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/momentum/no_slip_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/momentum/slip_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/momentum/wall_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/wall_energy_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall/wall_momentum_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/wall_.py +7 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions_fluid_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/initialization/__init__.py +2 -2
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_existing_solution_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_farfield_values_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_prescribed_values_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/initialization/turbulence_initialization_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/initialization_fluid_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/physical_behavior/blade_element_airfoil_data_.py +8 -7
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/__init__.py +2 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_blade_element_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_radial_distribution_.py +8 -7
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_uniform_thrust_.py +4 -3
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/fan_curve_internal_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model/actuator_line_blade_element_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/blade_element_params_.py +9 -8
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_acceleration_source_.py +4 -3
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_mass_source_.py +4 -3
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior/physical_behavior_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/physical_behavior_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/porous_behavior_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_explicit_relaxation_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_off_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py +7 -6
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/cfl_based_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/fixed_pseudo_time_step_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls_fluid_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme/ec2_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme/fds_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme/ld2_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme/rhie_chow_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme_order/first_order_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme_order/second_order_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization/convective_scheme_order_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/spatial_discretization_fluid_.py +5 -4
- luminarycloud/params/simulation/physics/fluid/turbulence/__init__.py +2 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/des_formulation/__init__.py +1 -1
- luminarycloud/params/simulation/physics/fluid/turbulence/des_formulation/ddes_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/des_formulation/ddes_vtm_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/des_formulation/iddes_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/des_formulation_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/komega_sst/constants/custom_komega_sst_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/komega_sst/constants/default_komega_sst_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/komega_sst/komega_sst_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/komega_sst_.py +6 -5
- luminarycloud/params/simulation/physics/fluid/turbulence/spalart_allmaras/constants/custom_spalart_allmaras_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/spalart_allmaras/constants/default_spalart_allmaras_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/spalart_allmaras/spalart_allmaras_constants_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/spalart_allmaras_.py +6 -5
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/__init__.py +2 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/amd_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/sigma_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/smagorinsky_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/vreman_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model/wale_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence/sub_grid_scale_model_.py +3 -2
- luminarycloud/params/simulation/physics/fluid/turbulence_.py +6 -5
- luminarycloud/params/simulation/physics/fluid_.py +12 -13
- luminarycloud/params/simulation/physics/heat/__init__.py +4 -4
- luminarycloud/params/simulation/physics/heat/adjoint_controls_heat_.py +3 -2
- luminarycloud/params/simulation/physics/heat/boundary_conditions/__init__.py +2 -2
- luminarycloud/params/simulation/physics/heat/boundary_conditions/heat_bc_convection_.py +5 -4
- luminarycloud/params/simulation/physics/heat/boundary_conditions/heat_bc_heat_flux_.py +5 -4
- luminarycloud/params/simulation/physics/heat/boundary_conditions/heat_bc_integrated_heat_flux_.py +5 -4
- luminarycloud/params/simulation/physics/heat/boundary_conditions/heat_bc_symmetry_.py +5 -4
- luminarycloud/params/simulation/physics/heat/boundary_conditions/heat_bc_temperature_.py +5 -4
- luminarycloud/params/simulation/physics/heat/boundary_conditions_heat_.py +5 -4
- luminarycloud/params/simulation/physics/heat/heat_source/heat_source_type/__init__.py +1 -1
- luminarycloud/params/simulation/physics/heat/heat_source/heat_source_type/heat_source_type_power_.py +3 -2
- luminarycloud/params/simulation/physics/heat/heat_source/heat_source_type/heat_source_type_power_per_unit_of_volume_.py +4 -3
- luminarycloud/params/simulation/physics/heat/heat_source/heat_source_type_.py +3 -2
- luminarycloud/params/simulation/physics/heat/heat_source_.py +6 -5
- luminarycloud/params/simulation/physics/heat/initialization/heat_existing_solution_.py +5 -4
- luminarycloud/params/simulation/physics/heat/initialization/heat_prescribed_values_.py +5 -4
- luminarycloud/params/simulation/physics/heat/initialization_heat_.py +3 -2
- luminarycloud/params/simulation/physics/heat/solution_controls/heat_relaxation_method/heat_implicit_relaxation_.py +4 -3
- luminarycloud/params/simulation/physics/heat/solution_controls/heat_relaxation_method_.py +3 -2
- luminarycloud/params/simulation/physics/heat/solution_controls_heat_.py +4 -3
- luminarycloud/params/simulation/physics/heat/spatial_discretization_heat_.py +3 -2
- luminarycloud/params/simulation/physics/heat_.py +9 -8
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/__init__.py +1 -1
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +3 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/translational_periodicity_.py +3 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type_.py +3 -2
- luminarycloud/params/simulation/physics/periodic_pair_.py +4 -3
- luminarycloud/params/simulation/physics/solution_controls/linear_solver_type/__init__.py +1 -1
- luminarycloud/params/simulation/physics/solution_controls/linear_solver_type/gauss_seidel_.py +3 -2
- luminarycloud/params/simulation/physics/solution_controls/linear_solver_type/krylov_amg_.py +9 -8
- luminarycloud/params/simulation/physics/solution_controls/linear_solver_type_.py +3 -2
- luminarycloud/params/simulation/physics_.py +7 -6
- luminarycloud/params/simulation/simulation_param_.py +12 -13
- luminarycloud/params/simulation/sliding_interfaces_.py +8 -7
- luminarycloud/params/simulation/surface_name_.py +3 -2
- luminarycloud/params/simulation/time/__init__.py +2 -2
- luminarycloud/params/simulation/time/compute_statistics/__init__.py +1 -1
- luminarycloud/params/simulation/time/compute_statistics/compute_statistics_off_.py +3 -2
- luminarycloud/params/simulation/time/compute_statistics/compute_statistics_on_.py +3 -2
- luminarycloud/params/simulation/time/compute_statistics_.py +3 -2
- luminarycloud/params/simulation/time/time_marching/time_explicit_.py +3 -2
- luminarycloud/params/simulation/time/time_marching/time_implicit_.py +3 -2
- luminarycloud/params/simulation/time/time_marching_.py +3 -2
- luminarycloud/params/simulation/time/time_step_ramp/time_step_ramp_off_.py +3 -2
- luminarycloud/params/simulation/time/time_step_ramp/time_step_ramp_on_.py +3 -2
- luminarycloud/params/simulation/time/time_step_ramp_.py +3 -2
- luminarycloud/params/simulation/time_.py +6 -5
- luminarycloud/params/simulation/volume_entity_.py +5 -4
- luminarycloud/physics_ai/__init__.py +8 -0
- luminarycloud/physics_ai/architectures.py +38 -0
- luminarycloud/physics_ai/models.py +42 -0
- luminarycloud/project.py +73 -21
- luminarycloud/reference_values.py +20 -3
- luminarycloud/simulation.py +8 -3
- luminarycloud/simulation_param.py +136 -29
- luminarycloud/simulation_template.py +84 -13
- luminarycloud/solution.py +17 -2
- luminarycloud/types/__init__.py +1 -0
- luminarycloud/types/adfloat.py +49 -19
- luminarycloud/types/ids.py +3 -0
- luminarycloud/vis/__init__.py +0 -3
- luminarycloud/vis/display.py +1 -0
- luminarycloud/vis/interactive_scene.py +47 -1
- luminarycloud/vis/visualization.py +57 -23
- luminarycloud/volume_selection.py +31 -19
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.15.0.dist-info}/METADATA +2 -2
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.15.0.dist-info}/RECORD +295 -274
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.15.0.dist-info}/WHEEL +0 -0
|
@@ -975,6 +975,27 @@ SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON: DebugOutputInteriorSurfaceData.ValueType #
|
|
|
975
975
|
"""Enable debug output."""
|
|
976
976
|
global___DebugOutputInteriorSurfaceData = DebugOutputInteriorSurfaceData
|
|
977
977
|
|
|
978
|
+
class _ReferenceType:
|
|
979
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
980
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
981
|
+
|
|
982
|
+
class _ReferenceTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ReferenceType.ValueType], builtins.type): # noqa: F821
|
|
983
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
984
|
+
INVALID_REFERENCE_TYPE: _ReferenceType.ValueType # 0
|
|
985
|
+
PRESCRIBE_VALUES: _ReferenceType.ValueType # 35839
|
|
986
|
+
"""User-defined force reference values."""
|
|
987
|
+
REFERENCE_FARFIELD_VALUES: _ReferenceType.ValueType # 62242
|
|
988
|
+
"""Force reference values from the farfield conditions."""
|
|
989
|
+
|
|
990
|
+
class ReferenceType(_ReferenceType, metaclass=_ReferenceTypeEnumTypeWrapper): ...
|
|
991
|
+
|
|
992
|
+
INVALID_REFERENCE_TYPE: ReferenceType.ValueType # 0
|
|
993
|
+
PRESCRIBE_VALUES: ReferenceType.ValueType # 35839
|
|
994
|
+
"""User-defined force reference values."""
|
|
995
|
+
REFERENCE_FARFIELD_VALUES: ReferenceType.ValueType # 62242
|
|
996
|
+
"""Force reference values from the farfield conditions."""
|
|
997
|
+
global___ReferenceType = ReferenceType
|
|
998
|
+
|
|
978
999
|
class _MeshingMethod:
|
|
979
1000
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
980
1001
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -1333,6 +1354,8 @@ class _ProfileTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._En
|
|
|
1333
1354
|
"""1D radial profile normal to the Z direction."""
|
|
1334
1355
|
TIME: _ProfileType.ValueType # 22665
|
|
1335
1356
|
"""Time varying profile."""
|
|
1357
|
+
CARTESIAN_XY: _ProfileType.ValueType # 27148
|
|
1358
|
+
"""2D profile in X and Y direction."""
|
|
1336
1359
|
|
|
1337
1360
|
class ProfileType(_ProfileType, metaclass=_ProfileTypeEnumTypeWrapper): ...
|
|
1338
1361
|
|
|
@@ -1351,6 +1374,8 @@ RADIAL_Z: ProfileType.ValueType # 12670
|
|
|
1351
1374
|
"""1D radial profile normal to the Z direction."""
|
|
1352
1375
|
TIME: ProfileType.ValueType # 22665
|
|
1353
1376
|
"""Time varying profile."""
|
|
1377
|
+
CARTESIAN_XY: ProfileType.ValueType # 27148
|
|
1378
|
+
"""2D profile in X and Y direction."""
|
|
1354
1379
|
global___ProfileType = ProfileType
|
|
1355
1380
|
|
|
1356
1381
|
class _HeatPhysicalBoundary:
|
|
@@ -3632,6 +3657,7 @@ class ReferenceValues(google.protobuf.message.Message):
|
|
|
3632
3657
|
|
|
3633
3658
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3634
3659
|
|
|
3660
|
+
REFERENCE_TYPE_FIELD_NUMBER: builtins.int
|
|
3635
3661
|
AREA_REF_FIELD_NUMBER: builtins.int
|
|
3636
3662
|
LENGTH_REF_FIELD_NUMBER: builtins.int
|
|
3637
3663
|
USE_AERO_MOMENT_REF_LENGTHS_FIELD_NUMBER: builtins.int
|
|
@@ -3641,6 +3667,8 @@ class ReferenceValues(google.protobuf.message.Message):
|
|
|
3641
3667
|
P_REF_FIELD_NUMBER: builtins.int
|
|
3642
3668
|
T_REF_FIELD_NUMBER: builtins.int
|
|
3643
3669
|
V_REF_FIELD_NUMBER: builtins.int
|
|
3670
|
+
reference_type: global___ReferenceType.ValueType
|
|
3671
|
+
"""Method of specification for the reference values used in force and moment computations."""
|
|
3644
3672
|
@property
|
|
3645
3673
|
def area_ref(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
3646
3674
|
"""Reference area for computing force and moment coefficients."""
|
|
@@ -3674,6 +3702,7 @@ class ReferenceValues(google.protobuf.message.Message):
|
|
|
3674
3702
|
def __init__(
|
|
3675
3703
|
self,
|
|
3676
3704
|
*,
|
|
3705
|
+
reference_type: global___ReferenceType.ValueType = ...,
|
|
3677
3706
|
area_ref: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3678
3707
|
length_ref: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3679
3708
|
use_aero_moment_ref_lengths: builtins.bool = ...,
|
|
@@ -3685,7 +3714,7 @@ class ReferenceValues(google.protobuf.message.Message):
|
|
|
3685
3714
|
v_ref: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
3686
3715
|
) -> None: ...
|
|
3687
3716
|
def HasField(self, field_name: typing_extensions.Literal["area_ref", b"area_ref", "length_ref", b"length_ref", "length_ref_pitch", b"length_ref_pitch", "length_ref_roll", b"length_ref_roll", "length_ref_yaw", b"length_ref_yaw", "p_ref", b"p_ref", "t_ref", b"t_ref", "v_ref", b"v_ref"]) -> builtins.bool: ...
|
|
3688
|
-
def ClearField(self, field_name: typing_extensions.Literal["area_ref", b"area_ref", "length_ref", b"length_ref", "length_ref_pitch", b"length_ref_pitch", "length_ref_roll", b"length_ref_roll", "length_ref_yaw", b"length_ref_yaw", "p_ref", b"p_ref", "t_ref", b"t_ref", "use_aero_moment_ref_lengths", b"use_aero_moment_ref_lengths", "v_ref", b"v_ref"]) -> None: ...
|
|
3717
|
+
def ClearField(self, field_name: typing_extensions.Literal["area_ref", b"area_ref", "length_ref", b"length_ref", "length_ref_pitch", b"length_ref_pitch", "length_ref_roll", b"length_ref_roll", "length_ref_yaw", b"length_ref_yaw", "p_ref", b"p_ref", "reference_type", b"reference_type", "t_ref", b"t_ref", "use_aero_moment_ref_lengths", b"use_aero_moment_ref_lengths", "v_ref", b"v_ref"]) -> None: ...
|
|
3689
3718
|
|
|
3690
3719
|
global___ReferenceValues = ReferenceValues
|
|
3691
3720
|
|
|
@@ -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\"\x87\x01\n\x06Import\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\"\
|
|
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\"\x87\x01\n\x06Import\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\"\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\"\xde\x04\n\x07\x46\x65\x61ture\x12\x31\n\x06import\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.ImportH\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\"\xb2\x06\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\"\xb0\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\"\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\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)
|
|
@@ -259,64 +259,64 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
259
259
|
DESCRIPTOR._serialized_options = b'Z%luminarycloud.com/core/proto/geometry'
|
|
260
260
|
_CONFIGURATIONS_CONFIGURATIONENTRY._options = None
|
|
261
261
|
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_options = b'8\001'
|
|
262
|
-
_ENTITYTYPE._serialized_start=
|
|
263
|
-
_ENTITYTYPE._serialized_end=
|
|
264
|
-
_SHRINKWRAPMODE._serialized_start=
|
|
265
|
-
_SHRINKWRAPMODE._serialized_end=
|
|
262
|
+
_ENTITYTYPE._serialized_start=4802
|
|
263
|
+
_ENTITYTYPE._serialized_end=4885
|
|
264
|
+
_SHRINKWRAPMODE._serialized_start=4887
|
|
265
|
+
_SHRINKWRAPMODE._serialized_end=4943
|
|
266
266
|
_IMPORT._serialized_start=240
|
|
267
267
|
_IMPORT._serialized_end=375
|
|
268
268
|
_CREATE._serialized_start=378
|
|
269
|
-
_CREATE._serialized_end=
|
|
270
|
-
_DELETE._serialized_start=
|
|
271
|
-
_DELETE._serialized_end=
|
|
272
|
-
_BOOLEAN._serialized_start=
|
|
273
|
-
_BOOLEAN._serialized_end=
|
|
274
|
-
_IMPRINT._serialized_start=
|
|
275
|
-
_IMPRINT._serialized_end=
|
|
276
|
-
_IMPRINT_IMPRINTBEHAVIOR._serialized_start=
|
|
277
|
-
_IMPRINT_IMPRINTBEHAVIOR._serialized_end=
|
|
278
|
-
_TRANSFORM._serialized_start=
|
|
279
|
-
_TRANSFORM._serialized_end=
|
|
280
|
-
_SHRINKWRAP._serialized_start=
|
|
281
|
-
_SHRINKWRAP._serialized_end=
|
|
282
|
-
_FARFIELD._serialized_start=
|
|
283
|
-
_FARFIELD._serialized_end=
|
|
284
|
-
_PATTERN._serialized_start=
|
|
285
|
-
_PATTERN._serialized_end=
|
|
286
|
-
_PATTERN_DIRECTION._serialized_start=
|
|
287
|
-
_PATTERN_DIRECTION._serialized_end=
|
|
288
|
-
_PATTERN_DIRECTION_CIRCULAR._serialized_start=
|
|
289
|
-
_PATTERN_DIRECTION_CIRCULAR._serialized_end=
|
|
290
|
-
_CONFIGURATIONS._serialized_start=
|
|
291
|
-
_CONFIGURATIONS._serialized_end=
|
|
292
|
-
_CONFIGURATIONS_CONFIGURATION._serialized_start=
|
|
293
|
-
_CONFIGURATIONS_CONFIGURATION._serialized_end=
|
|
294
|
-
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=
|
|
295
|
-
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=
|
|
296
|
-
_FEATUREISSUES._serialized_start=
|
|
297
|
-
_FEATUREISSUES._serialized_end=
|
|
298
|
-
_FEATURE._serialized_start=
|
|
299
|
-
_FEATURE._serialized_end=
|
|
300
|
-
_CREATEORUPDATETAG._serialized_start=
|
|
301
|
-
_CREATEORUPDATETAG._serialized_end=
|
|
302
|
-
_RENAMETAG._serialized_start=
|
|
303
|
-
_RENAMETAG._serialized_end=
|
|
304
|
-
_DELETETAG._serialized_start=
|
|
305
|
-
_DELETETAG._serialized_end=
|
|
306
|
-
_DELETETAGS._serialized_start=
|
|
307
|
-
_DELETETAGS._serialized_end=
|
|
308
|
-
_MODIFICATION._serialized_start=
|
|
309
|
-
_MODIFICATION._serialized_end=
|
|
310
|
-
_MODIFICATION_MODIFICATIONTYPE._serialized_start=
|
|
311
|
-
_MODIFICATION_MODIFICATIONTYPE._serialized_end=
|
|
312
|
-
_FACE._serialized_start=
|
|
313
|
-
_FACE._serialized_end=
|
|
314
|
-
_BODY._serialized_start=
|
|
315
|
-
_BODY._serialized_end=
|
|
316
|
-
_VOLUME._serialized_start=
|
|
317
|
-
_VOLUME._serialized_end=
|
|
318
|
-
_TAGS._serialized_start=
|
|
319
|
-
_TAGS._serialized_end=
|
|
320
|
-
_TAGS_TAG._serialized_start=
|
|
321
|
-
_TAGS_TAG._serialized_end=
|
|
269
|
+
_CREATE._serialized_end=698
|
|
270
|
+
_DELETE._serialized_start=700
|
|
271
|
+
_DELETE._serialized_end=786
|
|
272
|
+
_BOOLEAN._serialized_start=789
|
|
273
|
+
_BOOLEAN._serialized_end=1048
|
|
274
|
+
_IMPRINT._serialized_start=1051
|
|
275
|
+
_IMPRINT._serialized_end=1213
|
|
276
|
+
_IMPRINT_IMPRINTBEHAVIOR._serialized_start=1157
|
|
277
|
+
_IMPRINT_IMPRINTBEHAVIOR._serialized_end=1213
|
|
278
|
+
_TRANSFORM._serialized_start=1216
|
|
279
|
+
_TRANSFORM._serialized_end=1536
|
|
280
|
+
_SHRINKWRAP._serialized_start=1539
|
|
281
|
+
_SHRINKWRAP._serialized_end=1746
|
|
282
|
+
_FARFIELD._serialized_start=1749
|
|
283
|
+
_FARFIELD._serialized_end=1927
|
|
284
|
+
_PATTERN._serialized_start=1930
|
|
285
|
+
_PATTERN._serialized_end=2307
|
|
286
|
+
_PATTERN_DIRECTION._serialized_start=2032
|
|
287
|
+
_PATTERN_DIRECTION._serialized_end=2307
|
|
288
|
+
_PATTERN_DIRECTION_CIRCULAR._serialized_start=2227
|
|
289
|
+
_PATTERN_DIRECTION_CIRCULAR._serialized_end=2299
|
|
290
|
+
_CONFIGURATIONS._serialized_start=2310
|
|
291
|
+
_CONFIGURATIONS._serialized_end=2578
|
|
292
|
+
_CONFIGURATIONS_CONFIGURATION._serialized_start=2427
|
|
293
|
+
_CONFIGURATIONS_CONFIGURATION._serialized_end=2469
|
|
294
|
+
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2471
|
|
295
|
+
_CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2578
|
|
296
|
+
_FEATUREISSUES._serialized_start=2580
|
|
297
|
+
_FEATUREISSUES._serialized_end=2666
|
|
298
|
+
_FEATURE._serialized_start=2669
|
|
299
|
+
_FEATURE._serialized_end=3275
|
|
300
|
+
_CREATEORUPDATETAG._serialized_start=3277
|
|
301
|
+
_CREATEORUPDATETAG._serialized_end=3341
|
|
302
|
+
_RENAMETAG._serialized_start=3343
|
|
303
|
+
_RENAMETAG._serialized_end=3390
|
|
304
|
+
_DELETETAG._serialized_start=3392
|
|
305
|
+
_DELETETAG._serialized_end=3448
|
|
306
|
+
_DELETETAGS._serialized_start=3450
|
|
307
|
+
_DELETETAGS._serialized_end=3477
|
|
308
|
+
_MODIFICATION._serialized_start=3480
|
|
309
|
+
_MODIFICATION._serialized_end=4298
|
|
310
|
+
_MODIFICATION_MODIFICATIONTYPE._serialized_start=3866
|
|
311
|
+
_MODIFICATION_MODIFICATIONTYPE._serialized_end=4298
|
|
312
|
+
_FACE._serialized_start=4301
|
|
313
|
+
_FACE._serialized_end=4434
|
|
314
|
+
_BODY._serialized_start=4437
|
|
315
|
+
_BODY._serialized_end=4567
|
|
316
|
+
_VOLUME._serialized_start=4569
|
|
317
|
+
_VOLUME._serialized_end=4603
|
|
318
|
+
_TAGS._serialized_start=4606
|
|
319
|
+
_TAGS._serialized_end=4800
|
|
320
|
+
_TAGS_TAG._serialized_start=4664
|
|
321
|
+
_TAGS_TAG._serialized_end=4800
|
|
322
322
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -101,6 +101,7 @@ class Create(google.protobuf.message.Message):
|
|
|
101
101
|
TORUS_FIELD_NUMBER: builtins.int
|
|
102
102
|
CONE_FIELD_NUMBER: builtins.int
|
|
103
103
|
HALF_SPHERE_FIELD_NUMBER: builtins.int
|
|
104
|
+
RESULT_BODY_TAG_FIELD_NUMBER: builtins.int
|
|
104
105
|
@property
|
|
105
106
|
def sphere(self) -> luminarycloud._proto.cad.shape_pb2.Sphere:
|
|
106
107
|
"""Sphere"""
|
|
@@ -119,6 +120,8 @@ class Create(google.protobuf.message.Message):
|
|
|
119
120
|
@property
|
|
120
121
|
def half_sphere(self) -> luminarycloud._proto.cad.shape_pb2.HalfSphere:
|
|
121
122
|
"""Half-sphere"""
|
|
123
|
+
result_body_tag: builtins.str
|
|
124
|
+
"""Add a tag to the resulting body."""
|
|
122
125
|
def __init__(
|
|
123
126
|
self,
|
|
124
127
|
*,
|
|
@@ -128,9 +131,10 @@ class Create(google.protobuf.message.Message):
|
|
|
128
131
|
torus: luminarycloud._proto.cad.shape_pb2.Torus | None = ...,
|
|
129
132
|
cone: luminarycloud._proto.cad.shape_pb2.Cone | None = ...,
|
|
130
133
|
half_sphere: luminarycloud._proto.cad.shape_pb2.HalfSphere | None = ...,
|
|
134
|
+
result_body_tag: builtins.str = ...,
|
|
131
135
|
) -> None: ...
|
|
132
136
|
def HasField(self, field_name: typing_extensions.Literal["box", b"box", "cone", b"cone", "cylinder", b"cylinder", "half_sphere", b"half_sphere", "shape", b"shape", "sphere", b"sphere", "torus", b"torus"]) -> builtins.bool: ...
|
|
133
|
-
def ClearField(self, field_name: typing_extensions.Literal["box", b"box", "cone", b"cone", "cylinder", b"cylinder", "half_sphere", b"half_sphere", "shape", b"shape", "sphere", b"sphere", "torus", b"torus"]) -> None: ...
|
|
137
|
+
def ClearField(self, field_name: typing_extensions.Literal["box", b"box", "cone", b"cone", "cylinder", b"cylinder", "half_sphere", b"half_sphere", "result_body_tag", b"result_body_tag", "shape", b"shape", "sphere", b"sphere", "torus", b"torus"]) -> None: ...
|
|
134
138
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["shape", b"shape"]) -> typing_extensions.Literal["sphere", "box", "cylinder", "torus", "cone", "half_sphere"] | None: ...
|
|
135
139
|
|
|
136
140
|
global___Create = Create
|
|
@@ -140,18 +144,23 @@ class Delete(google.protobuf.message.Message):
|
|
|
140
144
|
|
|
141
145
|
TYPE_FIELD_NUMBER: builtins.int
|
|
142
146
|
IDS_FIELD_NUMBER: builtins.int
|
|
147
|
+
TAGS_FIELD_NUMBER: builtins.int
|
|
143
148
|
type: global___EntityType.ValueType
|
|
144
149
|
"""Type of entities. All entities must be of the same type."""
|
|
145
150
|
@property
|
|
146
151
|
def ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
147
152
|
"""ID of the entities. Must not have repeated fields."""
|
|
153
|
+
@property
|
|
154
|
+
def tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
155
|
+
"""Entity to delete, by tag. Type is still required."""
|
|
148
156
|
def __init__(
|
|
149
157
|
self,
|
|
150
158
|
*,
|
|
151
159
|
type: global___EntityType.ValueType = ...,
|
|
152
160
|
ids: collections.abc.Iterable[builtins.int] | None = ...,
|
|
161
|
+
tags: collections.abc.Iterable[builtins.str] | None = ...,
|
|
153
162
|
) -> None: ...
|
|
154
|
-
def ClearField(self, field_name: typing_extensions.Literal["ids", b"ids", "type", b"type"]) -> None: ...
|
|
163
|
+
def ClearField(self, field_name: typing_extensions.Literal["ids", b"ids", "tags", b"tags", "type", b"type"]) -> None: ...
|
|
155
164
|
|
|
156
165
|
global___Delete = Delete
|
|
157
166
|
|
|
@@ -212,18 +221,23 @@ class Imprint(google.protobuf.message.Message):
|
|
|
212
221
|
|
|
213
222
|
BEHAVIOR_FIELD_NUMBER: builtins.int
|
|
214
223
|
BODY_FIELD_NUMBER: builtins.int
|
|
224
|
+
TAG_FIELD_NUMBER: builtins.int
|
|
215
225
|
behavior: global___Imprint.ImprintBehavior.ValueType
|
|
216
226
|
"""Choose between old or new behavior (all volumes or only selected ones)."""
|
|
217
227
|
@property
|
|
218
228
|
def body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
219
229
|
"""Body IDs. Not used when behavior is IMPRINT_ALL."""
|
|
230
|
+
@property
|
|
231
|
+
def tag(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
232
|
+
"""Body tags. Not used when behavior is IMPRINT_ALL."""
|
|
220
233
|
def __init__(
|
|
221
234
|
self,
|
|
222
235
|
*,
|
|
223
236
|
behavior: global___Imprint.ImprintBehavior.ValueType = ...,
|
|
224
237
|
body: collections.abc.Iterable[builtins.int] | None = ...,
|
|
238
|
+
tag: collections.abc.Iterable[builtins.str] | None = ...,
|
|
225
239
|
) -> None: ...
|
|
226
|
-
def ClearField(self, field_name: typing_extensions.Literal["behavior", b"behavior", "body", b"body"]) -> None: ...
|
|
240
|
+
def ClearField(self, field_name: typing_extensions.Literal["behavior", b"behavior", "body", b"body", "tag", b"tag"]) -> None: ...
|
|
227
241
|
|
|
228
242
|
global___Imprint = Imprint
|
|
229
243
|
|
|
@@ -233,6 +247,7 @@ class Transform(google.protobuf.message.Message):
|
|
|
233
247
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
234
248
|
|
|
235
249
|
BODY_FIELD_NUMBER: builtins.int
|
|
250
|
+
TAG_FIELD_NUMBER: builtins.int
|
|
236
251
|
MATRIX_FIELD_NUMBER: builtins.int
|
|
237
252
|
TRANSLATION_FIELD_NUMBER: builtins.int
|
|
238
253
|
ROTATION_FIELD_NUMBER: builtins.int
|
|
@@ -243,6 +258,9 @@ class Transform(google.protobuf.message.Message):
|
|
|
243
258
|
def body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
244
259
|
"""Body IDs."""
|
|
245
260
|
@property
|
|
261
|
+
def tag(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
262
|
+
"""Body tags."""
|
|
263
|
+
@property
|
|
246
264
|
def matrix(self) -> luminarycloud._proto.cad.transformation_pb2.AugmentedMatrix: ...
|
|
247
265
|
@property
|
|
248
266
|
def translation(self) -> luminarycloud._proto.cad.transformation_pb2.Translation: ...
|
|
@@ -258,6 +276,7 @@ class Transform(google.protobuf.message.Message):
|
|
|
258
276
|
self,
|
|
259
277
|
*,
|
|
260
278
|
body: collections.abc.Iterable[builtins.int] | None = ...,
|
|
279
|
+
tag: collections.abc.Iterable[builtins.str] | None = ...,
|
|
261
280
|
matrix: luminarycloud._proto.cad.transformation_pb2.AugmentedMatrix | None = ...,
|
|
262
281
|
translation: luminarycloud._proto.cad.transformation_pb2.Translation | None = ...,
|
|
263
282
|
rotation: luminarycloud._proto.cad.transformation_pb2.Rotation | None = ...,
|
|
@@ -266,7 +285,7 @@ class Transform(google.protobuf.message.Message):
|
|
|
266
285
|
keep: builtins.bool = ...,
|
|
267
286
|
) -> None: ...
|
|
268
287
|
def HasField(self, field_name: typing_extensions.Literal["matrix", b"matrix", "reflection", b"reflection", "rotation", b"rotation", "scaling", b"scaling", "t", b"t", "translation", b"translation"]) -> builtins.bool: ...
|
|
269
|
-
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "keep", b"keep", "matrix", b"matrix", "reflection", b"reflection", "rotation", b"rotation", "scaling", b"scaling", "t", b"t", "translation", b"translation"]) -> None: ...
|
|
288
|
+
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "keep", b"keep", "matrix", b"matrix", "reflection", b"reflection", "rotation", b"rotation", "scaling", b"scaling", "t", b"t", "tag", b"tag", "translation", b"translation"]) -> None: ...
|
|
270
289
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["t", b"t"]) -> typing_extensions.Literal["matrix", "translation", "rotation", "scaling", "reflection"] | None: ...
|
|
271
290
|
|
|
272
291
|
global___Transform = Transform
|
|
@@ -277,7 +296,9 @@ class Shrinkwrap(google.protobuf.message.Message):
|
|
|
277
296
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
278
297
|
|
|
279
298
|
BODY_FIELD_NUMBER: builtins.int
|
|
299
|
+
TAG_BODY_FIELD_NUMBER: builtins.int
|
|
280
300
|
TOOL_FIELD_NUMBER: builtins.int
|
|
301
|
+
TAG_TOOL_FIELD_NUMBER: builtins.int
|
|
281
302
|
MODE_FIELD_NUMBER: builtins.int
|
|
282
303
|
RESOLUTION_MIN_FIELD_NUMBER: builtins.int
|
|
283
304
|
RESOLUTION_MAX_FIELD_NUMBER: builtins.int
|
|
@@ -286,8 +307,14 @@ class Shrinkwrap(google.protobuf.message.Message):
|
|
|
286
307
|
def body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
287
308
|
"""Bodies to shrinkwrap together."""
|
|
288
309
|
@property
|
|
310
|
+
def tag_body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
311
|
+
"""Bodies to shrinkwrap together, by tag."""
|
|
312
|
+
@property
|
|
289
313
|
def tool(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
290
314
|
"""Bodies to subtract from the shrinkwrap body."""
|
|
315
|
+
@property
|
|
316
|
+
def tag_tool(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
317
|
+
"""Bodies to subtract from the shrinkwrap body, by tag."""
|
|
291
318
|
mode: global___ShrinkwrapMode.ValueType
|
|
292
319
|
"""Mode of shrinkwrap."""
|
|
293
320
|
resolution_min: builtins.float
|
|
@@ -300,13 +327,15 @@ class Shrinkwrap(google.protobuf.message.Message):
|
|
|
300
327
|
self,
|
|
301
328
|
*,
|
|
302
329
|
body: collections.abc.Iterable[builtins.int] | None = ...,
|
|
330
|
+
tag_body: collections.abc.Iterable[builtins.str] | None = ...,
|
|
303
331
|
tool: collections.abc.Iterable[builtins.int] | None = ...,
|
|
332
|
+
tag_tool: collections.abc.Iterable[builtins.str] | None = ...,
|
|
304
333
|
mode: global___ShrinkwrapMode.ValueType = ...,
|
|
305
334
|
resolution_min: builtins.float = ...,
|
|
306
335
|
resolution_max: builtins.float = ...,
|
|
307
336
|
resolution_uniform: builtins.float = ...,
|
|
308
337
|
) -> None: ...
|
|
309
|
-
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "mode", b"mode", "resolution_max", b"resolution_max", "resolution_min", b"resolution_min", "resolution_uniform", b"resolution_uniform", "tool", b"tool"]) -> None: ...
|
|
338
|
+
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "mode", b"mode", "resolution_max", b"resolution_max", "resolution_min", b"resolution_min", "resolution_uniform", b"resolution_uniform", "tag_body", b"tag_body", "tag_tool", b"tag_tool", "tool", b"tool"]) -> None: ...
|
|
310
339
|
|
|
311
340
|
global___Shrinkwrap = Shrinkwrap
|
|
312
341
|
|
|
@@ -319,6 +348,7 @@ class Farfield(google.protobuf.message.Message):
|
|
|
319
348
|
|
|
320
349
|
CREATE_FIELD_NUMBER: builtins.int
|
|
321
350
|
BODIES_FIELD_NUMBER: builtins.int
|
|
351
|
+
TAG_BODIES_FIELD_NUMBER: builtins.int
|
|
322
352
|
KEEP_SOURCE_BODIES_FIELD_NUMBER: builtins.int
|
|
323
353
|
KEEP_TOOL_BODIES_FIELD_NUMBER: builtins.int
|
|
324
354
|
PROPAGATE_TOOL_TAGS_FIELD_NUMBER: builtins.int
|
|
@@ -327,8 +357,13 @@ class Farfield(google.protobuf.message.Message):
|
|
|
327
357
|
"""Shape that will act as tool body in the farfield subtraction boolean."""
|
|
328
358
|
@property
|
|
329
359
|
def bodies(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
330
|
-
"""Bodies to be subtracted from create body.
|
|
331
|
-
bodies are
|
|
360
|
+
"""Bodies to be subtracted from create body.
|
|
361
|
+
If both "bodies" and "tag_bodies" are empty, all bodies will be subtracted.
|
|
362
|
+
"""
|
|
363
|
+
@property
|
|
364
|
+
def tag_bodies(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
365
|
+
"""Bodies to be subtracted from create body, by tag.
|
|
366
|
+
If both "bodies" and "tag_bodies" are empty, all bodies will be subtracted.
|
|
332
367
|
"""
|
|
333
368
|
keep_source_bodies: builtins.bool
|
|
334
369
|
keep_tool_bodies: builtins.bool
|
|
@@ -339,12 +374,13 @@ class Farfield(google.protobuf.message.Message):
|
|
|
339
374
|
*,
|
|
340
375
|
create: global___Create | None = ...,
|
|
341
376
|
bodies: collections.abc.Iterable[builtins.int] | None = ...,
|
|
377
|
+
tag_bodies: collections.abc.Iterable[builtins.str] | None = ...,
|
|
342
378
|
keep_source_bodies: builtins.bool = ...,
|
|
343
379
|
keep_tool_bodies: builtins.bool = ...,
|
|
344
380
|
propagate_tool_tags: builtins.bool = ...,
|
|
345
381
|
) -> None: ...
|
|
346
382
|
def HasField(self, field_name: typing_extensions.Literal["create", b"create"]) -> builtins.bool: ...
|
|
347
|
-
def ClearField(self, field_name: typing_extensions.Literal["bodies", b"bodies", "create", b"create", "keep_source_bodies", b"keep_source_bodies", "keep_tool_bodies", b"keep_tool_bodies", "propagate_tool_tags", b"propagate_tool_tags"]) -> None: ...
|
|
383
|
+
def ClearField(self, field_name: typing_extensions.Literal["bodies", b"bodies", "create", b"create", "keep_source_bodies", b"keep_source_bodies", "keep_tool_bodies", b"keep_tool_bodies", "propagate_tool_tags", b"propagate_tool_tags", "tag_bodies", b"tag_bodies"]) -> None: ...
|
|
348
384
|
|
|
349
385
|
global___Farfield = Farfield
|
|
350
386
|
|
|
@@ -406,21 +442,26 @@ class Pattern(google.protobuf.message.Message):
|
|
|
406
442
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["type", b"type"]) -> typing_extensions.Literal["linear_spacing", "circular_distribution"] | None: ...
|
|
407
443
|
|
|
408
444
|
BODY_FIELD_NUMBER: builtins.int
|
|
445
|
+
TAG_FIELD_NUMBER: builtins.int
|
|
409
446
|
DIRECTION_FIELD_NUMBER: builtins.int
|
|
410
447
|
@property
|
|
411
448
|
def body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
412
449
|
"""Body IDs."""
|
|
413
450
|
@property
|
|
451
|
+
def tag(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
452
|
+
"""Body tags."""
|
|
453
|
+
@property
|
|
414
454
|
def direction(self) -> global___Pattern.Direction:
|
|
415
455
|
"""Directions of the pattern."""
|
|
416
456
|
def __init__(
|
|
417
457
|
self,
|
|
418
458
|
*,
|
|
419
459
|
body: collections.abc.Iterable[builtins.int] | None = ...,
|
|
460
|
+
tag: collections.abc.Iterable[builtins.str] | None = ...,
|
|
420
461
|
direction: global___Pattern.Direction | None = ...,
|
|
421
462
|
) -> None: ...
|
|
422
463
|
def HasField(self, field_name: typing_extensions.Literal["direction", b"direction"]) -> builtins.bool: ...
|
|
423
|
-
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "direction", b"direction"]) -> None: ...
|
|
464
|
+
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "direction", b"direction", "tag", b"tag"]) -> None: ...
|
|
424
465
|
|
|
425
466
|
global___Pattern = Pattern
|
|
426
467
|
|
|
@@ -435,14 +476,20 @@ class Configurations(google.protobuf.message.Message):
|
|
|
435
476
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
436
477
|
|
|
437
478
|
BODY_FIELD_NUMBER: builtins.int
|
|
479
|
+
TAG_FIELD_NUMBER: builtins.int
|
|
480
|
+
@property
|
|
481
|
+
def body(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
482
|
+
"""Body IDs."""
|
|
438
483
|
@property
|
|
439
|
-
def
|
|
484
|
+
def tag(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
485
|
+
"""Body tags."""
|
|
440
486
|
def __init__(
|
|
441
487
|
self,
|
|
442
488
|
*,
|
|
443
489
|
body: collections.abc.Iterable[builtins.int] | None = ...,
|
|
490
|
+
tag: collections.abc.Iterable[builtins.str] | None = ...,
|
|
444
491
|
) -> None: ...
|
|
445
|
-
def ClearField(self, field_name: typing_extensions.Literal["body", b"body"]) -> None: ...
|
|
492
|
+
def ClearField(self, field_name: typing_extensions.Literal["body", b"body", "tag", b"tag"]) -> None: ...
|
|
446
493
|
|
|
447
494
|
class ConfigurationEntry(google.protobuf.message.Message):
|
|
448
495
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -18,7 +18,7 @@ from luminarycloud._proto.cad import shape_pb2 as proto_dot_cad_dot_shape__pb2
|
|
|
18
18
|
from luminarycloud._proto.options import options_pb2 as proto_dot_options_dot_options__pb2
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bproto/hexmesh/hexmesh.proto\x12\x16luminary.proto.hexmesh\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/options/options.proto\"
|
|
21
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bproto/hexmesh/hexmesh.proto\x12\x16luminary.proto.hexmesh\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/options/options.proto\"{\n\x0fRefinementLevel\x12&\n\x08\x64istance\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00H\x00\x88\x01\x01\x12#\n\x05level\x18\x03 \x01(\x05\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x01\x88\x01\x01\x42\x0b\n\t_distanceB\x08\n\x06_levelJ\x04\x08\x02\x10\x03\"\x8e\x01\n\x0eRefinementSpec\x12\x42\n\x11refinement_levels\x18\x01 \x03(\x0b\x32\'.luminary.proto.hexmesh.RefinementLevel\x12\x38\n\x04mode\x18\x02 \x01(\x0e\x32*.luminary.proto.hexmesh.RefinementSpecMode\"\'\n\nOutputInfo\x12\x19\n\x11output_lcmesh_url\x18\x01 \x01(\t\"j\n\x0e\x42\x61\x63kgroundMesh\x12(\n\x04\x63ube\x18\x01 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x0b\n\x03n_x\x18\x08 \x01(\x05\x12\x0b\n\x03n_y\x18\t \x01(\x05\x12\x0b\n\x03n_z\x18\n \x01(\x05\x42\x07\n\x05shape\"\xae\x01\n\x12RefinementSurfaces\x12\x32\n\x14refinement_min_level\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x00\x88\x01\x01\x12\x32\n\x14refinement_max_level\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x01\x88\x01\x01\x42\x17\n\x15_refinement_min_levelB\x17\n\x15_refinement_max_level\"\x88\x05\n\x17\x43\x61stellatedMeshControls\x12(\n\x10max_global_cells\x18\x01 \x01(\x05\x42\t\x82\xb2\x19\x05\x30\x80\x84\xaf_H\x00\x88\x01\x01\x12)\n\x14min_refinement_cells\x18\x02 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x64H\x01\x88\x01\x01\x12+\n\x16n_cells_between_levels\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x02\x88\x01\x01\x12\x33\n\x15resolve_feature_angle\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x03\x88\x01\x01\x12\x36\n\x10location_in_mesh\x18\x05 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12N\n\x1aglobal_refinement_surfaces\x18\x06 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces\x12\x64\n\x13refinement_surfaces\x18\t \x03(\x0b\x32G.luminary.proto.hexmesh.CastellatedMeshControls.RefinementSurfacesEntry\x1a\x65\n\x17RefinementSurfacesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces:\x02\x38\x01\x42\x13\n\x11_max_global_cellsB\x17\n\x15_min_refinement_cellsB\x19\n\x17_n_cells_between_levelsB\x18\n\x16_resolve_feature_angle\"\x8e\x01\n\x0c\x46\x65\x61tureEdges\x12+\n\rfeature_angle\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00>@H\x00\x88\x01\x01\x12?\n\x0frefinement_spec\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x10\n\x0e_feature_angle\"\xa7\x02\n\x0cSnapControls\x12#\n\x0en_smooth_patch\x18\x01 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x00\x88\x01\x01\x12\'\n\ttolerance\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x10@H\x01\x88\x01\x01\x12!\n\x0cn_solve_iter\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x02\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x04 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x05H\x03\x88\x01\x01\x12(\n\x13n_feature_snap_iter\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x04\x88\x01\x01\x42\x11\n\x0f_n_smooth_patchB\x0c\n\n_toleranceB\x0f\n\r_n_solve_iterB\x0f\n\r_n_relax_iterB\x16\n\x14_n_feature_snap_iter\"\xdb\n\n\x11\x41\x64\x64LayersControls\x12#\n\x0erelative_sizes\x18\x01 \x01(\x08\x42\x06\x82\xb2\x19\x02(\x01H\x00\x88\x01\x01\x12-\n\x0f\x65xpansion_ratio\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf4?H\x01\x88\x01\x01\x12\x33\n\x15\x66inal_layer_thickness\x18\x03 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x02\x88\x01\x01\x12+\n\rmin_thickness\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?H\x03\x88\x01\x01\x12\x1b\n\x06n_grow\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x04\x88\x01\x01\x12+\n\rfeature_angle\x18\x06 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x05\x88\x01\x01\x12\x30\n\x12slip_feature_angle\x18\x07 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x06\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x08 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x07\x88\x01\x01\x12-\n\x18n_smooth_surface_normals\x18\t \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x08\x88\x01\x01\x12%\n\x10n_smooth_normals\x18\n \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\t\x88\x01\x01\x12\'\n\x12n_smooth_thickness\x18\x0b \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\n\x88\x01\x01\x12\x36\n\x18max_face_thickness_ratio\x18\x0c \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?H\x0b\x88\x01\x01\x12;\n\x1dmax_thickness_to_medial_ratio\x18\r \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x0c\x88\x01\x01\x12\x33\n\x15min_medial_axis_angle\x18\x0e \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x80V@H\r\x88\x01\x01\x12.\n\x19n_buffer_cells_no_extrude\x18\x0f \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x0e\x88\x01\x01\x12!\n\x0cn_layer_iter\x18\x10 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x0f\x88\x01\x01\x12,\n\x17global_n_surface_layers\x18\x11 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x10\x88\x01\x01\x12W\n\x10n_surface_layers\x18\x12 \x03(\x0b\x32=.luminary.proto.hexmesh.AddLayersControls.NSurfaceLayersEntry\x12!\n\x0cn_outer_iter\x18\x13 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x11\x88\x01\x01\x1a\x35\n\x13NSurfaceLayersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x42\x11\n\x0f_relative_sizesB\x12\n\x10_expansion_ratioB\x18\n\x16_final_layer_thicknessB\x10\n\x0e_min_thicknessB\t\n\x07_n_growB\x10\n\x0e_feature_angleB\x15\n\x13_slip_feature_angleB\x0f\n\r_n_relax_iterB\x1b\n\x19_n_smooth_surface_normalsB\x13\n\x11_n_smooth_normalsB\x15\n\x13_n_smooth_thicknessB\x1b\n\x19_max_face_thickness_ratioB \n\x1e_max_thickness_to_medial_ratioB\x18\n\x16_min_medial_axis_angleB\x1c\n\x1a_n_buffer_cells_no_extrudeB\x0f\n\r_n_layer_iterB\x1a\n\x18_global_n_surface_layersB\x0f\n\r_n_outer_iter\"\xa6\x01\n\x16RefinementRegionParams\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12(\n\x04\x63ube\x18\x03 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12?\n\x0frefinement_spec\x18\x04 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x07\n\x05shape\"\xdc\x04\n\x15OpenfoamMeshShmConfig\x12G\n\x14global_feature_edges\x18\x01 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdgesH\x00\x88\x01\x01\x12V\n\rfeature_edges\x18\x05 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshShmConfig.FeatureEdgesEntry\x12W\n\x19\x63\x61stellated_mesh_controls\x18\x02 \x01(\x0b\x32/.luminary.proto.hexmesh.CastellatedMeshControlsH\x01\x88\x01\x01\x12@\n\rsnap_controls\x18\x03 \x01(\x0b\x32$.luminary.proto.hexmesh.SnapControlsH\x02\x88\x01\x01\x12K\n\x13\x61\x64\x64_layers_controls\x18\x04 \x01(\x0b\x32).luminary.proto.hexmesh.AddLayersControlsH\x03\x88\x01\x01\x1aY\n\x11\x46\x65\x61tureEdgesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdges:\x02\x38\x01\x42\x17\n\x15_global_feature_edgesB\x1c\n\x1a_castellated_mesh_controlsB\x10\n\x0e_snap_controlsB\x16\n\x14_add_layers_controls\"\xc9\x05\n\x12OpenfoamMeshConfig\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x03 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12o\n\x1crefinement_regions_from_stls\x18\x08 \x03(\x0b\x32I.luminary.proto.hexmesh.OpenfoamMeshConfig.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x04 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12\x37\n\x0boutput_info\x18\x05 \x01(\x0b\x32\".luminary.proto.hexmesh.OutputInfo\x12\x0f\n\x07mesh_id\x18\x06 \x01(\t\x12[\n\x12names_to_file_urls\x18\x07 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshConfig.NamesToFileUrlsEntry\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshJ\x04\x08\x01\x10\x02\"\xf8\x04\n\x0bHexMeshSpec\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x03 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x04 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12h\n\x1crefinement_regions_from_stls\x18\x07 \x03(\x0b\x32\x42.luminary.proto.hexmesh.HexMeshSpec.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x05 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12T\n\x12names_to_file_urls\x18\x06 \x03(\x0b\x32\x38.luminary.proto.hexmesh.HexMeshSpec.NamesToFileUrlsEntry\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshJ\x04\x08\x01\x10\x02*~\n\x12RefinementSpecMode\x12$\n REFINEMENT_SPEC_MODE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bREFINEMENT_SPEC_MODE_INSIDE\x10\x01\x12!\n\x1dREFINEMENT_SPEC_MODE_DISTANCE\x10\x02\x42&Z$luminarycloud.com/core/proto/hexmeshb\x06proto3')
|
|
22
22
|
|
|
23
23
|
_REFINEMENTSPECMODE = DESCRIPTOR.enum_types_by_name['RefinementSpecMode']
|
|
24
24
|
RefinementSpecMode = enum_type_wrapper.EnumTypeWrapper(_REFINEMENTSPECMODE)
|
|
@@ -276,46 +276,46 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
276
276
|
_HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_options = b'8\001'
|
|
277
277
|
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._options = None
|
|
278
278
|
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_options = b'8\001'
|
|
279
|
-
_REFINEMENTSPECMODE._serialized_start=
|
|
280
|
-
_REFINEMENTSPECMODE._serialized_end=
|
|
279
|
+
_REFINEMENTSPECMODE._serialized_start=5321
|
|
280
|
+
_REFINEMENTSPECMODE._serialized_end=5447
|
|
281
281
|
_REFINEMENTLEVEL._serialized_start=130
|
|
282
|
-
_REFINEMENTLEVEL._serialized_end=
|
|
283
|
-
_REFINEMENTSPEC._serialized_start=
|
|
284
|
-
_REFINEMENTSPEC._serialized_end=
|
|
285
|
-
_OUTPUTINFO._serialized_start=
|
|
286
|
-
_OUTPUTINFO._serialized_end=
|
|
287
|
-
_BACKGROUNDMESH._serialized_start=
|
|
288
|
-
_BACKGROUNDMESH._serialized_end=
|
|
289
|
-
_REFINEMENTSURFACES._serialized_start=
|
|
290
|
-
_REFINEMENTSURFACES._serialized_end=
|
|
291
|
-
_CASTELLATEDMESHCONTROLS._serialized_start=
|
|
292
|
-
_CASTELLATEDMESHCONTROLS._serialized_end=
|
|
293
|
-
_CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_start=
|
|
294
|
-
_CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_end=
|
|
295
|
-
_FEATUREEDGES._serialized_start=
|
|
296
|
-
_FEATUREEDGES._serialized_end=
|
|
297
|
-
_SNAPCONTROLS._serialized_start=
|
|
298
|
-
_SNAPCONTROLS._serialized_end=
|
|
299
|
-
_ADDLAYERSCONTROLS._serialized_start=
|
|
300
|
-
_ADDLAYERSCONTROLS._serialized_end=
|
|
301
|
-
_ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_start=
|
|
302
|
-
_ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_end=
|
|
303
|
-
_REFINEMENTREGIONPARAMS._serialized_start=
|
|
304
|
-
_REFINEMENTREGIONPARAMS._serialized_end=
|
|
305
|
-
_OPENFOAMMESHSHMCONFIG._serialized_start=
|
|
306
|
-
_OPENFOAMMESHSHMCONFIG._serialized_end=
|
|
307
|
-
_OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_start=
|
|
308
|
-
_OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_end=
|
|
309
|
-
_OPENFOAMMESHCONFIG._serialized_start=
|
|
310
|
-
_OPENFOAMMESHCONFIG._serialized_end=
|
|
311
|
-
_OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=
|
|
312
|
-
_OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=
|
|
313
|
-
_OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_start=
|
|
314
|
-
_OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_end=
|
|
315
|
-
_HEXMESHSPEC._serialized_start=
|
|
316
|
-
_HEXMESHSPEC._serialized_end=
|
|
317
|
-
_HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=
|
|
318
|
-
_HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=
|
|
319
|
-
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_start=
|
|
320
|
-
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_end=
|
|
282
|
+
_REFINEMENTLEVEL._serialized_end=253
|
|
283
|
+
_REFINEMENTSPEC._serialized_start=256
|
|
284
|
+
_REFINEMENTSPEC._serialized_end=398
|
|
285
|
+
_OUTPUTINFO._serialized_start=400
|
|
286
|
+
_OUTPUTINFO._serialized_end=439
|
|
287
|
+
_BACKGROUNDMESH._serialized_start=441
|
|
288
|
+
_BACKGROUNDMESH._serialized_end=547
|
|
289
|
+
_REFINEMENTSURFACES._serialized_start=550
|
|
290
|
+
_REFINEMENTSURFACES._serialized_end=724
|
|
291
|
+
_CASTELLATEDMESHCONTROLS._serialized_start=727
|
|
292
|
+
_CASTELLATEDMESHCONTROLS._serialized_end=1375
|
|
293
|
+
_CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_start=1175
|
|
294
|
+
_CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_end=1276
|
|
295
|
+
_FEATUREEDGES._serialized_start=1378
|
|
296
|
+
_FEATUREEDGES._serialized_end=1520
|
|
297
|
+
_SNAPCONTROLS._serialized_start=1523
|
|
298
|
+
_SNAPCONTROLS._serialized_end=1818
|
|
299
|
+
_ADDLAYERSCONTROLS._serialized_start=1821
|
|
300
|
+
_ADDLAYERSCONTROLS._serialized_end=3192
|
|
301
|
+
_ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_start=2733
|
|
302
|
+
_ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_end=2786
|
|
303
|
+
_REFINEMENTREGIONPARAMS._serialized_start=3195
|
|
304
|
+
_REFINEMENTREGIONPARAMS._serialized_end=3361
|
|
305
|
+
_OPENFOAMMESHSHMCONFIG._serialized_start=3364
|
|
306
|
+
_OPENFOAMMESHSHMCONFIG._serialized_end=3968
|
|
307
|
+
_OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_start=3782
|
|
308
|
+
_OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_end=3871
|
|
309
|
+
_OPENFOAMMESHCONFIG._serialized_start=3971
|
|
310
|
+
_OPENFOAMMESHCONFIG._serialized_end=4684
|
|
311
|
+
_OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4488
|
|
312
|
+
_OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4592
|
|
313
|
+
_OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_start=4594
|
|
314
|
+
_OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_end=4648
|
|
315
|
+
_HEXMESHSPEC._serialized_start=4687
|
|
316
|
+
_HEXMESHSPEC._serialized_end=5319
|
|
317
|
+
_HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4488
|
|
318
|
+
_HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4592
|
|
319
|
+
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_start=4594
|
|
320
|
+
_HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_end=4648
|
|
321
321
|
# @@protoc_insertion_point(module_scope)
|