luminarycloud 0.13.0__py3-none-any.whl → 0.14.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/_helpers/cond.py +262 -165
- luminarycloud/_helpers/defaults.py +3 -3
- luminarycloud/_helpers/download.py +12 -1
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +69 -47
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +45 -1
- 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 +86 -65
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +38 -1
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +33 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +12 -12
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +5 -1
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.py +2 -1
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.pyi +6 -2
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +14 -14
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +5 -1
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +170 -85
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +215 -10
- luminarycloud/_proto/assistant/assistant_pb2.py +177 -21
- luminarycloud/_proto/assistant/assistant_pb2.pyi +380 -7
- luminarycloud/_proto/client/simulation_pb2.py +705 -521
- luminarycloud/_proto/client/simulation_pb2.pyi +552 -35
- luminarycloud/_proto/geometry/geometry_pb2.py +74 -40
- luminarycloud/_proto/geometry/geometry_pb2.pyi +68 -4
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +321 -0
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +648 -0
- luminarycloud/_proto/options/options_pb2.py +9 -5
- luminarycloud/_proto/options/options_pb2.pyi +4 -0
- luminarycloud/_proto/output/reference_values_pb2.py +22 -5
- luminarycloud/_proto/output/reference_values_pb2.pyi +1 -1
- luminarycloud/_proto/quantity/quantity_options_pb2.py +28 -4
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +58 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +162 -159
- luminarycloud/_proto/quantity/quantity_pb2.pyi +2 -0
- luminarycloud/enum/vis_enums.py +82 -2
- luminarycloud/geometry.py +22 -5
- luminarycloud/meshing/mesh_generation_params.py +8 -2
- luminarycloud/params/__init__.py +1 -2
- luminarycloud/params/enum/_enum_wrappers.py +1184 -3
- luminarycloud/params/outputs/output.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/__init__.py +15 -14
- luminarycloud/params/{param_wrappers → simulation}/_lib.py +2 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement/boundary_layer_profile_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adjoint_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/gravity_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/gravity_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/body_frame_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/volume_material_relationship_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/volume_physics_relationship_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/general_.py +8 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/boussinesq_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/boussinesq_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/ideal_gas_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/incompressible_fluid_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/incompressible_fluid_with_energy_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/prescribed_conductivity_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/prescribed_prandtl_number_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/temperature_dependent_conductivity_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/prescribed_viscosity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/sutherland_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/temperature_dependent_viscosity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/material_fluid_.py +32 -40
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/material_solid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material_entity_.py +6 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/monitor_plane_.py +10 -5
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/no_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/rotational_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/translational_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/constant_angular_motion_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/constant_translation_motion_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data_.py +16 -20
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/multi_physics_coupling_options_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/output_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_normal_vector_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_rotation_angles_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection_.py +2 -2
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk_.py +49 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_line_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/probe_points_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/source_points_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group_.py +20 -17
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/adjoint_controls_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/basic_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/__init__.py +3 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/farfield_.py +111 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/__init__.py +4 -3
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +4 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +55 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/velocity_components_inlet_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +8 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet_.py +104 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/fan_curve_outlet_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_pressure_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_corrected_mass_flow_rate_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_mass_flow_rate_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet_.py +14 -14
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/symmetry_.py +4 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/turbulence_boundary_conditions_.py +50 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/prescribed_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/prescribed_temperature_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/no_slip_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/slip_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/wall_model_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/wall_energy_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/wall_momentum_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall_.py +18 -18
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions_fluid_.py +9 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization/__init__.py +1 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization/fluid_existing_solution_.py +4 -6
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_farfield_values_.py +65 -0
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_prescribed_values_.py +77 -0
- luminarycloud/params/simulation/physics/fluid/initialization/turbulence_initialization_.py +44 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/blade_element_airfoil_data_.py +12 -8
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_blade_element_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_radial_distribution_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_uniform_thrust_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/fan_curve_internal_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model/actuator_line_blade_element_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/blade_element_params_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_acceleration_source_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_mass_source_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior_.py +34 -29
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/porous_behavior_.py +14 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_explicit_relaxation_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py +16 -16
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/cfl_based_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/fixed_pseudo_time_step_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls_fluid_.py +14 -14
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/ec2_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/fds_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/ld2_.py +6 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/rhie_chow_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/first_order_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/second_order_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization_fluid_.py +20 -18
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/ddes_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/ddes_vtm_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/iddes_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/custom_komega_sst_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/default_komega_sst_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/komega_sst_constants_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst_.py +10 -12
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/custom_spalart_allmaras_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/default_spalart_allmaras_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/spalart_allmaras_constants_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras_.py +10 -12
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/amd_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/sigma_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/smagorinsky_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/vreman_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/wale_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence_.py +22 -32
- luminarycloud/params/simulation/physics/fluid_.py +233 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/adjoint_controls_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_convection_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_integrated_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_symmetry_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_temperature_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions_heat_.py +9 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/heat_source_type_power_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/heat_source_type_power_per_unit_of_volume_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source_.py +20 -17
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/heat_existing_solution_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/heat_prescribed_values_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method/heat_implicit_relaxation_.py +10 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls_heat_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/spatial_discretization_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat_.py +33 -42
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +5 -7
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/translational_periodicity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair_.py +8 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/gauss_seidel_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/krylov_amg_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics_.py +6 -6
- luminarycloud/params/{param_wrappers → simulation}/simulation_param_.py +34 -40
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/sliding_interfaces_.py +10 -5
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/surface_name_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/compute_statistics_off_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/compute_statistics_on_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/time_explicit_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/time_implicit_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/time_step_ramp_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/time_step_ramp_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time_.py +20 -30
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/volume_entity_.py +2 -2
- luminarycloud/project.py +63 -7
- luminarycloud/reference_values.py +1 -1
- luminarycloud/simulation.py +13 -2
- luminarycloud/simulation_param.py +8 -8
- luminarycloud/solution.py +7 -1
- luminarycloud/types/vector3.py +28 -2
- luminarycloud/vis/__init__.py +6 -1
- luminarycloud/vis/display.py +101 -51
- luminarycloud/vis/filters.py +384 -15
- luminarycloud/vis/interactive_scene.py +46 -23
- luminarycloud/vis/visualization.py +204 -58
- {luminarycloud-0.13.0.dist-info → luminarycloud-0.14.0.dist-info}/METADATA +1 -2
- luminarycloud-0.14.0.dist-info/RECORD +466 -0
- luminarycloud/params/param_wrappers/__init__.py +0 -2
- luminarycloud/params/param_wrappers/simulation_param/particle_group/particle_group_type/actuator_disk_.py +0 -51
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/farfield_.py +0 -197
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/inlet_.py +0 -189
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/__init__.py +0 -5
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_komega_variables_.py +0 -37
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_turbulent_viscosity_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_turbulent_viscosity_ratio_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega_boundary_conditions_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/__init__.py +0 -3
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_sa_variable_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_turbulent_viscosity_ratio_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_turbulent_viscosity_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras_boundary_conditions_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence_boundary_conditions_.py +0 -65
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/fluid_farfield_values_.py +0 -173
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/fluid_prescribed_values_.py +0 -185
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/__init__.py +0 -5
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_farfield_values_komega_.py +0 -30
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_turbulent_viscosity_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_turbulent_viscosity_ratio_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega_initialization_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_farfield_values_sa_.py +0 -30
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_sa_variable_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_turbulent_viscosity_ratio_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_turbulent_viscosity_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras_initialization_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence_initialization_.py +0 -69
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid_.py +0 -438
- luminarycloud-0.13.0.dist-info/RECORD +0 -487
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/__init__.py +3 -3
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/__init__.py +8 -8
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/__init__.py +1 -1
- {luminarycloud-0.13.0.dist-info → luminarycloud-0.14.0.dist-info}/WHEEL +0 -0
|
@@ -21,8 +21,44 @@ from luminarycloud._proto.output import output_pb2 as proto_dot_output_dot_outpu
|
|
|
21
21
|
from luminarycloud._proto.table import table_pb2 as proto_dot_table_dot_table__pb2
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/client/simulation.proto\x12\x15luminary.proto.client\x1a\x15proto/base/base.proto\x1a#proto/entitygroup/entitygroup.proto\x1a\x19proto/client/entity.proto\x1a\x1bproto/options/options.proto\x1a\x19proto/output/output.proto\x1a\x17proto/table/table.proto\"s\n\x05Input\x12\x0c\n\x03url\x18\xe6Q \x01(\t\x12\x12\n\x08\x66ilename\x18\xf5\xf2\x03 \x01(\t\x12H\n\x0fmesh_identifier\x18\xca\xac\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x04\xa0\xb2\x19\x01\"\xa4\x19\n\rMaterialFluid\x12o\n\x12reference_pressure\x18\x82\xef\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12T\n\x14\x64\x65nsity_relationship\x18\xa4\xd3\x02 \x01(\x0e\x32*.luminary.proto.client.DensityRelationshipB\x08\x82\xb2\x19\x04 \xec\xa4\x02\x12\x97\x01\n\x10molecular_weight\x18\x91\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\xf6(\\\x8f\xc2\xf5<@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\x12\x89\x02\n\x16\x63onstant_density_value\x18\x8d\xf3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc4\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xf3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x90\x01\x12\x8d\x01\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xd4\x01\n\x10specific_heat_cp\x18\xdd\x94\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\xb4\xc8v\xbe\x9f\x65\x8f@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xc8\x01\n\x1claminar_thermal_conductivity\x18\xfbm \x01(\x0e\x32\x31.luminary.proto.client.LaminarThermalConductivityBn\x82\xb2\x19\x04 \xb1\xeb\x02\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xd3\x01\n)laminar_constant_thermal_prandtl_constant\x18\xa7H \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB}\x82\xb2\x19\x0b\n\t\t\n\xd7\xa3p=\n\xe7?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19J\x1aH\nF\nD\x08\xb1\xeb\x02\x12 LAMINAR_CONSTANT_THERMAL_PRANDTL\x1a\x1claminar_thermal_conductivity\x12\xdf\x01\n.laminar_constant_thermal_conductivity_constant\x18\xa2\xcb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x82\x01\x82\xb2\x19\x0b\n\t\tp_\x07\xce\x19Q\x9a?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19O\x12M\nK\nI\x08\xb5\xb4\x02\x12%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x12\x8d\x01\n\x1fthermal_conductivity_table_data\x18\xb9\xaf\x02 \x01(\tBb\x92\xb2\x19P\nN\x08\xef\xa9\x02\x12*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x9a\xb2\x19\n\n\x02\x08\x03\x12\x04\x08\xf0\xd8\x02\x12\xb6\x01\n\x18\x62oussinesq_approximation\x18\xfe\xc3\x01 \x01(\x0e\x32..luminary.proto.client.BoussinesqApproximationBb\x82\xb2\x19\x04 \x91\xcb\x01\x92\xb2\x19V\x1aT\n\x1b\n\x19\x08\x9c\xe2\x03\x12\nGRAVITY_ON\x1a\x07gravity\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xa3\x01\n\x13\x62oussinesq_temp_ref\x18\xc8\xaa\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19/\n-\x08\x91\xcb\x01\x12\rBOUSSINESQ_ON\x1a\x18\x62oussinesq_approximation\x12\xac\x01\n\x1dthermal_expansion_coefficient\x18\x8d\x32 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\x82\xb2\x19\x0b\n\t\ty\xe9&1\x08\xacl?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19/\n-\x08\x91\xcb\x01\x12\rBOUSSINESQ_ON\x1a\x18\x62oussinesq_approximation\x12U\n\x15material_fluid_preset\x18\xaa\xd0\x03 \x01(\x0e\x32*.luminary.proto.client.MaterialFluidPresetB\x08\x82\xb2\x19\x04 \xcc\xfd\x01\x12l\n!laminar_viscosity_model_newtonian\x18\x94\xfa\x02 \x01(\x0e\x32\x35.luminary.proto.client.LaminarViscosityModelNewtonianB\x08\x82\xb2\x19\x04 \x8b\x9c\x02\x12\xae\x01\n\x18sutherland_viscosity_ref\x18\xce\xbd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBh\x82\xb2\x19\x0b\n\t\t~\xad\x85\x38Z\xfe\xf1>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xb3\x01\n\x1dsutherland_viscosity_temp_ref\x18\xb9\xc1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBh\x82\xb2\x19\x0b\n\t\tfffff\x12q@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xa9\x01\n\x13sutherland_constant\x18\xfd\xf4\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBh\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99[@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xc8\x01\n#laminar_constant_viscosity_constant\x18\xd6\xfb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBw\x82\xb2\x19\x0b\n\t\t\xeb*\x14Qb\xc3\xf2>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x44\nB\x08\xb8H\x12\x1aLAMINAR_CONSTANT_VISCOSITY\x1a!laminar_viscosity_model_newtonian\x12\x8a\x01\n\x1c\x64ynamic_viscosity_table_data\x18\x99$ \x01(\tBc\x92\xb2\x19R\nP\x08\x84\xc6\x02\x12\'TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY\x1a!laminar_viscosity_model_newtonian\x9a\xb2\x19\t\n\x02\x08\x03\x12\x03\x08\x90\x0b\"\xe7\x04\n\rMaterialSolid\x12y\n\x1c\x63onstant_density_value_solid\x18\xc1\x89\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x18\xa5@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12s\n\x16specific_heat_cp_solid\x18\xe7\x8c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x8c@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\x7f\n#thermal_conductivity_constant_solid\x18\xc4? \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xe0\x64@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\x8d\x01\n\x1fthermal_conductivity_table_data\x18\xb9\xaf\x02 \x01(\tBb\x92\xb2\x19P\nN\x08\xef\xa9\x02\x12*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x9a\xb2\x19\n\n\x02\x08\x03\x12\x04\x08\xf0\xd8\x02\x12U\n\x15material_solid_preset\x18\x87\xdc\x02 \x01(\x0e\x32*.luminary.proto.client.MaterialSolidPresetB\x08\x82\xb2\x19\x04 \xa6\xeb\x03\"\xe8\x01\n\x0eMaterialEntity\x12\x46\n\x13material_identifier\x18\xa1\xfe\x03 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\x12@\n\x0ematerial_fluid\x18\x9f\x9f\x01 \x01(\x0b\x32$.luminary.proto.client.MaterialFluidH\x00\x12@\n\x0ematerial_solid\x18\xbd\xbc\x03 \x01(\x0b\x32$.luminary.proto.client.MaterialSolidH\x00\x42\n\n\x08material\"^\n\x0cVolumeEntity\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\"\xf0\x02\n\x07General\x12@\n\nfloat_type\x18\xff\xf0\x01 \x01(\x0e\x32 .luminary.proto.client.FloatTypeB\x08\x82\xb2\x19\x04 \xbb\xcc\x01\x12;\n\x07gravity\x18\xe4\xa9\x03 \x01(\x0e\x32\x1e.luminary.proto.client.GravityB\x08\x82\xb2\x19\x04 \x95\xe3\x03\x12~\n\x0c\x61\x63\x63\x65leration\x18\xa1\x9b\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BF\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x1f\x85\xebQ\xb8\x9e#\xc0\x92\xb2\x19\x1b\n\x19\x08\x9c\xe2\x03\x12\nGRAVITY_ON\x1a\x07gravity\x12\x46\n\rflow_behavior\x18\xbb\xa5\x03 \x01(\x0e\x32#.luminary.proto.client.FlowBehaviorB\x08\x82\xb2\x19\x04 \x80\xf9\x03\x12\x1e\n\rsolver_params\x18\xc5\x66 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xe2\x01\n\x07\x41\x64joint\x12\x37\n\x0e\x61\x64joint_output\x18\xc3\xc9\x02 \x01(\x0b\x32\x1d.luminary.proto.output.Output\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12$\n\x12\x64\x65\x66ormed_coords_id\x18\xa2\x84\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12)\n\x13\x64\x65\x66ormed_coords_url\x18\xba\x90\x02 \x01(\tB\n\xa0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12*\n\x14primal_simulation_id\x18\xe4\x82\x04 \x01(\tB\n\xa0\xb2\x19\x01\x92\xb2\x19\x02*\x00\"\xfa\x0c\n\x04Time\x12j\n\rtime_marching\x18\xd0\xd3\x03 \x01(\x0e\x32#.luminary.proto.client.TimeMarchingB,\x82\xb2\x19\x04 \xaf\x84\x02\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12y\n\x13time_implicit_order\x18\xc9\x87\x02 \x01(\x0e\x32(.luminary.proto.client.TimeImplicitOrderB0\x82\xb2\x19\x04 \x87\x8c\x03\x92\xb2\x19$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\x88\x01\n\x19physical_time_step_method\x18\xef\xa0\x02 \x01(\x0e\x32-.luminary.proto.client.PhysicalTimeStepMethodB4\x82\xb2\x19\x04 \xc0\xf8\x01\x92\xb2\x19(\x1a&\n\x02*\x00\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\x8e\x01\n\rtime_step_val\x18\x8a\xec\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBS\x82\xb2\x19\x0b\n\t\t-C\x1c\xeb\xe2\x36\x1a?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\x95\x01\n\x0etime_step_ramp\x18\x98\xf5\x03 \x01(\x0e\x32#.luminary.proto.client.TimeStepRampBV\x82\xb2\x19\x04 \x93\xf6\x01\x92\xb2\x19J\x1aH\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\xa4\x01\n\x1atime_step_ramp_initial_val\x18\xa6\xa9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\x82\xb2\x19\x0b\n\t\t\xfc\xa9\xf1\xd2MbP?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12\x98\x01\n\x1etime_step_ramp_iteration_begin\x18\xad\xf9\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xf4\x03\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12\x96\x01\n\x1ctime_step_ramp_iteration_end\x18\xdd\xd4\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xe8\x07\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12t\n\x12\x63ompute_statistics\x18\xc8\xdb\x01 \x01(\x0e\x32(.luminary.proto.client.ComputeStatisticsB,\x82\xb2\x19\x04 \xf2\xbc\x02\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\xc1\x01\n\x1astatistics_start_iteration\x18\xec\x9d\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x80\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19V\x1aT\n0\n.\x08\xb3\x08\x12\x15\x43OMPUTE_STATISTICS_ON\x1a\x12\x63ompute_statistics\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\xc1\x01\n\x1astatistics_update_interval\x18\x92\xf6\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x80\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19V\x1aT\n0\n.\x08\xb3\x08\x12\x15\x43OMPUTE_STATISTICS_ON\x1a\x12\x63ompute_statistics\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\"\xb2\x03\n\x0f\x46rameTransforms\x12\x18\n\x0etransform_name\x18\xfa\x81\x01 \x01(\t\x12H\n\x0etransform_type\x18\xcb\xb6\x01 \x01(\x0e\x32$.luminary.proto.client.TransformTypeB\x08\x82\xb2\x19\x04 \xd0\xe7\x02\x12\x9c\x01\n\x19transform_rotation_angles\x18\x88\xf2\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BW\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\xe6\xb8\x03\x12\x14ROTATIONAL_TRANSFORM\x1a\x0etransform_type\x12\x9b\x01\n\x15transform_translation\x18\xbb\xa4\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BZ\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19/\n-\x08\xfb\xcc\x02\x12\x17TRANSLATIONAL_TRANSFORM\x1a\x0etransform_type\"\x9c\t\n\nMotionData\x12\x12\n\x08\x66rame_id\x18\xcc\x91\x03 \x01(\t\x12\x14\n\nframe_name\x18\xee\xac\x03 \x01(\t\x12\x16\n\x0c\x66rame_parent\x18\xef\xcf\x02 \x01(\t\x12*\n\x10\x61ttached_domains\x18\x87\xa6\x03 \x03(\tB\x0e\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12,\n\x13\x61ttached_boundaries\x18\xc3\x10 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12\x42\n\x0bmotion_type\x18\xe9\xee\x03 \x01(\x0e\x32!.luminary.proto.client.MotionTypeB\x08\x82\xb2\x19\x04 \xb4\xa8\x01\x12\xa2\x01\n\x1bmotion_translation_velocity\x18\xb4\xfa\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B[\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x30\n.\x08\xff\xd0\x01\x12\x1b\x43ONSTANT_TRANSLATION_MOTION\x1a\x0bmotion_type\x12\x99\x01\n\x12motion_translation\x18\xa9\xf9\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B[\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x30\n.\x08\xff\xd0\x01\x12\x1b\x43ONSTANT_TRANSLATION_MOTION\x1a\x0bmotion_type\x12\x9b\x01\n\x12motion_formulation\x18\xd4H \x01(\x0e\x32(.luminary.proto.client.MotionFormulationBT\x82\xb2\x19\x04 \x91\xeb\x02\x92\xb2\x19H\x1a\x46\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\n\"2 \n\x1e\n\x1c\x08\xb4\xa8\x01\x12\tNO_MOTION\x1a\x0bmotion_type\x12S\n\x14motion_specification\x18\xad% \x01(\x0e\x32*.luminary.proto.client.MotionSpecificationB\x08\x82\xb2\x19\x04 \x9e\xb0\x03\x12\x9a\x01\n\x17motion_angular_velocity\x18\xdf\x9c\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BW\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\x8a\xf6\x02\x12\x17\x43ONSTANT_ANGULAR_MOTION\x1a\x0bmotion_type\x12\x99\x01\n\x16motion_rotation_angles\x18\xcd\x91\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BW\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\x8a\xf6\x02\x12\x17\x43ONSTANT_ANGULAR_MOTION\x1a\x0bmotion_type\x12\x41\n\x10\x66rame_transforms\x18\xc6Q \x03(\x0b\x32&.luminary.proto.client.FrameTransforms\"\x86\x10\n\rParticleGroup\x12\x1b\n\x11particle_group_id\x18\xe7\xad\x01 \x01(\t\x12\x1d\n\x13particle_group_name\x18\x83\xc4\x01 \x01(\t\x12+\n!particle_group_behavior_model_ref\x18\xbb\xdf\x03 \x01(\t\x12P\n\x13particle_group_type\x18\xd5` \x01(\x0e\x32(.luminary.proto.client.ParticleGroupTypeB\x08\x82\xb2\x19\x04 \xd9\xdf\x01\x12\xa8\x01\n\x1a\x61\x63tuator_disk_inner_radius\x18\xcb\\ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBa\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xa9\x01\n\x1a\x61\x63tuator_disk_outer_radius\x18\xa3\x8b\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBa\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\x98\x01\n\x14\x61\x63tuator_disk_center\x18\xcd\x61 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BY\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xa2\x01\n#actuator_disk_orientation_selection\x18\xe0\x92\x03 \x01(\x0e\x32\x37.luminary.proto.client.ActuatorDiskOrientationSelectionB:\x82\xb2\x19\x04 \xf2\x95\x03\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xf8\x01\n\x1c\x61\x63tuator_disk_rotation_angle\x18\x80\x84\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\xaf\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x83\x01\x1a\x80\x01\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\nR\nP\x08\xf2\x95\x03\x12%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\x1a#actuator_disk_orientation_selection\x12\xf2\x01\n\x1b\x61\x63tuator_disk_normal_vector\x18\xa5\xcf\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\xaa\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\xf0?\x92\xb2\x19\x7f\x1a}\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\nO\nM\x08\xbe\x38\x12#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\x1a#actuator_disk_orientation_selection\x12\xa9\x01\n\x16source_particle_radius\x18\xa1\xfd\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBe\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xa8\x92\x02\x12\rSOURCE_POINTS\x1a\x13particle_group_type\x12\xad\x01\n\x1asearch_radius_scale_factor\x18\x83\xf8\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBe\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x04@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xb2\x01\n\x1fisotropic_gaussian_scale_factor\x18\xd2\xfe\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBe\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xa1\x01\n\x18particle_positions_table\x18\xf8\xaa\x02 \x01(\tB}\x92\xb2\x19X\x12V\n(\n&\x08\xdd>\x12\x0cPROBE_POINTS\x1a\x13particle_group_type\n*\n(\x08\xa8\x92\x02\x12\rSOURCE_POINTS\x1a\x13particle_group_type\x9a\xb2\x19\x1d\x12\x03\x08\x80P\x12\x03\x08\x80P\x12\x03\x08\x80P\x12\x06\x12\x04name\x12\x04\x12\x02id\"\xa4\x06\n\x0cMonitorPlane\x12\x1a\n\x10monitor_plane_id\x18\x9b\x8d\x03 \x01(\t\x12\x1c\n\x12monitor_plane_name\x18\x93\x9e\x03 \x01(\t\x12\x66\n\x13monitor_plane_point\x18\xd1\xb9\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\'\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\x66\n\x14monitor_plane_normal\x18\xa0 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\'\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12 \n\x16monitor_plane_box_clip\x18\xa6\x9f\x03 \x01(\x08\x12v\n\x19monitor_plane_clip_center\x18\xa9\xfd\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B1\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12t\n\x17monitor_plane_clip_size\x18\xac\xfe\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B1\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12w\n\x1bmonitor_plane_clip_rotation\x18\xb8o \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B1\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12#\n\x19monitor_plane_volume_clip\x18\x8e\xef\x02 \x01(\x08\x12\\\n\x15monitor_plane_volumes\x18\xb6\xbb\x03 \x03(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x12\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x06:\x04\x08\x8e\xef\x02\",\n\tBodyFrame\x12\x1f\n\rbody_frame_id\x18\xc5\xb1\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"-\n\x0bSurfaceName\x12\x1e\n\x0csurface_name\x18\xe0\xb9\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xeb\x02\n\x06Output\x12]\n\x10iters_per_output\x18\x85\xc4\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\'\x82\xb2\x19\x03\x30\xe8\x07\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12\x1b\n\x11include_residuals\x18\xa2\x99\x02 \x01(\x08\x12H\n\x0c\x64\x65\x62ug_output\x18\x9c\xb3\x03 \x01(\x0e\x32\".luminary.proto.client.DebugOutputB\x0c\x82\xb2\x19\x04 \xdf\xba\x02\x92\xb2\x19\x00\x12\x9a\x01\n\"debug_output_interior_surface_data\x18\xd6\xa2\x02 \x01(\x0e\x32\x35.luminary.proto.client.DebugOutputInteriorSurfaceDataB5\x82\xb2\x19\x04 \x9a\xac\x02\x92\xb2\x19)\n\'\x08\x83)\x12\x14SOLN_DEBUG_OUTPUT_ON\x1a\x0c\x64\x65\x62ug_output\"\xdf\x02\n\x13\x43onvergenceCriteria\x12\x45\n\x12stopping_condition\x18\xc7v \x03(\x0b\x32(.luminary.proto.output.StoppingCondition\x12O\n\x1ctime_step_stopping_condition\x18\xb1\x0e \x03(\x0b\x32(.luminary.proto.output.StoppingCondition\x12S\n\x0c\x65ntity_group\x18\xbe\x8e\x02 \x03(\x0b\x32;.luminary.proto.client.ConvergenceCriteria.EntityGroupEntry\x1a[\n\x10\x45ntityGroupEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.luminary.proto.entitygroup.EntityGroup:\x02\x38\x01\"\xb4\x01\n\x1aVolumeMaterialRelationship\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12\x46\n\x13material_identifier\x18\xa1\xfe\x03 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\"\xb1\x01\n\x19VolumePhysicsRelationship\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12\x44\n\x12physics_identifier\x18\xb2\x1a \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\"\xc9\x01\n\x13\x45ntityRelationships\x12Y\n\x1cvolume_material_relationship\x18\x8c\xa8\x02 \x03(\x0b\x32\x31.luminary.proto.client.VolumeMaterialRelationship\x12W\n\x1bvolume_physics_relationship\x18\xef\xff\x02 \x03(\x0b\x32\x30.luminary.proto.client.VolumePhysicsRelationship\"\x91\x08\n\x0fReferenceValues\x12\x65\n\x08\x61rea_ref\x18\x83\xdc\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\x66\n\nlength_ref\x18\xdc\" \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12%\n\x1buse_aero_moment_ref_lengths\x18\xdd\xb7\x02 \x01(\x08\x12z\n\x10length_ref_pitch\x18\xe1\" \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB=\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12y\n\x0flength_ref_roll\x18\x84\x0f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB=\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12y\n\x0elength_ref_yaw\x18\xd7\xda\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB=\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12\x62\n\x05p_ref\x18\xac\x8b\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\xcd\x01\n\x05t_ref\x18\xd6\xc2\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\x62\n\x05v_ref\x18\xb3\x83\x04 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\"\xe7\x03\n\x14\x42oundaryLayerProfile\x12\x7f\n\x08n_layers\x18\x87\x9b\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntBQ\x82\xb2\x19\x02\x30(\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12\x94\x01\n\x0cinitial_size\x18\xad\x88\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x8d\xed\xb5\xa0\xf7\xc6\xb0>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12\x93\x01\n\x0bgrowth_rate\x18\xc4\xf2\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t333333\xf3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x10@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\"\xde\x08\n\x16\x41\x64\x61ptiveMeshRefinement\x12\x61\n\x15refinement_iterations\x18\xa3\x9e\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\xc0X@\x8a\xb2\x19\x02\x18\x00\x12g\n\x1crefinement_dispatch_interval\x18\xc1\x0c \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x12\x63\n\x17max_refinement_interval\x18\xb7\xa0\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x12v\n\x19initial_target_complexity\x18\x87\x8d\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12t\n\x17\x66inal_target_complexity\x18\xc3\xc5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12H\n\x0emeshing_method\x18\xce\xb7\x01 \x01(\x0e\x32$.luminary.proto.client.MeshingMethodB\x08\x82\xb2\x19\x04 \xa2\x90\x02\x12\x89\x01\n\x12target_cv_millions\x18\xfb\x89\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBQ\x82\xb2\x19\x02\x30\n\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00 i@\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12j\n\x07\x61ll_tet\x18\xa6\xe2\x02 \x01(\x0e\x32\x1d.luminary.proto.client.AllTetB8\x82\xb2\x19\x03 \xf6 \x92\xb2\x19-\x1a+\n\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\n\x00\x12\x94\x01\n\x0cuser_scaling\x18\xe9\xe5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12L\n\x16\x62oundary_layer_profile\x18\xb7\x43 \x03(\x0b\x32+.luminary.proto.client.BoundaryLayerProfile\"\x83\x17\n\x14SolutionControlsHeat\x12\x99\x01\n\x11relaxation_method\x18\xc0\xc9\x03 \x01(\x0e\x32\'.luminary.proto.client.RelaxationMethodBS\x82\xb2\x19\x04 \xa0\x9e\x03\x92\xb2\x19G\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12q\n\x0fimplicit_method\x18\xaf\x85\x04 \x01(\x0e\x32%.luminary.proto.client.ImplicitMethodB/\x82\xb2\x19\x04 \xb7\xeb\x03\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x83\x01\n\x11linsol_iterations\x18\xbbO \x01(\x0b\x32\x18.luminary.proto.base.IntBM\x82\xb2\x19\x02\x30\x0f\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00@\x8f@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x93\x01\n\x10linsol_tolerance\x18\xc5\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBV\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12u\n\x12linear_solver_type\x18\x86\xf7\x03 \x01(\x0e\x32\'.luminary.proto.client.LinearSolverTypeB.\x82\xb2\x19\x03 \xd1}\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xe4\x01\n\x15linsol_amg_pre_sweeps\x18\xd6\xe2\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe5\x01\n\x16linsol_amg_post_sweeps\x18\xef\xd8\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe9\x01\n\x1alinsol_amg_coarsening_size\x18\xc7\xeb\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x08\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00 @\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe0\x01\n\x11linsol_amg_levels\x18\x88\xf5\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x14\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x44@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xf5\x01\n\x15linsol_amg_relaxation\x18\xe7\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb1\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd7\x01\n\x15linsol_amg_cycle_type\x18\xe8\xe1\x01 \x01(\x0e\x32).luminary.proto.client.LinsolAmgCycleTypeB\x8a\x01\x82\xb2\x19\x04 \xfd\xd4\x01\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x92\x02\n\"linsol_amg_freeze_levels_threshold\x18\xd3J \x01(\x0b\x32\x18.luminary.proto.base.IntB\xca\x01\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd4\x01\n\x13linsol_amg_smoother\x18\x9b\xf0\x03 \x01(\x0e\x32(.luminary.proto.client.LinsolAmgSmootherB\x8a\x01\x82\xb2\x19\x04 \xf8\xe0\x02\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x9a\x01\n\x0f\x65xplicit_method\x18\xb2\" \x01(\x0e\x32%.luminary.proto.client.ExplicitMethodBY\x82\xb2\x19\x04 \xeb\xca\x02\x92\xb2\x19M\x12K\n#\n!\x08\xfe\xd3\x01\x12\x08\x45XPLICIT\x1a\x11relaxation_method\n$\n\"\x08\x91\xbe\x01\x12\rTIME_EXPLICIT\x1a\rtime_marching\x12k\n\x17\x63ontrols_preset_version\x18\xd3\xbb\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12\x63\n\x1dsolution_controls_heat_preset\x18\x8a\xd9\x03 \x01(\x0e\x32\x31.luminary.proto.client.SolutionControlsHeatPresetB\x07\x82\xb2\x19\x03 \xe4\x05\"\xae\x02\n\x13\x41\x64jointControlsHeat\x12u\n\x17\x61\x64joint_solution_method\x18\xd5\" \x01(\x0e\x32,.luminary.proto.client.AdjointSolutionMethodB%\x82\xb2\x19\x04 \xf7\xdd\x02\x92\xb2\x19\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\x12\x9f\x01\n\x1b\x61\x64joint_gmres_restart_iters\x18\xc0z \x01(\x0b\x32\x18.luminary.proto.base.IntB_\x82\xb2\x19\x02\x30\x32\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00>@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x35\n3\x08\xf7\xdd\x02\x12\x14\x41\x44JOINT_METHOD_GMRES\x1a\x17\x61\x64joint_solution_method\"\x94\x06\n\x19SpatialDiscretizationHeat\x12I\n\x0fgradient_method\x18\x9f\xec\x03 \x01(\x0e\x32%.luminary.proto.client.GradientMethodB\x07\x82\xb2\x19\x03 \xd8v\x12\xae\x01\n\nhlsq_blend\x18\xfc\x82\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBv\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x43\x12\x41\n\x1d\n\x1b\x08\x9b\xe8\x03\x12\x04HLSQ\x1a\x0fgradient_method\n \n\x1e\x08\xf0\x8a\x03\x12\x07LC_HLSQ\x1a\x0fgradient_method\x12s\n\x0egeometry_fixes\x18\x92\xb7\x03 \x01(\x0e\x32$.luminary.proto.client.GeometryFixesB3\x82\xb2\x19\x04 \xd9\xe6\x01\x92\xb2\x19\'\x12%\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\x12\xa4\x01\n\x1ageometry_fixes_mitigations\x18\xb1\xe9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xd9\xe6\x01\x12\x11GEOMETRY_FIXES_ON\x1a\x0egeometry_fixes\x12q\n\x1d\x64iscretization_preset_version\x18\xa6\xe0\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12l\n\"spatial_discretization_heat_preset\x18\xa5\x11 \x01(\x0e\x32\x36.luminary.proto.client.SpatialDiscretizationHeatPresetB\x07\x82\xb2\x19\x03 \xb1\x34\"\xb5\r\n\x16\x42oundaryConditionsHeat\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12)\n\x17\x62oundary_condition_name\x18\x86\xa2\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x30\n\x1f\x62oundary_condition_display_name\x18\xd8Q \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x31\n\x1f\x62oundary_condition_interface_id\x18\xfb\x9f\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\xde\x01\n\nprofile_bc\x18\x85\xe9\x02 \x01(\x08\x42\xc7\x01\x92\xb2\x19\xc2\x01\x12\xbf\x01\n\x9a\x01\x1a\x97\x01\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12/\n\x0fprofile_bc_data\x18\xc6\xbc\x03 \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\x85\xe9\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12W\n\x16heat_physical_boundary\x18\xc3\xf1\x03 \x01(\x0e\x32+.luminary.proto.client.HeatPhysicalBoundaryB\x08\x82\xb2\x19\x04 \x9e\xc5\x01\x12\xca\x01\n\x0f\x66ixed_heat_flux\x18\xe5, \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x8d\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19Z\x12X\n#\n!\x08\xae\x06\x12\x0f\x46IXED_HEAT_FLUX\x1a\x0bwall_energy\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xb7\x01\n\x1a\x66ixed_integrated_heat_flux\x18\xa7\x9c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBo\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xdc\x01\n\rheat_flux_col\x18\xe0\x65 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa9\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x7f\x1a}\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\n\x06:\x04\x08\x85\xe9\x02\x12\x87\x02\n\x11\x66ixed_temperature\x18\x91\xb4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc7\x01\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x93\x01\x12\x90\x01\n&\n$\x08\xa7\xac\x01\x12\x11\x46IXED_TEMPERATURE\x1a\x0bwall_energy\n2\n0\x08\x9e\xc5\x01\x12\x12HEAT_BC_ISOTHERMAL\x1a\x16heat_physical_boundary\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\xb0\x01\n\x19heat_transfer_coefficient\x18\xb3\xfb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBi\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x36\x1a\x34\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\"\xb7\x04\n\x12InitializationHeat\x12R\n\x13initialization_type\x18\x9e\xf2\x01 \x01(\x0e\x32).luminary.proto.client.InitializationTypeB\x08\x82\xb2\x19\x04 \xa2\xbe\x01\x12\xd0\x02\n\tuniform_t\x18\xf8\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x02\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe4\x01\x12\xe1\x01\n\xd4\x01\x1a\xd1\x01\nk\x12i\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\x08\x42\x06\n\x04heat\x12R\n\x15\x65xisting_solution_url\x18\xdcG \x01(\tB2\x92\xb2\x19.\n,\x08\xe4\xd1\x01\x12\x11\x45XISTING_SOLUTION\x1a\x13initialization_type\x12&\n\x14\x65xisting_solution_id\x18\xd5\xd6\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\x9a\x06\n\nHeatSource\x12>\n\x0eprofile_source\x18\xe9\xe1\x02 \x01(\x08\x42$\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\x32\n\x13profile_source_data\x18\x8bP \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\xe9\xe1\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12\x64\n\x0fheat_source_col\x18\xb2X \x01(\x0b\x32\x18.luminary.proto.base.IntB0\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x06:\x04\x08\xe9\xe1\x02\x12#\n\x0eheat_source_id\x18\x90\" \x01(\tB\n\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12%\n\x10heat_source_name\x18\xeei \x01(\tB\n\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12(\n\x14heat_source_zone_ids\x18\xef\x8e\x03 \x03(\tB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12K\n\x10heat_source_type\x18\xb6\x8a\x03 \x01(\x0e\x32%.luminary.proto.client.HeatSourceTypeB\x08\x82\xb2\x19\x04 \xc2\xe2\x01\x12w\n\x11heat_source_power\x18\xc4\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB8\x92\xb2\x19\x34\x1a\x32\n0\n.\x08\xc2\xe2\x01\x12\x16HEAT_SOURCE_TYPE_POWER\x1a\x10heat_source_type\x12\x99\x01\n!heat_source_power_per_unit_volume\x18\xcb\x0b \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBK\x92\xb2\x19G\x1a\x45\nC\nA\x08\xbf\xde\x03\x12)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\x1a\x10heat_source_type\"\x8b\x05\n\x11SlidingInterfaces\x12&\n\x14sliding_interface_id\x18\x83\xb1\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12(\n\x16sliding_interface_name\x18\xed\xbc\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12#\n\tsliding_a\x18\x91\xd4\x03 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12#\n\tsliding_b\x18\x90\xd9\x01 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12\x7f\n&sliding_matching_translation_transform\x18\xde\x84\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\x81\x01\n)sliding_matching_periodic_rotation_angles\x18\xabZ \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\x85\x01\n,sliding_matching_periodic_center_of_rotation\x18\xb9\x8c\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12M\n\x0einterface_type\x18\xa8_ \x01(\x0e\x32$.luminary.proto.client.InterfaceTypeB\x0e\x82\xb2\x19\x04 \xc2\xa3\x03\x92\xb2\x19\x02*\x00\"\x94\x05\n\x0cPeriodicPair\x12#\n\x12periodic_pair_name\x18\xf2o \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x1a\n\x07\x62ound_a\x18\xd5n \x03(\tB\x08\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x12\x1a\n\x07\x62ound_b\x18\xa4\x37 \x03(\tB\x08\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x12K\n\x10periodic_bc_type\x18\xcf\xb5\x01 \x01(\x0e\x32%.luminary.proto.client.PeriodicBcTypeB\x08\x82\xb2\x19\x04 \xd9\x9d\x01\x12\x95\x01\n\rtranslational\x18\xdb\x9e\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xd9\x9d\x01\x12\rTRANSLATIONAL\x1a\x10periodic_bc_type\x12\x66\n\x14periodic_translation\x18\xc4\x64 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\'\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12m\n\x1bperiodic_center_of_rotation\x18\xaa] \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\'\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12k\n\x18periodic_rotation_angles\x18\x90\xc0\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\'\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\"\xd7\x04\n\x04Heat\x12M\n\x16solution_controls_heat\x18\x9c\xb9\x01 \x01(\x0b\x32+.luminary.proto.client.SolutionControlsHeat\x12K\n\x15\x61\x64joint_controls_heat\x18\x81\x82\x04 \x01(\x0b\x32*.luminary.proto.client.AdjointControlsHeat\x12V\n\x1bspatial_discretization_heat\x18\xa6g \x01(\x0b\x32\x30.luminary.proto.client.SpatialDiscretizationHeat\x12Q\n\x18\x62oundary_conditions_heat\x18\xa1\xfa\x01 \x03(\x0b\x32-.luminary.proto.client.BoundaryConditionsHeat\x12H\n\x13initialization_heat\x18\x90\xb9\x01 \x01(\x0b\x32).luminary.proto.client.InitializationHeat\x12\x38\n\x0bheat_source\x18\x8d\xac\x02 \x03(\x0b\x32!.luminary.proto.client.HeatSource\x12\x46\n\x12sliding_interfaces\x18\xae\xe6\x03 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12<\n\rperiodic_pair\x18\xec\x81\x04 \x03(\x0b\x32#.luminary.proto.client.PeriodicPair\"\xa0\x01\n\nBasicFluid\x12J\n\nfluid_type\x18\xf2\xb6\x02 \x01(\x0e\x32 .luminary.proto.client.FluidTypeB\x12\x82\xb2\x19\x04 \xdd\xf0\x01\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12\x46\n\rviscous_model\x18\xeb\x81\x01 \x01(\x0e\x32#.luminary.proto.client.ViscousModelB\x08\x82\xb2\x19\x04 \x92\x95\x02\"\xec\x41\n\nTurbulence\x12g\n\x0f\x64\x65s_formulation\x18\xfb\x15 \x01(\x0e\x32%.luminary.proto.client.DesFormulationB&\x82\xb2\x19\x04 \xe6\x8b\x02\x92\xb2\x19\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x62\n\x0brans_region\x18\xd2\xc2\x01 \x01(\x0e\x32!.luminary.proto.client.RansRegionB(\x82\xb2\x19\x03 \xd9s\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12}\n\tzdes_rmin\x18\x94\xe0\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BH\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12|\n\tzdes_rmax\x18\xd1\x1e \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BH\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12o\n\x14sub_grid_scale_model\x18\x97\x1b \x01(\x0e\x32(.luminary.proto.client.SubGridScaleModelB&\x82\xb2\x19\x04 \xf7\xb1\x01\x92\xb2\x19\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\x12\x8d\x01\n\x03\x63_s\x18\xe8\xc3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\xa2\x97\x02\x12\x0bSMAGORINSKY\x1a\x14sub_grid_scale_model\x12\x8d\x01\n\x08\x63_vreman\x18\xc6\x9b\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBW\x82\xb2\x19\x0b\n\t\t\xe5\xd0\"\xdb\xf9~\xb2?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xf7\xb1\x01\x12\x06VREMAN\x1a\x14sub_grid_scale_model\x12\x88\x01\n\x06\x63_wale\x18\x82< \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBU\x82\xb2\x19\x0b\n\t\t\xcd\xcc\xcc\xcc\xcc\xcc\xd4?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\"\n \x08\xc8\xc9\x03\x12\x04WALE\x1a\x14sub_grid_scale_model\x12\x8a\x01\n\x07\x63_sigma\x18\xb9\xf6\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBU\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\"\n \x08\xc7g\x12\x05SIGMA\x1a\x14sub_grid_scale_model\x12\x86\x01\n\x05\x63_amd\x18\xf4\xc7\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBS\x82\xb2\x19\x0b\n\t\tR\xb8\x1e\x85\xebQ\xc8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19 \n\x1e\x08\xd4\x1f\x12\x03\x41MD\x1a\x14sub_grid_scale_model\x12\xd2\x02\n/turbulent_thermal_conductivity_prandtl_constant\x18\xe2\xb0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf4\x01\x82\xb2\x19\x0b\n\t\t333333\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc0\x01\x1a\xbd\x01\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\nW\x12U\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\x12\xc3\x01\n\x10transition_model\x18\xae\x9a\x02 \x01(\x0e\x32&.luminary.proto.client.TransitionModelB\x7f\x82\xb2\x19\x04 \xa1\xe8\x03\x92\xb2\x19s\x1aq\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\nR\x12P\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12\xe0\x01\n\x1btransition_model_cross_flow\x18\x87\xf8\x02 \x01(\x0e\x32/.luminary.proto.client.TransitionModelCrossFlowB\x87\x01\x82\xb2\x19\x04 \x8e\xe5\x01\x92\xb2\x19{\x12y\n$\n\"\x08\xd0\x9e\x01\x12\nGAMMA_2015\x1a\x10transition_model\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\x12\x92\x02\n+transition_free_stream_turbulence_intensity\x18\xffQ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb9\x01\x82\xb2\x19\x0b\n\t\t\xfc\xa9\xf1\xd2Mb`?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x85\x01\x1a\x82\x01\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\nU\x12S\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\x12\x8a\x01\n\x10turbulence_model\x18\xd0\xe5\x01 \x01(\x0e\x32&.luminary.proto.client.TurbulenceModelBF\x82\xb2\x19\x03 \xca\x15\x92\xb2\x19;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x64\n\x06qcr_sa\x18\xdd\xd9\x01 \x01(\x0e\x32\x1c.luminary.proto.client.QcrSaB4\x82\xb2\x19\x03 \x99\x05\x92\xb2\x19)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\x84\x01\n\x16rotation_correction_sa\x18\x84\xbc\x02 \x01(\x0e\x32+.luminary.proto.client.RotationCorrectionSaB5\x82\xb2\x19\x04 \xfa\x92\x02\x92\xb2\x19)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\x88\x02\n\x05\x63_rot\x18\xbb\xb5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd4\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa0\x01\x1a\x9d\x01\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\n5\n3\x08\xae#\x12\x16ROTATION_CORRECTION_ON\x1a\x16rotation_correction_sa\x12\xf0\x01\n\x08\x43_sa_des\x18\xc3\xa1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb9\x01\x82\xb2\x19\x0b\n\t\t\xcd\xcc\xcc\xcc\xcc\xcc\xe4?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x85\x01\x1a\x82\x01\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xce\x01\n\x05\x63_b_1\x18\xd3\' \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\xf2\xd2Mb\x10X\xc1?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xce\x01\n\x05sigma\x18\xdfq \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\tUUUUUU\xe5?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_b_2\x18\xb6\xeb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x81\x95\x43\x8bl\xe7\xe3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05kappa\x18\xb1\xd4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t=\n\xd7\xa3p=\xda?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_w_2\x18\x89\x89\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t333333\xd3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_w_3\x18\xe5\xb5\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_v_1\x18\x8d\xa9\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\tffffff\x1c@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_t_3\x18\x94\xcd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t333333\xf3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcf\x01\n\x05\x63_t_4\x18\x80\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xce\x01\n\x05\x63_r_1\x18\xef\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\x61\n\x07qcr_sst\x18\x81\xb9\x02 \x01(\x0e\x32\x1d.luminary.proto.client.QcrSstB/\x82\xb2\x19\x04 \xf9\xeb\x01\x92\xb2\x19#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12k\n\x0ckato_launder\x18\xca\x10 \x01(\x08\x42T\x92\xb2\x19P\x1aN\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n\'\n%\x08\xa1\xe8\x03\x12\rNO_TRANSITION\x1a\x10transition_model\x12\x9e\x01\n\x1aturbulence_model_constants\x18\xb9\xaa\x02 \x01(\x0e\x32/.luminary.proto.client.TurbulenceModelConstantsBG\x82\xb2\x19\x04 \xb4\xd2\x01\x92\xb2\x19;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xe9\x01\n\nC_sst_des1\x18\xe5\x15 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb1\x01\x82\xb2\x19\x0b\n\t\t\xf6(\\\x8f\xc2\xf5\xe8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19~\x1a|\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xea\x01\n\nC_sst_des2\x18\xfc\xa4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb1\x01\x82\xb2\x19\x0b\n\t\t\x85\xebQ\xb8\x1e\x85\xe3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19~\x1a|\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tsigma_k_1\x18\xe8\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t333333\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tsigma_k_2\x18\x91\x86\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tsigma_w_1\x18\xca\xae\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tsigma_w_2\x18\xab\xf4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t1\x08\xac\x1cZd\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xca\x01\n\x06\x62\x65ta_1\x18\xa0\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t333333\xb3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xca\x01\n\x06\x62\x65ta_2\x18\x9e\xb3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\tQ\xda\x1b|a2\xb5?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tbeta_star\x18\xbc\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\n\xd7\xa3p=\n\xb7?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcd\x01\n\tkappa_sst\x18\xf7\x95\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t=\n\xd7\xa3p=\xda?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xc6\x01\n\x03\x61_1\x18\xa7( \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\xd7\xa3p=\n\xd7\xd3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcb\x01\n\x07gamma_1\x18\x94\xe5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\tr\x1c\xc7q\x1c\xc7\xe1?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xca\x01\n\x07gamma_2\x18\xd6g \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t)\\\x8f\xc2\xf5(\xdc?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\"\x8a)\n\x15SolutionControlsFluid\x12\xa6\x01\n\x17pseudo_time_step_method\x18\x90# \x01(\x0e\x32+.luminary.proto.client.PseudoTimeStepMethodBW\x82\xb2\x19\x04 \xe0\xda\x03\x92\xb2\x19K\x1aI\nG\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\x8e\x01\n\x03\x63\x66l\x18\x94\x90\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB]\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00I@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19*\n(\x08\xe0\xda\x03\x12\tCFL_BASED\x1a\x17pseudo_time_step_method\x12\x87\x01\n\x13local_time_stepping\x18\xa0\xcd\x03 \x01(\x0e\x32(.luminary.proto.client.LocalTimeSteppingB>\x82\xb2\x19\x04 \x98\xcf\x01\x92\xb2\x19\x32\x1a\x30\n*\n(\x08\xe0\xda\x03\x12\tCFL_BASED\x1a\x17pseudo_time_step_method\n\x02*\x00\x12\xac\x01\n\x14pseudo_time_step_val\x18\xd0\xff\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBj\x82\xb2\x19\x0b\n\t\t\x8d\xed\xb5\xa0\xf7\xc6\xb0>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x37\n5\x08\xc2\xfe\x01\x12\x16\x46IXED_PSEUDO_TIME_STEP\x1a\x17pseudo_time_step_method\x12\x99\x01\n\x11relaxation_method\x18\xc0\xc9\x03 \x01(\x0e\x32\'.luminary.proto.client.RelaxationMethodBS\x82\xb2\x19\x04 \xa0\x9e\x03\x92\xb2\x19G\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12q\n\x0fimplicit_method\x18\xaf\x85\x04 \x01(\x0e\x32%.luminary.proto.client.ImplicitMethodB/\x82\xb2\x19\x04 \xb7\xeb\x03\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x83\x01\n\x11linsol_iterations\x18\xbbO \x01(\x0b\x32\x18.luminary.proto.base.IntBM\x82\xb2\x19\x02\x30\x0f\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00@\x8f@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x93\x01\n\x10linsol_tolerance\x18\xc5\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBV\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12u\n\x12linear_solver_type\x18\x86\xf7\x03 \x01(\x0e\x32\'.luminary.proto.client.LinearSolverTypeB.\x82\xb2\x19\x03 \xd1}\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xe4\x01\n\x15linsol_amg_pre_sweeps\x18\xd6\xe2\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe5\x01\n\x16linsol_amg_post_sweeps\x18\xef\xd8\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe9\x01\n\x1alinsol_amg_coarsening_size\x18\xc7\xeb\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x08\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00 @\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe0\x01\n\x11linsol_amg_levels\x18\x88\xf5\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x14\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x44@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xf5\x01\n\x15linsol_amg_relaxation\x18\xe7\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb1\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd7\x01\n\x15linsol_amg_cycle_type\x18\xe8\xe1\x01 \x01(\x0e\x32).luminary.proto.client.LinsolAmgCycleTypeB\x8a\x01\x82\xb2\x19\x04 \xfd\xd4\x01\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x92\x02\n\"linsol_amg_freeze_levels_threshold\x18\xd3J \x01(\x0b\x32\x18.luminary.proto.base.IntB\xca\x01\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd4\x01\n\x13linsol_amg_smoother\x18\x9b\xf0\x03 \x01(\x0e\x32(.luminary.proto.client.LinsolAmgSmootherB\x8a\x01\x82\xb2\x19\x04 \xf8\xe0\x02\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x81\x01\n\x16jacobian_update_method\x18\xe1\xde\x03 \x01(\x0e\x32+.luminary.proto.client.JacobianUpdateMethodB2\x82\xb2\x19\x03 \xf6t\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xb4\x01\n\x18jacobian_update_interval\x18\x8b\xca\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBn\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19;\n9\x08\xf6t\x12\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x1a\x16jacobian_update_method\x12\xa4\x01\n\x19jacobian_warmup_threshold\x18\xb3X \x01(\x0b\x32\x18.luminary.proto.base.IntBf\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19;\n9\x08\xf6t\x12\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x1a\x16jacobian_update_method\x12\x92\x01\n\x0erobust_startup\x18\xa8\xa1\x02 \x01(\x0e\x32$.luminary.proto.client.RobustStartupBR\x82\xb2\x19\x04 \x98\xfe\x01\x92\xb2\x19\x46\x1a\x44\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\x12\xa3\x01\n\x1arobust_startup_initial_cfl\x18\x82w \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\x98\xfe\x01\x12\x11ROBUST_STARTUP_ON\x1a\x0erobust_startup\x12\x92\x01\n\x19robust_startup_iterations\x18\xd1+ \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\x98\xfe\x01\x12\x11ROBUST_STARTUP_ON\x1a\x0erobust_startup\x12\x92\x01\n\nrelax_flow\x18\xf2\xb4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xd0\x01\n\nrelax_turb\x18\xae\x84\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x64\x1a\x62\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x99\x01\n\x11update_limit_flow\x18\xe2\xaa\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xd7\x01\n\x11update_limit_turb\x18\x86\xa1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\x82\xb2\x19\x0b\n\t\t\xaeG\xe1z\x14\xae\xef?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x64\x1a\x62\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x9a\x01\n\x0f\x65xplicit_method\x18\xb2\" \x01(\x0e\x32%.luminary.proto.client.ExplicitMethodBY\x82\xb2\x19\x04 \xeb\xca\x02\x92\xb2\x19M\x12K\n#\n!\x08\xfe\xd3\x01\x12\x08\x45XPLICIT\x1a\x11relaxation_method\n$\n\"\x08\x91\xbe\x01\x12\rTIME_EXPLICIT\x1a\rtime_marching\x12k\n\x17\x63ontrols_preset_version\x18\xd3\xbb\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12\x66\n\x1esolution_controls_fluid_preset\x18\xd4\xa1\x03 \x01(\x0e\x32\x32.luminary.proto.client.SolutionControlsFluidPresetB\x08\x82\xb2\x19\x04 \xca\xc3\x03\"\xe3\x06\n\x14\x41\x64jointControlsFluid\x12u\n\x17\x61\x64joint_solution_method\x18\xd5\" \x01(\x0e\x32,.luminary.proto.client.AdjointSolutionMethodB%\x82\xb2\x19\x04 \xf7\xdd\x02\x92\xb2\x19\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\x12\x9f\x01\n\x1b\x61\x64joint_gmres_restart_iters\x18\xc0z \x01(\x0b\x32\x18.luminary.proto.base.IntB_\x82\xb2\x19\x02\x30\x32\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00>@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x35\n3\x08\xf7\xdd\x02\x12\x14\x41\x44JOINT_METHOD_GMRES\x1a\x17\x61\x64joint_solution_method\x12\xac\x01\n\x1c\x61\x64joint_second_order_damping\x18\xd8\xe1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12x\n\x19\x61\x64joint_frozen_turbulence\x18\xd8H \x01(\x08\x42T\x92\xb2\x19P\x1aN\n/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\x12\x88\x02\n\x19\x61\x64joint_frozen_transition\x18\xf6\x93\x02 \x01(\x08\x42\xe2\x01\x92\xb2\x19\xdd\x01\x1a\xda\x01\nP\x1aN\n/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\t2\x07\n\x05:\x03\x08\xd8H\n{\x12y\n$\n\"\x08\xd0\x9e\x01\x12\nGAMMA_2015\x1a\x10transition_model\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\"\xd5\x1e\n\x1aSpatialDiscretizationFluid\x12I\n\x0fgradient_method\x18\x9f\xec\x03 \x01(\x0e\x32%.luminary.proto.client.GradientMethodB\x07\x82\xb2\x19\x03 \xd8v\x12\xae\x01\n\nhlsq_blend\x18\xfc\x82\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBv\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x43\x12\x41\n\x1d\n\x1b\x08\x9b\xe8\x03\x12\x04HLSQ\x1a\x0fgradient_method\n \n\x1e\x08\xf0\x8a\x03\x12\x07LC_HLSQ\x1a\x0fgradient_method\x12j\n convective_schemes_density_based\x18\xa0\x82\x03 \x01(\x0e\x32\x34.luminary.proto.client.ConvectiveSchemesDensityBasedB\x08\x82\xb2\x19\x04 \xb1\xbf\x02\x12\x9d\x01\n\x0f\x65ntropy_epsilon\x18\xb6\x81\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\x12\xf4\x01\n\x0fpreconditioning\x18\xc6\" \x01(\x0e\x32&.luminary.proto.client.PreconditioningB\xb1\x01\x82\xb2\x19\x04 \x88\xfa\x03\x92\xb2\x19\xa4\x01\x1a\xa1\x01\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\nG\x12\x45\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\x12\xc5\x01\n\x17\x66\x64s_min_low_dissipation\x18\xfcq \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x80\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19M\x1aK\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\x12\x8e\x01\n\x1askew_symmetric_formulation\x18\xffU \x01(\x0e\x32/.luminary.proto.client.SkewSymmetricFormulationB8\x82\xb2\x19\x03 \xbe\x41\x92\xb2\x19-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12\xc2\x01\n\x1a\x61rtificial_viscosity_model\x18\xa0@ \x01(\x0e\x32/.luminary.proto.client.ArtificialViscosityModelBl\x82\xb2\x19\x04 \x8a\x8e\x01\x92\xb2\x19`\x12^\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12\xf5\x01\n\x0c\x61lpha_hybrid\x18\x84\x37 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbb\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x87\x01\x12\x84\x01\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\nS\x1aQ\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12P\n\x13upwind_scheme_order\x18\xc4\x1c \x01(\x0e\x32(.luminary.proto.client.UpwindSchemeOrderB\x08\x82\xb2\x19\x04 \xf5\x88\x02\x12\xc7\x02\n\x12robust_dissipation\x18\xc8\xc1\x03 \x01(\x0e\x32(.luminary.proto.client.RobustDissipationB\xfe\x01\x82\xb2\x19\x04 \x8d\xbc\x02\x92\xb2\x19\xf1\x01\x1a\xee\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\nf\x12\x64\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\n_\x12]\n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\x12\x82\x02\n\x07limiter\x18\xfa\x98\x03 \x01(\x0e\x32\x1e.luminary.proto.client.LimiterB\xce\x01\x82\xb2\x19\x04 \xe8\xda\x01\x92\xb2\x19\xc1\x01\x1a\xbe\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12\xf3\x01\n\rlimiter_kappa\x18\xeb\xcd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb7\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x83\x01\x12\x80\x01\n#\n!\x08\xac\x87\x02\x12\x12VENKATAKRISHNAN_CV\x1a\x07limiter\n-\n+\x08\xe8\xda\x01\x12\x1cINVARIANT_VENKATAKRISHNAN_CV\x1a\x07limiter\n*\n(\x08\xe1\xc3\x03\x12\x0eROBUST_DISS_ON\x1a\x12robust_dissipation\x12\xde\x02\n\numuscl_chi\x18\x8b\xed\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa5\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0\xbf\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xf1\x01\x1a\xee\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n.2,\n*\n(\x08\xe1\xc3\x03\x12\x0eROBUST_DISS_ON\x1a\x12robust_dissipation\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12\xf6\x01\n\talpha_ld2\x18\xed\xab\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbe\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x8a\x01\x1a\x87\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n`\x12^\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12s\n\x0egeometry_fixes\x18\x92\xb7\x03 \x01(\x0e\x32$.luminary.proto.client.GeometryFixesB3\x82\xb2\x19\x04 \xd9\xe6\x01\x92\xb2\x19\'\x12%\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\x12\xa4\x01\n\x1ageometry_fixes_mitigations\x18\xb1\xe9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xd9\xe6\x01\x12\x11GEOMETRY_FIXES_ON\x1a\x0egeometry_fixes\x12\xaf\x02\n\x0border_blend\x18\x94\xa8\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf5\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xc1\x01\x1a\xbe\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12q\n\x1d\x64iscretization_preset_version\x18\xa6\xe0\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12p\n#spatial_discretization_fluid_preset\x18\xc9\xef\x01 \x01(\x0e\x32\x37.luminary.proto.client.SpatialDiscretizationFluidPresetB\x08\x82\xb2\x19\x04 \xfe\xad\x02\"\xbf^\n\x17\x42oundaryConditionsFluid\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12)\n\x17\x62oundary_condition_name\x18\x86\xa2\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x30\n\x1f\x62oundary_condition_display_name\x18\xd8Q \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x31\n\x1f\x62oundary_condition_interface_id\x18\xfb\x9f\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12N\n\x11physical_boundary\x18\x84\xd7\x03 \x01(\x0e\x32\'.luminary.proto.client.PhysicalBoundaryB\x08\x82\xb2\x19\x04 \xdb\xf9\x03\x12h\n\rwall_momentum\x18\x96\xb3\x02 \x01(\x0e\x32#.luminary.proto.client.WallMomentumB*\x82\xb2\x19\x03 \xb7V\x92\xb2\x19\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\x98\x02\n\x11roughness_control\x18\xe6\x03 \x01(\x08\x42\xfb\x01\x92\xb2\x19\xf6\x01\x12\xf3\x01\n\x8c\x01\x1a\x89\x01\n\"2 \n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\"2 \n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n\x1e\x32\x1c\n\x1a\n\x18\x08\xa3\x1b\x12\x04SLIP\x1a\rwall_momentum\nb\x1a`\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n!\n\x1f\x08\xc9\xa1\x03\x12\nWALL_MODEL\x1a\rwall_momentum\x12\xf8\x02\n\x1f\x65quivalent_sand_grain_roughness\x18\xe5\xf0\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xaa\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11{\x14\xaeG\xe1zt?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xf6\x01\x12\xf3\x01\n\x8c\x01\x1a\x89\x01\n\"2 \n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\"2 \n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n\x1e\x32\x1c\n\x1a\n\x18\x08\xa3\x1b\x12\x04SLIP\x1a\rwall_momentum\nb\x1a`\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n!\n\x1f\x08\xc9\xa1\x03\x12\nWALL_MODEL\x1a\rwall_momentum\x12\xb7\x01\n\x1a\x66ixed_integrated_heat_flux\x18\xa7\x9c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBo\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xb0\x01\n\x19heat_transfer_coefficient\x18\xb3\xfb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBi\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x36\x1a\x34\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\xc8\x02\n\x0bwall_energy\x18\x93\xf6\x01 \x01(\x0e\x32!.luminary.proto.client.WallEnergyB\x8d\x02\x82\xb2\x19\x03 \xae\x06\x92\xb2\x19\x81\x02\x1a\xfe\x01\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\nw\x12u\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\x12\xca\x01\n\x0f\x66ixed_heat_flux\x18\xe5, \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x8d\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19Z\x12X\n#\n!\x08\xae\x06\x12\x0f\x46IXED_HEAT_FLUX\x1a\x0bwall_energy\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\x87\x02\n\x11\x66ixed_temperature\x18\x91\xb4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc7\x01\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x93\x01\x12\x90\x01\n&\n$\x08\xa7\xac\x01\x12\x11\x46IXED_TEMPERATURE\x1a\x0bwall_energy\n2\n0\x08\x9e\xc5\x01\x12\x12HEAT_BC_ISOTHERMAL\x1a\x16heat_physical_boundary\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\x97\x01\n\x19wall_movement_translation\x18\xd7\x86\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BR\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\x9b\x01\n\x1dwall_movement_rotation_center\x18\xea\xd9\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BR\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\x9b\x01\n\x1ewall_movement_angular_velocity\x18\x84j \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BR\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12l\n\x0einlet_momentum\x18\x87\xfa\x02 \x01(\x0e\x32$.luminary.proto.client.InletMomentumB,\x82\xb2\x19\x04 \x8a\xb2\x03\x92\xb2\x19 \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\xc5\x01\n\x18inlet_velocity_magnitude\x18\x90\xd0\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x7f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19L\x1aJ\n&\n$\x08\x9e\xcc\x03\x12\x0eVELOCITY_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\x9d\x01\n\x1cinlet_velocity_magnitude_col\x18\xf7\x44 \x01(\x0b\x32\x18.luminary.proto.base.IntB\\\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x32\x1a\x30\n&\n$\x08\x9e\xcc\x03\x12\x0eVELOCITY_INLET\x1a\x0einlet_momentum\n\x06:\x04\x08\x85\xe9\x02\x12\xc8\x01\n\x19inlet_velocity_components\x18\x9d\xca\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x82\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19W\x1aU\n1\n/\x08\xe3\x83\x04\x12\x19VELOCITY_COMPONENTS_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\x99\x01\n\x12total_pressure_col\x18\xde> \x01(\x0b\x32\x18.luminary.proto.base.IntBb\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x38\x1a\x36\n,\n*\x08\x8a\xb2\x03\x12\x14TOTAL_PRESSURE_INLET\x1a\x0einlet_momentum\n\x06:\x04\x08\x85\xe9\x02\x12\xbd\x01\n\x0emass_flow_rate\x18\xd9\xca\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x80\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19M\x1aK\n\'\n%\x08\x9f\x87\x01\x12\x0fMASS_FLOW_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\xef\x01\n\x0etotal_pressure\x18\x80\x94\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb2\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x7f\x12}\nR\x1aP\n,\n*\x08\x8a\xb2\x03\x12\x14TOTAL_PRESSURE_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\x12\xb9\x01\n\x17\x64irection_specification\x18\x8a\x81\x04 \x01(\x0e\x32-.luminary.proto.client.DirectionSpecificationBg\x82\xb2\x19\x04 \xe6\xa7\x03\x92\xb2\x19[\x1aY\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n523\n1\n/\x08\xe3\x83\x04\x12\x19VELOCITY_COMPONENTS_INLET\x1a\x0einlet_momentum\x12\xbd\x01\n\x0e\x66low_direction\x18\xf1\xbb\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x82\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19W\x1aU\n1\n/\x08\xaf\xd4\x01\x12\x10\x44IRECTION_VECTOR\x1a\x17\x64irection_specification\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\xde\x01\n\nprofile_bc\x18\x85\xe9\x02 \x01(\x08\x42\xc7\x01\x92\xb2\x19\xc2\x01\x12\xbf\x01\n\x9a\x01\x1a\x97\x01\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12/\n\x0fprofile_bc_data\x18\xc6\xbc\x03 \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\x85\xe9\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12\xfb\x01\n\x0cinlet_energy\x18\xd4\x9d\x01 \x01(\x0e\x32\".luminary.proto.client.InletEnergyB\xbe\x01\x82\xb2\x19\x04 \x9e\xf1\x03\x92\xb2\x19\xb1\x01\x1a\xae\x01\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n&2$\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xac\x02\n\x11total_temperature\x18\xdf\x8f\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xec\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc0r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb8\x01\x1a\xb5\x01\n-\n+\x08\x9e\xf1\x03\x12\x17TOTAL_TEMPERATURE_INLET\x1a\x0cinlet_energy\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\x84\x02\n\x15total_temperature_col\x18\xf6x \x01(\x0b\x32\x18.luminary.proto.base.IntB\xc9\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n-\n+\x08\x9e\xf1\x03\x12\x17TOTAL_TEMPERATURE_INLET\x1a\x0cinlet_energy\n\x06:\x04\x08\x85\xe9\x02\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12o\n\x0foutlet_strategy\x18\x94\xe0\x03 \x01(\x0e\x32%.luminary.proto.client.OutletStrategyB-\x82\xb2\x19\x04 \xf0\xb7\x03\x92\xb2\x19!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\x12\x9f\x02\n\x1coutlet_target_mass_flow_rate\x18\xb3\x19 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd5\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa1\x01\x1a\x9e\x01\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\ny\x12w\n5\n3\x08\xdb\xaa\x01\x12\x1cOUTLET_TARGET_MASS_FLOW_RATE\x1a\x0foutlet_strategy\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\xe0\x01\n\x19outlet_reference_pressure\x18\x86\xa5\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x65\x1a\x63\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\xe3\x01\n\x1coutlet_reference_temperature\x18\xe8\x96\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x01\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x65\x1a\x63\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\x95\x01\n\x0foutlet_pressure\x18\xb9\xe7\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBX\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19%\x1a#\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\x12\xbb\x01\n\x14\x66\x61n_curve_table_data\x18\xf5# \x01(\tB\x9b\x01\x92\xb2\x19\x88\x01\x12\x85\x01\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\n\n\x03\x08\xda\x04\x12\x03\x08\xd9\x04\x12\xff\x01\n\x15head_loss_coefficient\x18\xcbO \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbc\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x88\x01\x12\x85\x01\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x12\xb7\x01\n\x1aoutlet_pressure_constraint\x18\x82\xac\x03 \x01(\x0e\x32/.luminary.proto.client.OutletPressureConstraintB`\x82\xb2\x19\x04 \x86\xa8\x02\x92\xb2\x19T\x1aR\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n-2+\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\x12u\n\x11\x66\x61rfield_momentum\x18\x8e\xfd\x01 \x01(\x0e\x32\'.luminary.proto.client.FarfieldMomentumB/\x82\xb2\x19\x04 \x99\xd9\x02\x92\xb2\x19#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\x8a\x02\n\x14\x66\x61rfield_mach_number\x18\xe9\r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc8\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x94\x01\x1a\x91\x01\n\x80\x01\x12~\nX\x1aV\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n/\n-\x08\x99\xd9\x02\x12\x14\x46\x41RFIELD_MACH_NUMBER\x1a\x11\x66\x61rfield_momentum\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\xdc\x01\n\x1b\x66\x61rfield_velocity_magnitude\x18\xdc\xf1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19_\x1a]\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n6\n4\x08\xcb\xaf\x02\x12\x1b\x46\x41RFIELD_VELOCITY_MAGNITUDE\x1a\x11\x66\x61rfield_momentum\x12\xcf\x01\n\x11\x66\x61rfield_pressure\x18\xf0^ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x90\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19]\x1a[\nK\x12I\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\xc1\x02\n\x14\x66\x61rfield_temperature\x18\x90\xf0\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xfe\x01\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xca\x01\x1a\xc7\x01\n\xb6\x01\x12\xb3\x01\n\x8c\x01\x1a\x89\x01\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\x9c\x01\n&far_field_flow_direction_specification\x18\x85\xce\x02 \x01(\x0e\x32\x39.luminary.proto.client.FarFieldFlowDirectionSpecificationB/\x82\xb2\x19\x04 \x86\xed\x01\x92\xb2\x19#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xda\x01\n\x17\x66\x61rfield_flow_direction\x18\xd7\xcd\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x96\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19k\x1ai\nB\n@\x08\x86\xed\x01\x12\x12\x46\x41RFIELD_DIRECTION\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xde\x01\n\x14\x66\x61rfield_angle_alpha\x18\xd1\xd1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n?\n=\x08\x81\xe9\x03\x12\x0f\x46\x41RFIELD_ANGLES\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xdd\x01\n\x13\x66\x61rfield_angle_beta\x18\x95\x94\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n?\n=\x08\x81\xe9\x03\x12\x0f\x46\x41RFIELD_ANGLES\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xb8\x02\n)turbulence_specification_spalart_allmaras\x18\xcb\xc4\x03 \x01(\x0e\x32=.luminary.proto.client.TurbulenceSpecificationSpalartAllmarasB\xc3\x01\x82\xb2\x19\x04 \xdf\x8b\x03\x92\xb2\x19\xb6\x01\x1a\xb3\x01\nI\x12G\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xb8\x01\n\x13\x62\x63_uniform_nu_tilde\x18\x9c\xde\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBw\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x44\x1a\x42\n@\n>\x08\xe4\x34\x12\x0e\x42\x43_SA_VARIABLE\x1a)turbulence_specification_spalart_allmaras\x12\xab\x01\n\x0f\x62\x63_nu_tilde_col\x18\xcc\xc4\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBv\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19L\x1aJ\n@\n>\x08\xe4\x34\x12\x0e\x42\x43_SA_VARIABLE\x1a)turbulence_specification_spalart_allmaras\n\x06:\x04\x08\x85\xe9\x02\x12\x9f\x02\n\x1fturbulence_specification_komega\x18\xfc\x8d\x02 \x01(\x0e\x32\x34.luminary.proto.client.TurbulenceSpecificationKomegaB\xbd\x01\x82\xb2\x19\x04 \x8e\x8d\x02\x92\xb2\x19\xb0\x01\x1a\xad\x01\nI\x12G\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xac\x02\n\x19turbulent_viscosity_ratio\x18\xc4\xe9\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe4\x01\x82\xb2\x19\x0b\n\t\t\xc6\xb8\'\x0c\xa4\xef\xca?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb0\x01\x12\xad\x01\nO\nM\x08\xdf\x8b\x03\x12\x1cTURBULENT_VISCOSITY_RATIO_SA\x1a)turbulence_specification_spalart_allmaras\nZ\nX\x08\x8e\x8d\x02\x12\x31\x42\x43_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\x9a\x02\n\x13turbulent_viscosity\x18\xf9\xaf\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd8\x01\x82\xb2\x19\x0b\n\t\t\xb9\xc0L\xb1\x86\x96\xcf>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa4\x01\x12\xa1\x01\nI\nG\x08\x95\x9a\x03\x12\x16TURBULENT_VISCOSITY_SA\x1a)turbulence_specification_spalart_allmaras\nT\nR\x08\xaf\x84\x04\x12+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\xac\x02\n\x14turbulence_intensity\x18\x8b\x98\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe9\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb5\x01\x12\xb2\x01\nT\nR\x08\xaf\x84\x04\x12+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\nZ\nX\x08\x8e\x8d\x02\x12\x31\x42\x43_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\x92\x02\n\x0e\x62\x63_uniform_tke\x18\x8cK \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd6\x01\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x94\x02\n\x10\x62\x63_uniform_omega\x18\xe1{ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd6\x01\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x8c\x02\n\nbc_tke_col\x18\xda\xe2\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xdb\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xb0\x01\x1a\xad\x01\n\x06:\x04\x08\x85\xe9\x02\n\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x8e\x02\n\x0c\x62\x63_omega_col\x18\xd9\x8c\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xdb\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xb0\x01\x1a\xad\x01\n\x06:\x04\x08\x85\xe9\x02\n\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\"\xe0i\n\x13InitializationFluid\x12R\n\x13initialization_type\x18\x9e\xf2\x01 \x01(\x0e\x32).luminary.proto.client.InitializationTypeB\x08\x82\xb2\x19\x04 \xa2\xbe\x01\x12\x8b\x01\n\tuniform_v\x18\xa7\x8a\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BV\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\x12\xd0\x02\n\tuniform_t\x18\xf8\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x02\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe4\x01\x12\xe1\x01\n\xd4\x01\x1a\xd1\x01\nk\x12i\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\x08\x42\x06\n\x04heat\x12\xa4\x02\n&potential_flow_pressure_initialization\x18\x93\x11 \x01(\x0e\x32:.luminary.proto.client.PotentialFlowPressureInitializationB\xb6\x01\x82\xb2\x19\x03 \xe1\x37\x92\xb2\x19\xaa\x01\x1a\xa7\x01\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xbc\x02\n\tuniform_p\x18\xc4\x9c\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x84\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xd0\x01\x12\xcd\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n\x9d\x01\x1a\x9a\x01\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n\\2Z\nX\nV\x08\xf5\x42\x12)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\x1a&potential_flow_pressure_initialization\x12\xca\x02\n)turbulent_variable_initialization_type_sa\x18\x85$ \x01(\x0e\x32<.luminary.proto.client.TurbulentVariableInitializationTypeSaB\xd7\x01\x82\xb2\x19\x04 \xeb\xc3\x01\x92\xb2\x19\xca\x01\x1a\xc7\x01\n\x99\x01\x12\x96\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n+\n)\x08\xd2\x1c\x12\x0f\x46\x41RFIELD_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\xa3\x02\n\x10uniform_nu_tilde\x18\x92\xfd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe4\x01\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb0\x01\x1a\xad\x01\nC\nA\x08\xb3\x80\x04\x12\x10INIT_SA_VARIABLE\x1a)turbulent_variable_initialization_type_sa\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xcb\x02\n-turbulent_variable_initialization_type_komega\x18\x97N \x01(\x0e\x32@.luminary.proto.client.TurbulentVariableInitializationTypeKomegaB\xd0\x01\x82\xb2\x19\x03 \x9d\x13\x92\xb2\x19\xc4\x01\x1a\xc1\x01\n\x99\x01\x12\x96\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n+\n)\x08\xd2\x1c\x12\x0f\x46\x41RFIELD_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12\xc5\x02\n\x1einit_turbulent_viscosity_ratio\x18\xe0\xa3\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf8\x01\x82\xb2\x19\x0b\n\t\t\xc6\xb8\'\x0c\xa4\xef\xca?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc4\x01\x12\xc1\x01\ni\ng\x08\x9d\x13\x12\x33INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\nT\nR\x08\xeb\xc3\x01\x12!INIT_TURBULENT_VISCOSITY_RATIO_SA\x1a)turbulent_variable_initialization_type_sa\x12\xb3\x02\n\x18init_turbulent_viscosity\x18\xfd\xca\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xec\x01\x82\xb2\x19\x0b\n\t\t\xb9\xc0L\xb1\x86\x96\xcf>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb8\x01\x12\xb5\x01\nc\na\x08\xa5R\x12-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\nN\nL\x08\xf3\xbd\x03\x12\x1bINIT_TURBULENT_VISCOSITY_SA\x1a)turbulent_variable_initialization_type_sa\x12\xcf\x02\n\x19init_turbulence_intensity\x18\x9e\xe1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x87\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xd3\x01\x12\xd0\x01\nc\na\x08\xa5R\x12-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\ni\ng\x08\x9d\x13\x12\x33INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\x12\xa1\x02\n\x0buniform_tke\x18\xc3\xbb\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe7\x01\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb3\x01\x1a\xb0\x01\nL\nJ\x08\x85\xb2\x01\x12\x15INIT_KOMEGA_VARIABLES\x1a-turbulent_variable_initialization_type_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xa3\x02\n\runiform_omega\x18\xdb\xcf\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe7\x01\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb3\x01\x1a\xb0\x01\nL\nJ\x08\x85\xb2\x01\x12\x15INIT_KOMEGA_VARIABLES\x1a-turbulent_variable_initialization_type_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x95\x01\n\x16verification_solutions\x18\xc4\xe9\x03 \x01(\x0e\x32,.luminary.proto.client.VerificationSolutionsBE\x82\xb2\x19\x04 \xf2\xc4\x03\x92\xb2\x19\x39\x1a\x37\n\x02*\x00\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\x12\xd3\x01\n\x07tgv_rho\x18\x9e\x8f\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xd1\x01\n\x05tgv_p\x18\x87\xa3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xd1\x01\n\x05tgv_v\x18\xd7\x9a\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xcd\x01\n\x0cshocktube_p1\x18\x98\x15 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x93\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xce\x01\n\x0cshocktube_p4\x18\xfa\xfd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x93\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xce\x01\n\x0cshocktube_t1\x18\xdd\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x93\x01\x82\xb2\x19\x0b\n\t\t\xf5\xf3\xa6\"\x15\xc6\x66?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xce\x01\n\x0cshocktube_t4\x18\xbc\xfe\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x93\x01\x82\xb2\x19\x0b\n\t\t\xa7\"\x15\xc6\x16\x82l?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xcc\x01\n\x0bshuosher_p1\x18\xd6\xb9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t{\x83/L\xa6\xaa$@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xce\x01\n\rshuosher_rho1\x18\xfa\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\to\xf6\x07\xcam\xdb\x0e@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcb\x01\n\x0bshuosher_m1\x18\xca? \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcc\x01\n\x0bshuosher_p2\x18\x9d\xeb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xce\x01\n\rshuosher_rho2\x18\x8e\xa7\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcc\x01\n\x0bshuosher_m2\x18\xc3\xd2\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcc\x01\n\x0cshuosher_amp\x18\xef\x46 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcc\x01\n\x0bshuosher_kx\x18\xed\xad\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x14@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd9\x01\n\x11\x64isturbancewave_p\x18\x8a\x43 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t\xb3\x0cq\xac\x8b\xdb\xe6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xda\x01\n\x11\x64isturbancewave_t\x18\x9a\xc1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zd?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xda\x01\n\x11\x64isturbancewave_m\x18\xad\xb8\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xd9\x01\n\x10\x61\x63ousticwave_amp\x18\xe8\xbd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xda\x01\n\x11vorticitywave_amp\x18\xd2\xbe\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xd7\x01\n\x0f\x65ntropywave_amp\x18\xc6* \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xdb\x01\n\x12\x64isturbancewave_kx\x18\x8e\xdd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x14@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xd2\x01\n\x0enormalshock_p1\x18\x8f\xe2\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\xb3\x0cq\xac\x8b\xdb\xe6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd1\x01\n\x0enormalshock_t1\x18\xc4J \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zd?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd2\x01\n\x0enormalshock_m1\x18\x82\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x95\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd3\x01\n\x0eshockvortex_p1\x18\xb7\xf1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd2\x01\n\x0eshockvortex_t1\x18\x99r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\ty\xe9&1\x08\xacl?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd3\x01\n\x0eshockvortex_m1\x18\xd2\xdf\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd2\x01\n\x0eshockvortex_mv\x18\x82% \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd3\x01\n\x0eshockvortex_xv\x18\x9b\xd4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd3\x01\n\x0eshockvortex_zv\x18\xdc\xcc\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd3\x01\n\x0eshockvortex_av\x18\x92\x9c\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\t333333\xb3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd2\x01\n\x0eshockvortex_bv\x18\x8e\x66 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\x82\xb2\x19\x0b\n\t\tffffff\xc6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xf4\x01\n\x05mms_k\x18\xb4\xd6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc0\x01\x82\xb2\x19\x0b\n\t\t\x18-DT\xfb!\t@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x8c\x01\x1a\x89\x01\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\nT\x12R\n)\n\'\x08\xe2\xd6\x02\x12\tEULER_MMS\x1a\x16verification_solutions\n%\n#\x08\xef\x18\x12\x06NS_MMS\x1a\x16verification_solutions\x12\xf3\x01\n\x05mms_a\x18\x87( \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc0\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x8c\x01\x1a\x89\x01\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\nT\x12R\n)\n\'\x08\xe2\xd6\x02\x12\tEULER_MMS\x1a\x16verification_solutions\n%\n#\x08\xef\x18\x12\x06NS_MMS\x1a\x16verification_solutions\x12\xde\x01\n\x16inviscid_vortex_minfty\x18\x96\xeb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xdd\x01\n\x16inviscid_vortex_pinfty\x18\xf1] \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xdd\x01\n\x16inviscid_vortex_tinfty\x18\xda\x10 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc0r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xda\x01\n\x12inviscid_vortex_xv\x18\x9b\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xda\x01\n\x12inviscid_vortex_yv\x18\x94\xef\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe0\x01\n\x18inviscid_vortex_xflowdir\x18\x80\x9c\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe0\x01\n\x18inviscid_vortex_yflowdir\x18\x92\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xde\x01\n\x17inviscid_vortex_rvortex\x18\xfb\x62 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zt?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe1\x01\n\x1ainviscid_vortex_betavortex\x18\xdd\x0b \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x94?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12R\n\x15\x65xisting_solution_url\x18\xdcG \x01(\tB2\x92\xb2\x19.\n,\x08\xe4\xd1\x01\x12\x11\x45XISTING_SOLUTION\x1a\x13initialization_type\x12&\n\x14\x65xisting_solution_id\x18\xd5\xd6\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xeb\x01\n\x17\x42ladeElementAirfoilData\x12\x14\n\nairfoil_id\x18\xb1\x85\x03 \x01(\t\x12\x16\n\x0c\x61irfoil_name\x18\xac\xed\x01 \x01(\t\x12\x63\n\x16\x61irfoil_radial_station\x18\xbaG \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB \x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x12=\n\x18\x61irfoil_performance_data\x18\xca@ \x01(\tB\x1a\x9a\xb2\x19\x16\n\x04\x08\xc6\xce\x02\n\x02\x08\x06\x12\x02\x08\x12\x12\x02\x08\x13\x12\x02\x08#\"\x91\'\n\x10PhysicalBehavior\x12&\n\x14physical_behavior_id\x18\x9f\xfd\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12(\n\x16physical_behavior_name\x18\xc5\x9f\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12X\n\x17physical_behavior_model\x18\xa7{ \x01(\x0e\x32,.luminary.proto.client.PhysicalBehaviorModelB\x08\x82\xb2\x19\x04 \xda\xf7\x02\x12\x88\x01\n\x13\x61\x63tuator_disk_model\x18\xb1< \x01(\x0e\x32(.luminary.proto.client.ActuatorDiskModelB@\x82\xb2\x19\x04 \xc8\xb2\x03\x92\xb2\x19\x34\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\x12\xd8\x03\n\x14\x61\x63tuator_disk_thrust\x18\xeb\r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe2\x02\x12\xdf\x02\n9\n7\x08\xc8\xb2\x03\x12\x1c\x41\x43TUATOR_DISK_UNIFORM_THRUST\x1a\x13\x61\x63tuator_disk_model\n=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\n\xe2\x01\x1a\xdf\x01\nm\x12k\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\n4\n2\x08\x8c\x1c\x12\x11\x42\x45M_TARGET_THRUST\x1a\x1a\x61\x63tuator_disk_bem_strategy\x12\xb2\x01\n\x14\x61\x63tuator_disk_torque\x18\xc3\x89\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBp\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x12\xb7\x01\n\x1a\x61\x63tuator_disk_radial_force\x18\xf3p \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBp\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x12\x7f\n\x1f\x61\x63tuator_disk_radial_table_data\x18\xfc! \x01(\tBU\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\x10\n\x02\x08*\x12\x02\x08\'\x12\x02\x08(\x12\x02\x08)\x12\xbb\x01\n\x14\x66\x61n_curve_table_data\x18\xf5# \x01(\tB\x9b\x01\x92\xb2\x19\x88\x01\x12\x85\x01\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\n\n\x03\x08\xda\x04\x12\x03\x08\xd9\x04\x12\xff\x01\n\x15head_loss_coefficient\x18\xcbO \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbc\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x88\x01\x12\x85\x01\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x12\x88\x01\n\x13\x61\x63tuator_line_model\x18\x9e\xab\x01 \x01(\x0e\x32(.luminary.proto.client.ActuatorLineModelB?\x82\xb2\x19\x04 \xe1\xfb\x02\x92\xb2\x19\x33\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\x12\xe8\x02\n\x1b\x61\x63tuator_disk_rotation_rate\x18\xab\xdc\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xce\x02\n\x1a\x61\x63tuator_disk_bem_strategy\x18\x87\xd7\x01 \x01(\x0e\x32..luminary.proto.client.ActuatorDiskBemStrategyB\xf7\x01\x82\xb2\x19\x04 \x93\x93\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xd4\x02\n\x19\x61\x63tuator_disk_blade_count\x18\xf8\x61 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x95\x02\x82\xb2\x19\x02\x30\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xde\x02\n\x1c\x62lade_element_pitch_schedule\x18\xdbs \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x96\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12s\n\x1b\x62lade_element_flap_schedule\x18\xc5\x17 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12s\n\x1a\x62lade_element_lag_schedule\x18\xed\xe5\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\xaf\x02\n\x1b\x62lade_element_geometry_data\x18\xa3\xc8\x02 \x01(\tB\x87\x02\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x9a\xb2\x19\x14\n\x02\x08*\x12\x02\x08+\x12\x02\x08,\x12\x02\x08-\x12\x02\x08.\x12\xc9\x04\n#blade_element_reference_sound_speed\x18\xebX \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf8\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00@u@\x8a\xb2\x19\t\t\xbb\xbd\xd7\xd9\xdf|\xdb=\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc4\x03\x12\xc1\x03\n\xde\x01\x1a\xdb\x01\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\n\xdd\x01\x1a\xda\x01\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\x8d\x01\n\x15particle_source_model\x18\xa9\x97\x02 \x01(\x0e\x32*.luminary.proto.client.ParticleSourceModelB@\x82\xb2\x19\x04 \xa0\x9c\x02\x92\xb2\x19\x34\n2\x08\xbb\x9f\x02\x12\x13SOURCE_POINTS_MODEL\x1a\x17physical_behavior_model\x12\xb6\x01\n#source_particle_mass_injection_rate\x18\xfc\xd9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBe\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x32\n0\x08\xa0\x9c\x02\x12\x13GENERAL_MASS_SOURCE\x1a\x15particle_source_model\x12\xb4\x01\n#source_particle_acceleration_vector\x18\xab\xe0\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3Be\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x1f\x85\xebQ\xb8\x9e#\xc0\x92\xb2\x19:\n8\x08\x80\xc9\x01\x12\x1bGENERAL_ACCELERATION_SOURCE\x1a\x15particle_source_model\x12T\n\x1a\x62lade_element_airfoil_data\x18\xdd\x8f\x03 \x03(\x0b\x32..luminary.proto.client.BladeElementAirfoilData\"\x99\x06\n\nCavitation\x12s\n\x10\x63\x61vitation_model\x18\xadt \x01(\x0e\x32&.luminary.proto.client.CavitationModelB0\x82\xb2\x19\x04 \xb2\xe9\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xa3\x01\n\x1e\x64\x65nsity_vapor_phase_cavitation\x18\xce\xc7\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBW\x82\xb2\x19\x0b\n\t\t7\x1a\xc0[ A\xe7?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xa3\x01\n\x1esaturation_pressure_cavitation\x18\xc4\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBW\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc4\xa8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\x98\x01\n\x10n0_sauer_schnerr\x18\x92\xc0\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBZ\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x84\xd7\x97\x41\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xb2\xe9\x01\x12\rSAUER_SCHNERR\x1a\x10\x63\x61vitation_model\x12\xae\x01\n\x08n_reboud\x18\x85\x96\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBx\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x45\x1a\x43\n$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\"\xf6\x07\n\x0ePorousBehavior\x12#\n\x12porous_behavior_id\x18\xed. \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12%\n\x14porous_behavior_name\x18\xdfo \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\"\n\x08zone_ids\x18\xfe\xa9\x02 \x03(\tB\x0e\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12S\n\x11porous_model_type\x18\xbc\xc9\x02 \x01(\x0e\x32&.luminary.proto.client.PorousModelTypeB\x0e\x82\xb2\x19\x04 \xab\xb2\x03\x92\xb2\x19\x02*\x00\x12\xae\x01\n\x0b\x64\x61rcy_coeff\x18\xf5\xef\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3Bw\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\x12\xb4\x01\n\x11\x66orchheimer_coeff\x18\xe8\xc4\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3Bw\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\x12\xac\x01\n\x18porous_heat_source_power\x18\xd6\x8f\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBf\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xbb\x01\n(porous_heat_source_power_per_unit_volume\x18\x9d \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBf\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12J\n\x0cref_frame_id\x18\xeb\xe1\x02 \x01(\tB2\x18\x01\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\"\xd9\x06\n\x05\x46luid\x12\x37\n\x0b\x62\x61sic_fluid\x18\x88u \x01(\x0b\x32!.luminary.proto.client.BasicFluid\x12\x37\n\nturbulence\x18\x81\xb0\x01 \x01(\x0b\x32!.luminary.proto.client.Turbulence\x12O\n\x17solution_controls_fluid\x18\xfa\xfc\x01 \x01(\x0b\x32,.luminary.proto.client.SolutionControlsFluid\x12L\n\x16\x61\x64joint_controls_fluid\x18\xa2j \x01(\x0b\x32+.luminary.proto.client.AdjointControlsFluid\x12Y\n\x1cspatial_discretization_fluid\x18\xb1\xfb\x02 \x01(\x0b\x32\x31.luminary.proto.client.SpatialDiscretizationFluid\x12S\n\x19\x62oundary_conditions_fluid\x18\xdd\xa7\x01 \x03(\x0b\x32..luminary.proto.client.BoundaryConditionsFluid\x12\x46\n\x12sliding_interfaces\x18\xae\xe6\x03 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12<\n\rperiodic_pair\x18\xec\x81\x04 \x03(\x0b\x32#.luminary.proto.client.PeriodicPair\x12J\n\x14initialization_fluid\x18\xa0\x86\x02 \x01(\x0b\x32*.luminary.proto.client.InitializationFluid\x12\x43\n\x11physical_behavior\x18\xd8U \x03(\x0b\x32\'.luminary.proto.client.PhysicalBehavior\x12\x36\n\ncavitation\x18\xab\x19 \x01(\x0b\x32!.luminary.proto.client.Cavitation\x12@\n\x0fporous_behavior\x18\xeb\xa0\x02 \x03(\x0b\x32%.luminary.proto.client.PorousBehavior\"\xb9\x01\n\x07Physics\x12\x44\n\x12physics_identifier\x18\xb2\x1a \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\x12-\n\x04heat\x18\xab\xb4\x01 \x01(\x0b\x32\x1b.luminary.proto.client.HeatH\x00\x12/\n\x05\x66luid\x18\x86\xbc\x01 \x01(\x0b\x32\x1c.luminary.proto.client.FluidH\x00\x42\x08\n\x06params\"\x7f\n\x1bMultiPhysicsCouplingOptions\x12`\n\x1cmp_coupling_lin_sol_coupling\x18\xf0\" \x01(\x0e\x32/.luminary.proto.client.MpCouplingLinSolCouplingB\x08\x82\xb2\x19\x04 \xd7\x9e\x02\"\x99\x0e\n\x0fSimulationParam\x12\x10\n\x06schema\x18\x8b\xbe\x03 \x01(\t\x12S\n\x0enamed_variable\x18\xf6\xfd\x03 \x03(\x0b\x32\x39.luminary.proto.client.SimulationParam.NamedVariableEntry\x12-\n\x05input\x18\xed\x92\x03 \x01(\x0b\x32\x1c.luminary.proto.client.Input\x12@\n\x0fmaterial_entity\x18\x88\x95\x02 \x03(\x0b\x32%.luminary.proto.client.MaterialEntity\x12;\n\rvolume_entity\x18\x9c) \x03(\x0b\x32#.luminary.proto.client.VolumeEntity\x12\x30\n\x07general\x18\xeb\x1f \x01(\x0b\x32\x1e.luminary.proto.client.General\x12\x31\n\x07\x61\x64joint\x18\x94\xf8\x01 \x01(\x0b\x32\x1e.luminary.proto.client.Adjoint\x12*\n\x04time\x18\xe1\x66 \x01(\x0b\x32\x1b.luminary.proto.client.Time\x12\x38\n\x0bmotion_data\x18\xe2\xa4\x03 \x03(\x0b\x32!.luminary.proto.client.MotionData\x12=\n\x0eparticle_group\x18\xd5\t \x03(\x0b\x32$.luminary.proto.client.ParticleGroup\x12<\n\rmonitor_plane\x18\x8a\xdb\x01 \x03(\x0b\x32#.luminary.proto.client.MonitorPlane\x12\x35\n\nbody_frame\x18\xe3\x12 \x01(\x0b\x32 .luminary.proto.client.BodyFrame\x12U\n\x0csurface_name\x18\xe0\xb9\x02 \x03(\x0b\x32\x37.luminary.proto.client.SimulationParam.SurfaceNameEntryB\x04\xa0\xb2\x19\x01\x12\x41\n\x05table\x18\xd0\x1a \x03(\x0b\x32\x31.luminary.proto.client.SimulationParam.TableEntry\x12W\n\x10table_references\x18\xe4\x96\x03 \x03(\x0b\x32;.luminary.proto.client.SimulationParam.TableReferencesEntry\x12/\n\x06output\x18\xef\xc1\x03 \x01(\x0b\x32\x1d.luminary.proto.client.Output\x12J\n\x14\x63onvergence_criteria\x18\x9a\xdc\x03 \x01(\x0b\x32*.luminary.proto.client.ConvergenceCriteria\x12I\n\x14\x65ntity_relationships\x18\xd6X \x01(\x0b\x32*.luminary.proto.client.EntityRelationships\x12\x42\n\x10reference_values\x18\xb2\x9d\x02 \x01(\x0b\x32&.luminary.proto.client.ReferenceValues\x12Q\n\x18\x61\x64\x61ptive_mesh_refinement\x18\xff\xb4\x01 \x01(\x0b\x32-.luminary.proto.client.AdaptiveMeshRefinement\x12\x31\n\x07physics\x18\xac\xe8\x01 \x03(\x0b\x32\x1e.luminary.proto.client.Physics\x12=\n\ninterfaces\x18\xf5\x04 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12P\n\x13mp_coupling_options\x18\xe7\x13 \x01(\x0b\x32\x32.luminary.proto.client.MultiPhysicsCouplingOptions\x1aV\n\x12NamedVariableEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType:\x02\x38\x01\x1aV\n\x10SurfaceNameEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".luminary.proto.client.SurfaceName:\x02\x38\x01\x1aT\n\nTableEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.table.RectilinearTable:\x02\x38\x01\x1aV\n\x14TableReferencesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.table.Metadata:\x02\x38\x01*\x7f\n\x13\x44\x65nsityRelationship\x12 \n\x1cINVALID_DENSITY_RELATIONSHIP\x10\x00\x12\x0f\n\tIDEAL_GAS\x10\xec\xa4\x02\x12\x16\n\x10\x43ONSTANT_DENSITY\x10\x91\xe1\x01\x12\x1d\n\x17\x43ONSTANT_DENSITY_ENERGY\x10\xb1\xc6\x02*\xcd\x01\n\x1aLaminarThermalConductivity\x12(\n$INVALID_LAMINAR_THERMAL_CONDUCTIVITY\x10\x00\x12&\n LAMINAR_CONSTANT_THERMAL_PRANDTL\x10\xb1\xeb\x02\x12+\n%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\x10\xb5\xb4\x02\x12\x30\n*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x10\xef\xa9\x02*i\n\x17\x42oussinesqApproximation\x12$\n INVALID_BOUSSINESQ_APPROXIMATION\x10\x00\x12\x13\n\x0e\x42OUSSINESQ_OFF\x10\xc2`\x12\x13\n\rBOUSSINESQ_ON\x10\x91\xcb\x01*\x9d\x01\n\x13MaterialFluidPreset\x12!\n\x1dINVALID_MATERIAL_FLUID_PRESET\x10\x00\x12!\n\x1bUNSET_MATERIAL_FLUID_PRESET\x10\x9a\xc1\x02\x12\x12\n\x0cSTANDARD_AIR\x10\xb8\xdc\x01\x12\x0f\n\tWATER_NTP\x10\xc4\xbe\x01\x12\x1b\n\x15\x43USTOM_MATERIAL_FLUID\x10\xcc\xfd\x01*\xb1\x01\n\x1eLaminarViscosityModelNewtonian\x12-\n)INVALID_LAMINAR_VISCOSITY_MODEL_NEWTONIAN\x10\x00\x12\x10\n\nSUTHERLAND\x10\x8b\x9c\x02\x12\x1f\n\x1aLAMINAR_CONSTANT_VISCOSITY\x10\xb8H\x12-\n\'TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY\x10\x84\xc6\x02*\x9d\x01\n\x13MaterialSolidPreset\x12!\n\x1dINVALID_MATERIAL_SOLID_PRESET\x10\x00\x12\x0e\n\x08\x41LUMINUM\x10\xb4\x92\x02\x12\x0c\n\x06\x43OPPER\x10\xdc\xd8\x03\x12\n\n\x04IRON\x10\xea\xf5\x01\x12\x0c\n\x06NICKEL\x10\xd3\xe9\x02\x12\x0e\n\x08TITANIUM\x10\xf9\xe7\x02\x12\x1b\n\x15\x43USTOM_MATERIAL_SOLID\x10\xa6\xeb\x03*K\n\tFloatType\x12\x16\n\x12INVALID_FLOAT_TYPE\x10\x00\x12\x0c\n\x06\x44OUBLE\x10\xbb\xcc\x01\x12\x0b\n\x05\x41\x44T1D\x10\xba\xb8\x03\x12\x0b\n\x05\x41\x44\x41\x31\x44\x10\xc4\xca\x03*C\n\x07Gravity\x12\x13\n\x0fINVALID_GRAVITY\x10\x00\x12\x11\n\x0bGRAVITY_OFF\x10\x95\xe3\x03\x12\x10\n\nGRAVITY_ON\x10\x9c\xe2\x03*H\n\x0c\x46lowBehavior\x12\x19\n\x15INVALID_FLOW_BEHAVIOR\x10\x00\x12\x0c\n\x06STEADY\x10\x80\xf9\x03\x12\x0f\n\tTRANSIENT\x10\xfe\x9d\x02*S\n\x0cTimeMarching\x12\x19\n\x15INVALID_TIME_MARCHING\x10\x00\x12\x13\n\rTIME_IMPLICIT\x10\xaf\x84\x02\x12\x13\n\rTIME_EXPLICIT\x10\x91\xbe\x01*Y\n\x11TimeImplicitOrder\x12\x1f\n\x1bINVALID_TIME_IMPLICIT_ORDER\x10\x00\x12\x11\n\x0bTIME_SECOND\x10\x87\x8c\x03\x12\x10\n\nTIME_FIRST\x10\xe7\xb7\x02*V\n\x16PhysicalTimeStepMethod\x12%\n!INVALID_PHYSICAL_TIME_STEP_METHOD\x10\x00\x12\x15\n\x0f\x46IXED_TIME_STEP\x10\xc0\xf8\x01*]\n\x0cTimeStepRamp\x12\x1a\n\x16INVALID_TIME_STEP_RAMP\x10\x00\x12\x18\n\x12TIME_STEP_RAMP_OFF\x10\x93\xf6\x01\x12\x17\n\x11TIME_STEP_RAMP_ON\x10\xdc\xae\x02*m\n\x11\x43omputeStatistics\x12\x1e\n\x1aINVALID_COMPUTE_STATISTICS\x10\x00\x12\x1c\n\x16\x43OMPUTE_STATISTICS_OFF\x10\xf2\xbc\x02\x12\x1a\n\x15\x43OMPUTE_STATISTICS_ON\x10\xb3\x08*\x9c\x01\n\nMotionType\x12\x17\n\x13INVALID_MOTION_TYPE\x10\x00\x12\x0f\n\tNO_MOTION\x10\xb4\xa8\x01\x12!\n\x1b\x43ONSTANT_TRANSLATION_MOTION\x10\xff\xd0\x01\x12\x1d\n\x17\x43ONSTANT_ANGULAR_MOTION\x10\x8a\xf6\x02\x12\"\n\x18\x43ONSTANT_VELOCITY_MOTION\x10\xe7\xe7\x02\x1a\x02\x08\x01*u\n\x11MotionFormulation\x12\x1e\n\x1aINVALID_MOTION_FORMULATION\x10\x00\x12\"\n\x1c\x41UTOMATIC_MOTION_FORMULATION\x10\x91\xeb\x02\x12\x1c\n\x16MRF_MOTION_FORMULATION\x10\xe4\xde\x02*\x81\x01\n\x13MotionSpecification\x12 \n\x1cINVALID_MOTION_SPECIFICATION\x10\x00\x12%\n\x1fMOTION_SPECIFICATION_REPOSITION\x10\x91\xb4\x01\x12!\n\x1bMOTION_SPECIFICATION_NORMAL\x10\x9e\xb0\x03*z\n\rTransformType\x12\x1a\n\x16INVALID_TRANSFORM_TYPE\x10\x00\x12\x12\n\x0cNO_TRANSFORM\x10\xd0\xe7\x02\x12\x1a\n\x14ROTATIONAL_TRANSFORM\x10\xe6\xb8\x03\x12\x1d\n\x17TRANSLATIONAL_TRANSFORM\x10\xfb\xcc\x02*\x86\x01\n\x11ParticleGroupType\x12\x1f\n\x1bINVALID_PARTICLE_GROUP_TYPE\x10\x00\x12\x13\n\rACTUATOR_DISK\x10\xd9\xdf\x01\x12\x13\n\rACTUATOR_LINE\x10\xb2\xb8\x03\x12\x13\n\rSOURCE_POINTS\x10\xa8\x92\x02\x12\x11\n\x0cPROBE_POINTS\x10\xdd>*\xaa\x01\n ActuatorDiskOrientationSelection\x12/\n+INVALID_ACTUATOR_DISK_ORIENTATION_SELECTION\x10\x00\x12+\n%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\x10\xf2\x95\x03\x12(\n#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\x10\xbe\x38*_\n\x0b\x44\x65\x62ugOutput\x12\x18\n\x14INVALID_DEBUG_OUTPUT\x10\x00\x12\x1b\n\x15SOLN_DEBUG_OUTPUT_OFF\x10\xdf\xba\x02\x12\x19\n\x14SOLN_DEBUG_OUTPUT_ON\x10\x83)*\xa5\x01\n\x1e\x44\x65\x62ugOutputInteriorSurfaceData\x12.\n*INVALID_DEBUG_OUTPUT_INTERIOR_SURFACE_DATA\x10\x00\x12)\n#SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF\x10\x9a\xac\x02\x12(\n\"SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON\x10\xf6\xa8\x01*\\\n\rMeshingMethod\x12\x1a\n\x16INVALID_MESHING_METHOD\x10\x00\x12\x18\n\x12MESH_METHOD_MANUAL\x10\xa2\x90\x02\x12\x15\n\x10MESH_METHOD_AUTO\x10\xfb\x0c*V\n\x06\x41llTet\x12\x13\n\x0fINVALID_ALL_TET\x10\x00\x12\x12\n\rALL_TET_UNSET\x10\xf6 \x12\x11\n\x0b\x41LL_TET_OFF\x10\xbc\xc0\x01\x12\x10\n\nALL_TET_ON\x10\x8a\xfa\x02*Q\n\x10RelaxationMethod\x12\x1d\n\x19INVALID_RELAXATION_METHOD\x10\x00\x12\x0e\n\x08IMPLICIT\x10\xa0\x9e\x03\x12\x0e\n\x08\x45XPLICIT\x10\xfe\xd3\x01*C\n\x0eImplicitMethod\x12\x1b\n\x17INVALID_IMPLICIT_METHOD\x10\x00\x12\x14\n\x0e\x42\x41\x43KWARD_EULER\x10\xb7\xeb\x03*p\n\x10LinearSolverType\x12\x1e\n\x1aINVALID_LINEAR_SOLVER_TYPE\x10\x00\x12\x07\n\x02GS\x10\xd1}\x12\x0c\n\x07GS_AMGX\x10\xd0t\x12\x15\n\x0f\x41MG_KRYLOV_AMGX\x10\xa9\x8e\x02\x12\x0e\n\x08\x41MG_AMGX\x10\x90\xb0\x01*\x94\x01\n\x12LinsolAmgCycleType\x12!\n\x1dINVALID_LINSOL_AMG_CYCLE_TYPE\x10\x00\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_V\x10\xfd\xd4\x01\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_W\x10\xef\xd4\x03\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_F\x10\xcc\xc3\x01*\x96\x01\n\x11LinsolAmgSmoother\x12\x1f\n\x1bINVALID_LINSOL_AMG_SMOOTHER\x10\x00\x12 \n\x1aLINSOL_AMG_SMOOTHER_JACOBI\x10\xf8\xe0\x02\x12\x1c\n\x16LINSOL_AMG_SMOOTHER_GS\x10\xbf\xcf\x02\x12 \n\x1aLINSOL_AMG_SMOOTHER_SYM_GS\x10\xd1\xff\x02*]\n\x0e\x45xplicitMethod\x12\x1b\n\x17INVALID_EXPLICIT_METHOD\x10\x00\x12\n\n\x04RK_4\x10\xeb\xca\x02\x12\r\n\x08TVD_RK_3\x10\xb6]\x12\x13\n\rFORWARD_EULER\x10\x9a\xa7\x01*\x90\x02\n\x1aSolutionControlsHeatPreset\x12)\n%INVALID_SOLUTION_CONTROLS_HEAT_PRESET\x10\x00\x12)\n#UNSET_SOLUTION_CONTROLS_HEAT_PRESET\x10\x83\xbd\x01\x12#\n\x1e\x44\x45\x46\x41ULT_SOLUTION_CONTROLS_HEAT\x10\xe4\x05\x12)\n#INTERMEDIATE_SOLUTION_CONTROLS_HEAT\x10\xf5\xde\x03\x12\'\n!AGGRESSIVE_SOLUTION_CONTROLS_HEAT\x10\xb7\xcc\x03\x12#\n\x1d\x43USTOM_SOLUTION_CONTROLS_HEAT\x10\xec\xd7\x02*\x9a\x01\n\x15\x41\x64jointSolutionMethod\x12#\n\x1fINVALID_ADJOINT_SOLUTION_METHOD\x10\x00\x12\x1a\n\x14\x41\x44JOINT_METHOD_GMRES\x10\xf7\xdd\x02\x12\x1f\n\x19\x41\x44JOINT_METHOD_RICHARDSON\x10\x92\xeb\x01\x12\x1f\n\x1a\x41\x44JOINT_METHOD_ALGORITHMIC\x10\xc0\x37*\x8e\x01\n\x0eGradientMethod\x12\x1b\n\x17INVALID_GRADIENT_METHOD\x10\x00\x12\n\n\x04HLSQ\x10\x9b\xe8\x03\x12\x1c\n\x16WEIGHTED_LEAST_SQUARES\x10\xa7\xc2\x02\x12\x11\n\x0bGREEN_GAUSS\x10\xe7\xe8\x01\x12\r\n\x07LC_HLSQ\x10\xf0\x8a\x03\x12\x13\n\x0eNODAL_GRADIENT\x10\xd8v*^\n\rGeometryFixes\x12\x1a\n\x16INVALID_GEOMETRY_FIXES\x10\x00\x12\x17\n\x11GEOMETRY_FIXES_ON\x10\xd9\xe6\x01\x12\x18\n\x12GEOMETRY_FIXES_OFF\x10\xf0\xb3\x03*\xb4\x02\n\x1fSpatialDiscretizationHeatPreset\x12.\n*INVALID_SPATIAL_DISCRETIZATION_HEAT_PRESET\x10\x00\x12.\n(UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET\x10\xc3\xa6\x02\x12(\n#DEFAULT_SPATIAL_DISCRETIZATION_HEAT\x10\xb1\x34\x12.\n(CONSERVATIVE_SPATIAL_DISCRETIZATION_HEAT\x10\xea\xd7\x03\x12.\n)HIGH_ACCURACY_SPATIAL_DISCRETIZATION_HEAT\x10\xd3+\x12\'\n\"CUSTOM_SPATIAL_DISCRETIZATION_HEAT\x10\xb6\x15*\x9a\x01\n\x0bProfileType\x12\x18\n\x14INVALID_PROFILE_TYPE\x10\x00\x12\x11\n\x0b\x43\x41RTESIAN_X\x10\x87\x87\x04\x12\x11\n\x0b\x43\x41RTESIAN_Y\x10\xc5\xb6\x02\x12\x11\n\x0b\x43\x41RTESIAN_Z\x10\x8c\xb4\x01\x12\x0e\n\x08RADIAL_X\x10\xc5\xee\x03\x12\r\n\x08RADIAL_Y\x10\xc1u\x12\r\n\x08RADIAL_Z\x10\xfe\x62\x12\n\n\x04TIME\x10\x89\xb1\x01*\xc3\x01\n\x14HeatPhysicalBoundary\x12\"\n\x1eINVALID_HEAT_PHYSICAL_BOUNDARY\x10\x00\x12\x18\n\x12HEAT_BC_ISOTHERMAL\x10\x9e\xc5\x01\x12\x17\n\x11HEAT_BC_HEAT_FLUX\x10\xa4\xec\x03\x12\"\n\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x10\xe7\xe1\x03\x12\x16\n\x10HEAT_BC_SYMMETRY\x10\xd0\xb2\x03\x12\x18\n\x12HEAT_BC_CONVECTION\x10\x93\xc3\x03*\xbb\x01\n\x12InitializationType\x12\x1f\n\x1bINVALID_INITIALIZATION_TYPE\x10\x00\x12\x14\n\x0eUNIFORM_VALUES\x10\xa2\xbe\x01\x12\x14\n\x0f\x46\x41RFIELD_VALUES\x10\xd2\x1c\x12#\n\x1dINITIALIZATION_POTENTIAL_FLOW\x10\xbf\xba\x02\x12\x1a\n\x15VERIFICATION_SOLUTION\x10\x87Y\x12\x17\n\x11\x45XISTING_SOLUTION\x10\xe4\xd1\x01*}\n\x0eHeatSourceType\x12\x1c\n\x18INVALID_HEAT_SOURCE_TYPE\x10\x00\x12\x1c\n\x16HEAT_SOURCE_TYPE_POWER\x10\xc2\xe2\x01\x12/\n)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\x10\xbf\xde\x03*b\n\rInterfaceType\x12\x1a\n\x16INVALID_INTERFACE_TYPE\x10\x00\x12\x17\n\x11GENERAL_INTERFACE\x10\xc2\xa3\x03\x12\x1c\n\x16MIXING_PLANE_INTERFACE\x10\xaa\xdf\x02*U\n\x0ePeriodicBcType\x12\x1c\n\x18INVALID_PERIODIC_BC_TYPE\x10\x00\x12\x13\n\rTRANSLATIONAL\x10\xd9\x9d\x01\x12\x10\n\nROTATIONAL\x10\xee\x8c\x02*`\n\tFluidType\x12\x16\n\x12INVALID_FLUID_TYPE\x10\x00\x12\x12\n\x0cSINGLE_PHASE\x10\xdd\xf0\x01\x12\x16\n\x10\x43\x41VITATING_FLUID\x10\xa9\xba\x03\x12\x0f\n\tVOF_FLUID\x10\xf8\xcf\x01*i\n\x0cViscousModel\x12\x19\n\x15INVALID_VISCOUS_MODEL\x10\x00\x12\n\n\x04RANS\x10\x92\x95\x02\x12\t\n\x03\x44\x45S\x10\xc7\xb3\x03\x12\t\n\x03LES\x10\x81\x80\x04\x12\r\n\x07LAMINAR\x10\xce\xf7\x02\x12\r\n\x08INVISCID\x10\xc7\x44*\x84\x01\n\x0e\x44\x65sFormulation\x12\x1b\n\x17INVALID_DES_FORMULATION\x10\x00\x12\x0e\n\x08\x44\x44\x45S_VTM\x10\xe6\x8b\x02\x12\x14\n\x0e\x44\x44\x45S_VTM_SIGMA\x10\xfc\x8a\x01\x12\x0b\n\x05IDDES\x10\x94\xf2\x03\x12\t\n\x04\x44\x44\x45S\x10\xef\x35\x12\x0b\n\x05\x44\x45S97\x10\xab\xa1\x02\x12\n\n\x04ZDES\x10\xfd\xc5\x01*@\n\nRansRegion\x12\x17\n\x13INVALID_RANS_REGION\x10\x00\x12\x0b\n\x06INSIDE\x10\xd9s\x12\x0c\n\x07OUTSIDE\x10\xad\x18*\x84\x01\n\x11SubGridScaleModel\x12 \n\x1cINVALID_SUB_GRID_SCALE_MODEL\x10\x00\x12\n\n\x04NONE\x10\xa8\x8c\x03\x12\x11\n\x0bSMAGORINSKY\x10\xa2\x97\x02\x12\x0c\n\x06VREMAN\x10\xf7\xb1\x01\x12\n\n\x04WALE\x10\xc8\xc9\x03\x12\n\n\x05SIGMA\x10\xc7g\x12\x08\n\x03\x41MD\x10\xd4\x1f*\x81\x01\n\x0fTransitionModel\x12\x1c\n\x18INVALID_TRANSITION_MODEL\x10\x00\x12\x13\n\rNO_TRANSITION\x10\xa1\xe8\x03\x12\x10\n\nGAMMA_2015\x10\xd0\x9e\x01\x12\x19\n\x13GAMMA_RE_THETA_2009\x10\xe0\xa7\x02\x12\x0e\n\x08\x41\x46T_2019\x10\xed\x96\x03*\x90\x01\n\x18TransitionModelCrossFlow\x12\'\n#INVALID_TRANSITION_MODEL_CROSS_FLOW\x10\x00\x12%\n\x1fTRANSITION_MODEL_CROSS_FLOW_OFF\x10\x8e\xe5\x01\x12$\n\x1eTRANSITION_MODEL_CROSS_FLOW_ON\x10\x82\xa3\x02*W\n\x0fTurbulenceModel\x12\x1c\n\x18INVALID_TURBULENCE_MODEL\x10\x00\x12\x15\n\x10SPALART_ALLMARAS\x10\xca\x15\x12\x0f\n\nKOMEGA_SST\x10\x96p*7\n\x05QcrSa\x12\x12\n\x0eINVALID_QCR_SA\x10\x00\x12\x0c\n\x07QCR_OFF\x10\x99\x05\x12\x0c\n\x07QCR2000\x10\xcdY*v\n\x14RotationCorrectionSa\x12\"\n\x1eINVALID_ROTATION_CORRECTION_SA\x10\x00\x12\x1d\n\x17ROTATION_CORRECTION_OFF\x10\xfa\x92\x02\x12\x1b\n\x16ROTATION_CORRECTION_ON\x10\xae#*C\n\x06QcrSst\x12\x13\n\x0fINVALID_QCR_SST\x10\x00\x12\x11\n\x0bSST_QCR_OFF\x10\xf9\xeb\x01\x12\x11\n\x0bSST_QCR2000\x10\xfa\xdb\x01*}\n\x18TurbulenceModelConstants\x12&\n\"INVALID_TURBULENCE_MODEL_CONSTANTS\x10\x00\x12\x1c\n\x16\x44\x45\x46\x41ULT_TURB_CONSTANTS\x10\xb4\xd2\x01\x12\x1b\n\x15\x43USTOM_TURB_CONSTANTS\x10\xc7\xa4\x03*j\n\x14PseudoTimeStepMethod\x12#\n\x1fINVALID_PSEUDO_TIME_STEP_METHOD\x10\x00\x12\x0f\n\tCFL_BASED\x10\xe0\xda\x03\x12\x1c\n\x16\x46IXED_PSEUDO_TIME_STEP\x10\xc2\xfe\x01*q\n\x11LocalTimeStepping\x12\x1f\n\x1bINVALID_LOCAL_TIME_STEPPING\x10\x00\x12\x1c\n\x16LOCAL_TIME_STEPPING_ON\x10\x98\xcf\x01\x12\x1d\n\x17LOCAL_TIME_STEPPING_OFF\x10\xce\xd8\x03*]\n\x14JacobianUpdateMethod\x12\"\n\x1eINVALID_JACOBIAN_UPDATE_METHOD\x10\x00\x12!\n\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x10\xf6t*]\n\rRobustStartup\x12\x1a\n\x16INVALID_ROBUST_STARTUP\x10\x00\x12\x17\n\x11ROBUST_STARTUP_ON\x10\x98\xfe\x01\x12\x17\n\x12ROBUST_STARTUP_OFF\x10\xef\x1c*\x96\x02\n\x1bSolutionControlsFluidPreset\x12*\n&INVALID_SOLUTION_CONTROLS_FLUID_PRESET\x10\x00\x12*\n$UNSET_SOLUTION_CONTROLS_FLUID_PRESET\x10\x9f\x91\x03\x12%\n\x1f\x44\x45\x46\x41ULT_SOLUTION_CONTROLS_FLUID\x10\xca\xc3\x03\x12)\n$INTERMEDIATE_SOLUTION_CONTROLS_FLUID\x10\x99V\x12(\n\"AGGRESSIVE_SOLUTION_CONTROLS_FLUID\x10\xfc\xa2\x01\x12#\n\x1e\x43USTOM_SOLUTION_CONTROLS_FLUID\x10\xab\x31*\x7f\n\x1d\x43onvectiveSchemesDensityBased\x12,\n(INVALID_CONVECTIVE_SCHEMES_DENSITY_BASED\x10\x00\x12\t\n\x03ROE\x10\xb1\xbf\x02\x12\t\n\x03LD2\x10\x99\xec\x02\x12\t\n\x03\x45\x43\x32\x10\xa9\x9b\x03\x12\x0f\n\tRHIE_CHOW\x10\xf7\xd5\x02*c\n\x0fPreconditioning\x12\x1b\n\x17INVALID_PRECONDITIONING\x10\x00\x12\x18\n\x12PRECONDITIONING_ON\x10\x88\xfa\x03\x12\x19\n\x13PRECONDITIONING_OFF\x10\xf6\xc4\x02*}\n\x18SkewSymmetricFormulation\x12&\n\"INVALID_SKEW_SYMMETRIC_FORMULATION\x10\x00\x12\x16\n\x11\x43HANDRASEKHAR_EC2\x10\xbe\x41\x12\x16\n\x11\x43HANDRASEKHAR_EC1\x10\x93>\x12\t\n\x04KUYA\x10\xa4>*]\n\x18\x41rtificialViscosityModel\x12&\n\"INVALID_ARTIFICIAL_VISCOSITY_MODEL\x10\x00\x12\x0e\n\x08NO_MODEL\x10\x8a\x8e\x01\x12\t\n\x03LAD\x10\x91\x80\x02*N\n\x11UpwindSchemeOrder\x12\x1f\n\x1bINVALID_UPWIND_SCHEME_ORDER\x10\x00\x12\x0c\n\x06SECOND\x10\xf5\x88\x02\x12\n\n\x05\x46IRST\x10\xfeL*`\n\x11RobustDissipation\x12\x1e\n\x1aINVALID_ROBUST_DISSIPATION\x10\x00\x12\x15\n\x0fROBUST_DISS_OFF\x10\x8d\xbc\x02\x12\x14\n\x0eROBUST_DISS_ON\x10\xe1\xc3\x03*\x85\x01\n\x07Limiter\x12\x13\n\x0fINVALID_LIMITER\x10\x00\x12\x10\n\nNO_LIMITER\x10\x85\x8b\x02\x12\"\n\x1cINVARIANT_VENKATAKRISHNAN_CV\x10\xe8\xda\x01\x12\x15\n\x0fVAN_ALBADA_FACE\x10\x9d\xec\x01\x12\x18\n\x12VENKATAKRISHNAN_CV\x10\xac\x87\x02*\xbc\x02\n SpatialDiscretizationFluidPreset\x12/\n+INVALID_SPATIAL_DISCRETIZATION_FLUID_PRESET\x10\x00\x12/\n)UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET\x10\xf1\x83\x03\x12*\n$DEFAULT_SPATIAL_DISCRETIZATION_FLUID\x10\xfe\xad\x02\x12.\n)CONSERVATIVE_SPATIAL_DISCRETIZATION_FLUID\x10\xd7\x13\x12\x30\n*HIGH_ACCURACY_SPATIAL_DISCRETIZATION_FLUID\x10\xdb\xce\x03\x12(\n#CUSTOM_SPATIAL_DISCRETIZATION_FLUID\x10\xc2R*\x86\x01\n\x10PhysicalBoundary\x12\x1d\n\x19INVALID_PHYSICAL_BOUNDARY\x10\x00\x12\n\n\x04WALL\x10\xdb\xf9\x03\x12\x0b\n\x05INLET\x10\xd1\xec\x02\x12\x0c\n\x06OUTLET\x10\xe2\xaf\x03\x12\r\n\x08SYMMETRY\x10\x9fg\x12\x0e\n\x08\x46\x41RFIELD\x10\xa0\xfb\x01\x12\r\n\x07OVERSET\x10\xb9\x92\x03*T\n\x0cWallMomentum\x12\x19\n\x15INVALID_WALL_MOMENTUM\x10\x00\x12\x0c\n\x07NO_SLIP\x10\xb7V\x12\t\n\x04SLIP\x10\xa3\x1b\x12\x10\n\nWALL_MODEL\x10\xc9\xa1\x03*T\n\nWallEnergy\x12\x17\n\x13INVALID_WALL_ENERGY\x10\x00\x12\x14\n\x0f\x46IXED_HEAT_FLUX\x10\xae\x06\x12\x17\n\x11\x46IXED_TEMPERATURE\x10\xa7\xac\x01*\xbe\x01\n\rInletMomentum\x12\x1a\n\x16INVALID_INLET_MOMENTUM\x10\x00\x12\x1a\n\x14TOTAL_PRESSURE_INLET\x10\x8a\xb2\x03\x12\x15\n\x0fMASS_FLOW_INLET\x10\x9f\x87\x01\x12\x14\n\x0eVELOCITY_INLET\x10\x9e\xcc\x03\x12\x1f\n\x19VELOCITY_COMPONENTS_INLET\x10\xe3\x83\x04\x12\x15\n\x0f\x46\x41N_CURVE_INLET\x10\xc9\xb7\x03\x12\x10\n\nMACH_INLET\x10\x99\xaf\x01*o\n\x16\x44irectionSpecification\x12#\n\x1fINVALID_DIRECTION_SPECIFICATION\x10\x00\x12\x18\n\x12NORMAL_TO_BOUNDARY\x10\xe6\xa7\x03\x12\x16\n\x10\x44IRECTION_VECTOR\x10\xaf\xd4\x01*F\n\x0bInletEnergy\x12\x18\n\x14INVALID_INLET_ENERGY\x10\x00\x12\x1d\n\x17TOTAL_TEMPERATURE_INLET\x10\x9e\xf1\x03*\xad\x01\n\x0eOutletStrategy\x12\x1b\n\x17INVALID_OUTLET_STRATEGY\x10\x00\x12\x15\n\x0fOUTLET_PRESSURE\x10\xf0\xb7\x03\x12\"\n\x1cOUTLET_TARGET_MASS_FLOW_RATE\x10\xdb\xaa\x01\x12+\n&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x10\x82p\x12\x16\n\x10\x46\x41N_CURVE_OUTLET\x10\xf8\xde\x02*\x82\x01\n\x18OutletPressureConstraint\x12&\n\"INVALID_OUTLET_PRESSURE_CONSTRAINT\x10\x00\x12\x1d\n\x17OUTLET_LOCAL_CONSTRAINT\x10\x86\xa8\x02\x12\x1f\n\x19OUTLET_AVERAGE_CONSTRAINT\x10\x9f\x82\x02*p\n\x10\x46\x61rfieldMomentum\x12\x1d\n\x19INVALID_FARFIELD_MOMENTUM\x10\x00\x12\x1a\n\x14\x46\x41RFIELD_MACH_NUMBER\x10\x99\xd9\x02\x12!\n\x1b\x46\x41RFIELD_VELOCITY_MAGNITUDE\x10\xcb\xaf\x02*\x89\x01\n\"FarFieldFlowDirectionSpecification\x12\x32\n.INVALID_FAR_FIELD_FLOW_DIRECTION_SPECIFICATION\x10\x00\x12\x18\n\x12\x46\x41RFIELD_DIRECTION\x10\x86\xed\x01\x12\x15\n\x0f\x46\x41RFIELD_ANGLES\x10\x81\xe9\x03*\xb6\x01\n&TurbulenceSpecificationSpalartAllmaras\x12\x35\n1INVALID_TURBULENCE_SPECIFICATION_SPALART_ALLMARAS\x10\x00\x12\"\n\x1cTURBULENT_VISCOSITY_RATIO_SA\x10\xdf\x8b\x03\x12\x1c\n\x16TURBULENT_VISCOSITY_SA\x10\x95\x9a\x03\x12\x13\n\x0e\x42\x43_SA_VARIABLE\x10\xe4\x34*\xd2\x01\n\x1dTurbulenceSpecificationKomega\x12+\n\'INVALID_TURBULENCE_SPECIFICATION_KOMEGA\x10\x00\x12\x37\n1BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x10\x8e\x8d\x02\x12\x31\n+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x10\xaf\x84\x04\x12\x18\n\x13\x42\x43_KOMEGA_VARIABLES\x10\xecR*\xba\x01\n#PotentialFlowPressureInitialization\x12\x32\n.INVALID_POTENTIAL_FLOW_PRESSURE_INITIALIZATION\x10\x00\x12/\n*INITIALIZATION_POTENTIAL_FLOW_PRESSURE_OFF\x10\xe1\x37\x12.\n)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\x10\xf5\x42*\xe0\x01\n%TurbulentVariableInitializationTypeSa\x12\x35\n1INVALID_TURBULENT_VARIABLE_INITIALIZATION_TYPE_SA\x10\x00\x12\'\n!INIT_TURBULENT_VISCOSITY_RATIO_SA\x10\xeb\xc3\x01\x12!\n\x1bINIT_TURBULENT_VISCOSITY_SA\x10\xf3\xbd\x03\x12\x16\n\x10INIT_SA_VARIABLE\x10\xb3\x80\x04\x12\x1c\n\x17INIT_FARFIELD_VALUES_SA\x10\xc2t*\x94\x02\n)TurbulentVariableInitializationTypeKomega\x12\x39\n5INVALID_TURBULENT_VARIABLE_INITIALIZATION_TYPE_KOMEGA\x10\x00\x12\x38\n3INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x10\x9d\x13\x12\x32\n-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x10\xa5R\x12\x1b\n\x15INIT_KOMEGA_VARIABLES\x10\x85\xb2\x01\x12!\n\x1bINIT_FARFIELD_VALUES_KOMEGA\x10\xce\xd0\x02*\x9f\x02\n\x15VerificationSolutions\x12\"\n\x1eINVALID_VERIFICATION_SOLUTIONS\x10\x00\x12\x19\n\x13TAYLOR_GREEN_VORTEX\x10\xf2\xc4\x03\x12\x0b\n\x06NS_MMS\x10\xef\x18\x12\x0f\n\tEULER_MMS\x10\xe2\xd6\x02\x12\x0f\n\nSHOCK_TUBE\x10\x92<\x12\x11\n\x0cNORMAL_SHOCK\x10\x9b\x62\x12\x12\n\x0cSHOCK_VORTEX\x10\xeb\xcd\x03\x12\x0e\n\tSHU_OSHER\x10\xf8Q\x12\x16\n\x10\x44ISTURBANCE_WAVE\x10\xb0\x91\x02\x12\x15\n\x0fINVISCID_VORTEX\x10\xc1\x89\x02\x12\x14\n\x0eINS_2D_LATTICE\x10\xbb\xdc\x03\x12\x1c\n\x13\x43HECK_FLUX_SYMMETRY\x10\xdd\x16\x1a\x02\x08\x01*\x8c\x01\n\x15PhysicalBehaviorModel\x12#\n\x1fINVALID_PHYSICAL_BEHAVIOR_MODEL\x10\x00\x12\x19\n\x13\x41\x43TUATOR_DISK_MODEL\x10\xda\xf7\x02\x12\x18\n\x13\x41\x43TUATOR_LINE_MODEL\x10\xd7\x0f\x12\x19\n\x13SOURCE_POINTS_MODEL\x10\xbb\x9f\x02*\xbd\x01\n\x11\x41\x63tuatorDiskModel\x12\x1f\n\x1bINVALID_ACTUATOR_DISK_MODEL\x10\x00\x12\"\n\x1c\x41\x43TUATOR_DISK_UNIFORM_THRUST\x10\xc8\xb2\x03\x12&\n!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x10\xa6#\x12!\n\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x10\xfb\xfc\x01\x12\x18\n\x12\x46\x41N_CURVE_INTERNAL\x10\xef\x91\x03*W\n\x11\x41\x63tuatorLineModel\x12\x1f\n\x1bINVALID_ACTUATOR_LINE_MODEL\x10\x00\x12!\n\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x10\xe1\xfb\x02*r\n\x17\x41\x63tuatorDiskBemStrategy\x12&\n\"INVALID_ACTUATOR_DISK_BEM_STRATEGY\x10\x00\x12\x17\n\x11\x42\x45M_ROTATION_RATE\x10\x93\x93\x01\x12\x16\n\x11\x42\x45M_TARGET_THRUST\x10\x8c\x1c*v\n\x13ParticleSourceModel\x12!\n\x1dINVALID_PARTICLE_SOURCE_MODEL\x10\x00\x12\x19\n\x13GENERAL_MASS_SOURCE\x10\xa0\x9c\x02\x12!\n\x1bGENERAL_ACCELERATION_SOURCE\x10\x80\xc9\x01*D\n\x0f\x43\x61vitationModel\x12\x1c\n\x18INVALID_CAVITATION_MODEL\x10\x00\x12\x13\n\rSAUER_SCHNERR\x10\xb2\xe9\x01*I\n\x0fPorousModelType\x12\x1d\n\x19INVALID_POROUS_MODEL_TYPE\x10\x00\x12\x17\n\x11\x44\x41RCY_FORCHHEIMER\x10\xab\xb2\x03*\x93\x01\n\x18MpCouplingLinSolCoupling\x12(\n$INVALID_MP_COUPLING_LIN_SOL_COUPLING\x10\x00\x12%\n\x1fMP_COUPLING_LIN_SOL_COUPLING_ON\x10\xd7\x9e\x02\x12&\n MP_COUPLING_LIN_SOL_COUPLING_OFF\x10\x98\xbb\x02\x42%Z#luminarycloud.com/core/proto/clientb\x06proto3')
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/client/simulation.proto\x12\x15luminary.proto.client\x1a\x15proto/base/base.proto\x1a#proto/entitygroup/entitygroup.proto\x1a\x19proto/client/entity.proto\x1a\x1bproto/options/options.proto\x1a\x19proto/output/output.proto\x1a\x17proto/table/table.proto\"\x91\n\n\x05Units\x12\x42\n\x0bunit_system\x18\xfc\x8b\x02 \x01(\x0e\x32!.luminary.proto.client.UnitSystemB\x08\x82\xb2\x19\x04 \x81\xe5\x03\x12L\n\x10temperature_unit\x18\xa1\xf3\x02 \x01(\x0e\x32&.luminary.proto.client.TemperatureUnitB\x08\x82\xb2\x19\x04 \x96\xe6\x02\x12>\n\tmass_unit\x18\xee\x8a\x01 \x01(\x0e\x32\x1f.luminary.proto.client.MassUnitB\x08\x82\xb2\x19\x04 \xb4\xf3\x03\x12\x41\n\x0blength_unit\x18\xe9r \x01(\x0e\x32!.luminary.proto.client.LengthUnitB\x08\x82\xb2\x19\x04 \xdc\xd4\x01\x12@\n\nangle_unit\x18\xb4\x80\x03 \x01(\x0e\x32 .luminary.proto.client.AngleUnitB\x08\x82\xb2\x19\x04 \x88\x9e\x01\x12=\n\ttime_unit\x18\xa4\" \x01(\x0e\x32\x1f.luminary.proto.client.TimeUnitB\x08\x82\xb2\x19\x04 \xd8\xc5\x01\x12\x45\n\rvelocity_unit\x18\xb5\xc2\x02 \x01(\x0e\x32#.luminary.proto.client.VelocityUnitB\x07\x82\xb2\x19\x03 \xf1h\x12U\n\x15\x61ngular_velocity_unit\x18\xb8\xeb\x01 \x01(\x0e\x32*.luminary.proto.client.AngularVelocityUnitB\x08\x82\xb2\x19\x04 \xe8\xc3\x01\x12?\n\nforce_unit\x18\xf1\xd2\x03 \x01(\x0e\x32 .luminary.proto.client.ForceUnitB\x07\x82\xb2\x19\x03 \x80(\x12\x41\n\x0bmoment_unit\x18\xfc\xa9\x02 \x01(\x0e\x32!.luminary.proto.client.MomentUnitB\x07\x82\xb2\x19\x03 \xc4[\x12\x45\n\rpressure_unit\x18\xe2\xe8\x01 \x01(\x0e\x32#.luminary.proto.client.PressureUnitB\x07\x82\xb2\x19\x03 \xd4V\x12\x42\n\x0b\x65nergy_unit\x18\xd2\x9e\x02 \x01(\x0e\x32!.luminary.proto.client.EnergyUnitB\x08\x82\xb2\x19\x04 \xa7\xdb\x01\x12@\n\npower_unit\x18\x9c\xdd\x03 \x01(\x0e\x32 .luminary.proto.client.PowerUnitB\x08\x82\xb2\x19\x04 \xe7\x9c\x03\x12\x41\n\x0bvolume_unit\x18\xe4\xba\x02 \x01(\x0e\x32!.luminary.proto.client.VolumeUnitB\x07\x82\xb2\x19\x03 \xcd_\x12S\n\x14volumetric_flow_unit\x18\xba\xcc\x01 \x01(\x0e\x32).luminary.proto.client.VolumetricFlowUnitB\x08\x82\xb2\x19\x04 \x8d\xc4\x02\x12G\n\x0eviscosity_unit\x18\xdc\xcc\x02 \x01(\x0e\x32$.luminary.proto.client.ViscosityUnitB\x07\x82\xb2\x19\x03 \xd0\x07\x12L\n\x11\x63onductivity_unit\x18\xbd\x11 \x01(\x0e\x32\'.luminary.proto.client.ConductivityUnitB\x07\x82\xb2\x19\x03 \x92\x03\x12T\n\x15molecular_weight_unit\x18\xb5- \x01(\x0e\x32*.luminary.proto.client.MolecularWeightUnitB\x08\x82\xb2\x19\x04 \x89\xff\x02\"s\n\x05Input\x12\x0c\n\x03url\x18\xe6Q \x01(\t\x12\x12\n\x08\x66ilename\x18\xf5\xf2\x03 \x01(\t\x12H\n\x0fmesh_identifier\x18\xca\xac\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x04\xa0\xb2\x19\x01\"\xe0\x19\n\rMaterialFluid\x12s\n\x12reference_pressure\x18\x82\xef\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12T\n\x14\x64\x65nsity_relationship\x18\xa4\xd3\x02 \x01(\x0e\x32*.luminary.proto.client.DensityRelationshipB\x08\x82\xb2\x19\x04 \xec\xa4\x02\x12\x9c\x01\n\x10molecular_weight\x18\x91\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB_\xb8\xb2\x19\xf6\x0c\x82\xb2\x19\x0b\n\t\t\xf6(\\\x8f\xc2\xf5<@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\x12\x8d\x02\n\x16\x63onstant_density_value\x18\x8d\xf3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc8\x01\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xf3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x90\x01\x12\x8d\x01\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xda\x01\n\x10specific_heat_cp\x18\xdd\x94\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xce\xf5\x01\x82\xb2\x19\x0b\n\t\t\xb4\xc8v\xbe\x9f\x65\x8f@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xc8\x01\n\x1claminar_thermal_conductivity\x18\xfbm \x01(\x0e\x32\x31.luminary.proto.client.LaminarThermalConductivityBn\x82\xb2\x19\x04 \xb1\xeb\x02\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xda\x01\n)laminar_constant_thermal_prandtl_constant\x18\xa7H \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x83\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\n\xd7\xa3p=\n\xe7?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19J\x1aH\nF\nD\x08\xb1\xeb\x02\x12 LAMINAR_CONSTANT_THERMAL_PRANDTL\x1a\x1claminar_thermal_conductivity\x12\xe5\x01\n.laminar_constant_thermal_conductivity_constant\x18\xa2\xcb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x88\x01\xb8\xb2\x19\xf0\xd8\x02\x82\xb2\x19\x0b\n\t\tp_\x07\xce\x19Q\x9a?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19O\x12M\nK\nI\x08\xb5\xb4\x02\x12%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x12\x8d\x01\n\x1fthermal_conductivity_table_data\x18\xb9\xaf\x02 \x01(\tBb\x92\xb2\x19P\nN\x08\xef\xa9\x02\x12*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x9a\xb2\x19\n\n\x02\x08\x03\x12\x04\x08\xf0\xd8\x02\x12\xb6\x01\n\x18\x62oussinesq_approximation\x18\xfe\xc3\x01 \x01(\x0e\x32..luminary.proto.client.BoussinesqApproximationBb\x82\xb2\x19\x04 \x91\xcb\x01\x92\xb2\x19V\x1aT\n\x1b\n\x19\x08\x9c\xe2\x03\x12\nGRAVITY_ON\x1a\x07gravity\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xa7\x01\n\x13\x62oussinesq_temp_ref\x18\xc8\xaa\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBf\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19/\n-\x08\x91\xcb\x01\x12\rBOUSSINESQ_ON\x1a\x18\x62oussinesq_approximation\x12\xb2\x01\n\x1dthermal_expansion_coefficient\x18\x8d\x32 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBh\xb8\xb2\x19\xb7\x84\x01\x82\xb2\x19\x0b\n\t\ty\xe9&1\x08\xacl?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19/\n-\x08\x91\xcb\x01\x12\rBOUSSINESQ_ON\x1a\x18\x62oussinesq_approximation\x12U\n\x15material_fluid_preset\x18\xaa\xd0\x03 \x01(\x0e\x32*.luminary.proto.client.MaterialFluidPresetB\x08\x82\xb2\x19\x04 \xcc\xfd\x01\x12l\n!laminar_viscosity_model_newtonian\x18\x94\xfa\x02 \x01(\x0e\x32\x35.luminary.proto.client.LaminarViscosityModelNewtonianB\x08\x82\xb2\x19\x04 \x8b\x9c\x02\x12\xb3\x01\n\x18sutherland_viscosity_ref\x18\xce\xbd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBm\xb8\xb2\x19\x90\x0b\x82\xb2\x19\x0b\n\t\t~\xad\x85\x38Z\xfe\xf1>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xb7\x01\n\x1dsutherland_viscosity_temp_ref\x18\xb9\xc1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBl\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x12q@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xad\x01\n\x13sutherland_constant\x18\xfd\xf4\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBl\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99[@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x35\n3\x08\x8b\x9c\x02\x12\nSUTHERLAND\x1a!laminar_viscosity_model_newtonian\x12\xcd\x01\n#laminar_constant_viscosity_constant\x18\xd6\xfb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB|\xb8\xb2\x19\x90\x0b\x82\xb2\x19\x0b\n\t\t\xeb*\x14Qb\xc3\xf2>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x44\nB\x08\xb8H\x12\x1aLAMINAR_CONSTANT_VISCOSITY\x1a!laminar_viscosity_model_newtonian\x12\x8a\x01\n\x1c\x64ynamic_viscosity_table_data\x18\x99$ \x01(\tBc\x92\xb2\x19R\nP\x08\x84\xc6\x02\x12\'TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY\x1a!laminar_viscosity_model_newtonian\x9a\xb2\x19\t\n\x02\x08\x03\x12\x03\x08\x90\x0b\"\xf8\x04\n\rMaterialSolid\x12}\n\x1c\x63onstant_density_value_solid\x18\xc1\x89\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x18\xa5@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12y\n\x16specific_heat_cp_solid\x18\xe7\x8c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB5\xb8\xb2\x19\xce\xf5\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x8c@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\x85\x01\n#thermal_conductivity_constant_solid\x18\xc4? \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB5\xb8\xb2\x19\xf0\xd8\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xe0\x64@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\x8d\x01\n\x1fthermal_conductivity_table_data\x18\xb9\xaf\x02 \x01(\tBb\x92\xb2\x19P\nN\x08\xef\xa9\x02\x12*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x1a\x1claminar_thermal_conductivity\x9a\xb2\x19\n\n\x02\x08\x03\x12\x04\x08\xf0\xd8\x02\x12U\n\x15material_solid_preset\x18\x87\xdc\x02 \x01(\x0e\x32*.luminary.proto.client.MaterialSolidPresetB\x08\x82\xb2\x19\x04 \xa6\xeb\x03\"\xe8\x01\n\x0eMaterialEntity\x12\x46\n\x13material_identifier\x18\xa1\xfe\x03 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\x12@\n\x0ematerial_fluid\x18\x9f\x9f\x01 \x01(\x0b\x32$.luminary.proto.client.MaterialFluidH\x00\x12@\n\x0ematerial_solid\x18\xbd\xbc\x03 \x01(\x0b\x32$.luminary.proto.client.MaterialSolidH\x00\x42\n\n\x08material\"^\n\x0cVolumeEntity\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\"\xf6\x02\n\x07General\x12@\n\nfloat_type\x18\xff\xf0\x01 \x01(\x0e\x32 .luminary.proto.client.FloatTypeB\x08\x82\xb2\x19\x04 \xbb\xcc\x01\x12;\n\x07gravity\x18\xe4\xa9\x03 \x01(\x0e\x32\x1e.luminary.proto.client.GravityB\x08\x82\xb2\x19\x04 \x95\xe3\x03\x12\x83\x01\n\x0c\x61\x63\x63\x65leration\x18\xa1\x9b\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BK\xb8\xb2\x19\xe7\x1e\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x1f\x85\xebQ\xb8\x9e#\xc0\x92\xb2\x19\x1b\n\x19\x08\x9c\xe2\x03\x12\nGRAVITY_ON\x1a\x07gravity\x12\x46\n\rflow_behavior\x18\xbb\xa5\x03 \x01(\x0e\x32#.luminary.proto.client.FlowBehaviorB\x08\x82\xb2\x19\x04 \x80\xf9\x03\x12\x1e\n\rsolver_params\x18\xc5\x66 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xe2\x01\n\x07\x41\x64joint\x12\x37\n\x0e\x61\x64joint_output\x18\xc3\xc9\x02 \x01(\x0b\x32\x1d.luminary.proto.output.Output\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12$\n\x12\x64\x65\x66ormed_coords_id\x18\xa2\x84\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12)\n\x13\x64\x65\x66ormed_coords_url\x18\xba\x90\x02 \x01(\tB\n\xa0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12*\n\x14primal_simulation_id\x18\xe4\x82\x04 \x01(\tB\n\xa0\xb2\x19\x01\x92\xb2\x19\x02*\x00\"\x86\r\n\x04Time\x12j\n\rtime_marching\x18\xd0\xd3\x03 \x01(\x0e\x32#.luminary.proto.client.TimeMarchingB,\x82\xb2\x19\x04 \xaf\x84\x02\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12y\n\x13time_implicit_order\x18\xc9\x87\x02 \x01(\x0e\x32(.luminary.proto.client.TimeImplicitOrderB0\x82\xb2\x19\x04 \x87\x8c\x03\x92\xb2\x19$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\x88\x01\n\x19physical_time_step_method\x18\xef\xa0\x02 \x01(\x0e\x32-.luminary.proto.client.PhysicalTimeStepMethodB4\x82\xb2\x19\x04 \xc0\xf8\x01\x92\xb2\x19(\x1a&\n\x02*\x00\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\x94\x01\n\rtime_step_val\x18\x8a\xec\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBY\xb8\xb2\x19\xaa\x9f\x01\x82\xb2\x19\x0b\n\t\t-C\x1c\xeb\xe2\x36\x1a?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\x95\x01\n\x0etime_step_ramp\x18\x98\xf5\x03 \x01(\x0e\x32#.luminary.proto.client.TimeStepRampBV\x82\xb2\x19\x04 \x93\xf6\x01\x92\xb2\x19J\x1aH\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\xaa\x01\n\x1atime_step_ramp_initial_val\x18\xa6\xa9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\xb8\xb2\x19\xaa\x9f\x01\x82\xb2\x19\x0b\n\t\t\xfc\xa9\xf1\xd2MbP?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12\x98\x01\n\x1etime_step_ramp_iteration_begin\x18\xad\xf9\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xf4\x03\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12\x96\x01\n\x1ctime_step_ramp_iteration_end\x18\xdd\xd4\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xe8\x07\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xdc\xae\x02\x12\x11TIME_STEP_RAMP_ON\x1a\x0etime_step_ramp\x12t\n\x12\x63ompute_statistics\x18\xc8\xdb\x01 \x01(\x0e\x32(.luminary.proto.client.ComputeStatisticsB,\x82\xb2\x19\x04 \xf2\xbc\x02\x92\xb2\x19 \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\xc1\x01\n\x1astatistics_start_iteration\x18\xec\x9d\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x80\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19V\x1aT\n0\n.\x08\xb3\x08\x12\x15\x43OMPUTE_STATISTICS_ON\x1a\x12\x63ompute_statistics\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\x12\xc1\x01\n\x1astatistics_update_interval\x18\x92\xf6\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x80\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19V\x1aT\n0\n.\x08\xb3\x08\x12\x15\x43OMPUTE_STATISTICS_ON\x1a\x12\x63ompute_statistics\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\"\xbd\x03\n\x0f\x46rameTransforms\x12\x18\n\x0etransform_name\x18\xfa\x81\x01 \x01(\t\x12H\n\x0etransform_type\x18\xcb\xb6\x01 \x01(\x0e\x32$.luminary.proto.client.TransformTypeB\x08\x82\xb2\x19\x04 \xd0\xe7\x02\x12\xa2\x01\n\x19transform_rotation_angles\x18\x88\xf2\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B]\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\xe6\xb8\x03\x12\x14ROTATIONAL_TRANSFORM\x1a\x0etransform_type\x12\xa0\x01\n\x15transform_translation\x18\xbb\xa4\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B_\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19/\n-\x08\xfb\xcc\x02\x12\x17TRANSLATIONAL_TRANSFORM\x1a\x0etransform_type\"\xb1\t\n\nMotionData\x12\x12\n\x08\x66rame_id\x18\xcc\x91\x03 \x01(\t\x12\x14\n\nframe_name\x18\xee\xac\x03 \x01(\t\x12\x16\n\x0c\x66rame_parent\x18\xef\xcf\x02 \x01(\t\x12*\n\x10\x61ttached_domains\x18\x87\xa6\x03 \x03(\tB\x0e\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12,\n\x13\x61ttached_boundaries\x18\xc3\x10 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12\x42\n\x0bmotion_type\x18\xe9\xee\x03 \x01(\x0e\x32!.luminary.proto.client.MotionTypeB\x08\x82\xb2\x19\x04 \xb4\xa8\x01\x12\xa6\x01\n\x1bmotion_translation_velocity\x18\xb4\xfa\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B_\xb8\xb2\x19\x05\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x30\n.\x08\xff\xd0\x01\x12\x1b\x43ONSTANT_TRANSLATION_MOTION\x1a\x0bmotion_type\x12\x9e\x01\n\x12motion_translation\x18\xa9\xf9\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B`\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x30\n.\x08\xff\xd0\x01\x12\x1b\x43ONSTANT_TRANSLATION_MOTION\x1a\x0bmotion_type\x12\x9b\x01\n\x12motion_formulation\x18\xd4H \x01(\x0e\x32(.luminary.proto.client.MotionFormulationBT\x82\xb2\x19\x04 \x91\xeb\x02\x92\xb2\x19H\x1a\x46\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\n\"2 \n\x1e\n\x1c\x08\xb4\xa8\x01\x12\tNO_MOTION\x1a\x0bmotion_type\x12S\n\x14motion_specification\x18\xad% \x01(\x0e\x32*.luminary.proto.client.MotionSpecificationB\x08\x82\xb2\x19\x04 \x9e\xb0\x03\x12\xa0\x01\n\x17motion_angular_velocity\x18\xdf\x9c\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B]\xb8\xb2\x19\xfa\xc6\x03\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\x8a\xf6\x02\x12\x17\x43ONSTANT_ANGULAR_MOTION\x1a\x0bmotion_type\x12\x9f\x01\n\x16motion_rotation_angles\x18\xcd\x91\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B]\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19,\n*\x08\x8a\xf6\x02\x12\x17\x43ONSTANT_ANGULAR_MOTION\x1a\x0bmotion_type\x12\x41\n\x10\x66rame_transforms\x18\xc6Q \x03(\x0b\x32&.luminary.proto.client.FrameTransforms\"\xb1\x10\n\rParticleGroup\x12\x1b\n\x11particle_group_id\x18\xe7\xad\x01 \x01(\t\x12\x1d\n\x13particle_group_name\x18\x83\xc4\x01 \x01(\t\x12+\n!particle_group_behavior_model_ref\x18\xbb\xdf\x03 \x01(\t\x12P\n\x13particle_group_type\x18\xd5` \x01(\x0e\x32(.luminary.proto.client.ParticleGroupTypeB\x08\x82\xb2\x19\x04 \xd9\xdf\x01\x12\xad\x01\n\x1a\x61\x63tuator_disk_inner_radius\x18\xcb\\ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBf\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xae\x01\n\x1a\x61\x63tuator_disk_outer_radius\x18\xa3\x8b\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBf\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\x9d\x01\n\x14\x61\x63tuator_disk_center\x18\xcd\x61 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B^\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xa2\x01\n#actuator_disk_orientation_selection\x18\xe0\x92\x03 \x01(\x0e\x32\x37.luminary.proto.client.ActuatorDiskOrientationSelectionB:\x82\xb2\x19\x04 \xf2\x95\x03\x92\xb2\x19.\x1a,\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xfe\x01\n\x1c\x61\x63tuator_disk_rotation_angle\x18\x80\x84\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\xb5\x01\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x83\x01\x1a\x80\x01\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\nR\nP\x08\xf2\x95\x03\x12%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\x1a#actuator_disk_orientation_selection\x12\xf7\x01\n\x1b\x61\x63tuator_disk_normal_vector\x18\xa5\xcf\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\xaf\x01\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\xf0?\x92\xb2\x19\x7f\x1a}\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\nO\nM\x08\xbe\x38\x12#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\x1a#actuator_disk_orientation_selection\x12\xae\x01\n\x16source_particle_radius\x18\xa1\xfd\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBj\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xa8\x92\x02\x12\rSOURCE_POINTS\x1a\x13particle_group_type\x12\xb3\x01\n\x1asearch_radius_scale_factor\x18\x83\xf8\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBk\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x04@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xb8\x01\n\x1fisotropic_gaussian_scale_factor\x18\xd2\xfe\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBk\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x32\x1a\x30\n\x02*\x00\n*\n(\x08\xd9\xdf\x01\x12\rACTUATOR_DISK\x1a\x13particle_group_type\x12\xa1\x01\n\x18particle_positions_table\x18\xf8\xaa\x02 \x01(\tB}\x92\xb2\x19X\x12V\n(\n&\x08\xdd>\x12\x0cPROBE_POINTS\x1a\x13particle_group_type\n*\n(\x08\xa8\x92\x02\x12\rSOURCE_POINTS\x1a\x13particle_group_type\x9a\xb2\x19\x1d\x12\x03\x08\x80P\x12\x03\x08\x80P\x12\x03\x08\x80P\x12\x06\x12\x04name\x12\x04\x12\x02id\"\xbe\x06\n\x0cMonitorPlane\x12\x1a\n\x10monitor_plane_id\x18\x9b\x8d\x03 \x01(\t\x12\x1c\n\x12monitor_plane_name\x18\x93\x9e\x03 \x01(\t\x12k\n\x13monitor_plane_point\x18\xd1\xb9\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B,\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12k\n\x14monitor_plane_normal\x18\xa0 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B,\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12 \n\x16monitor_plane_box_clip\x18\xa6\x9f\x03 \x01(\x08\x12{\n\x19monitor_plane_clip_center\x18\xa9\xfd\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B6\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12y\n\x17monitor_plane_clip_size\x18\xac\xfe\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B6\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12}\n\x1bmonitor_plane_clip_rotation\x18\xb8o \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B7\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x06:\x04\x08\xa6\x9f\x03\x12#\n\x19monitor_plane_volume_clip\x18\x8e\xef\x02 \x01(\x08\x12\\\n\x15monitor_plane_volumes\x18\xb6\xbb\x03 \x03(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x12\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x06:\x04\x08\x8e\xef\x02\",\n\tBodyFrame\x12\x1f\n\rbody_frame_id\x18\xc5\xb1\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"-\n\x0bSurfaceName\x12\x1e\n\x0csurface_name\x18\xe0\xb9\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xeb\x02\n\x06Output\x12]\n\x10iters_per_output\x18\x85\xc4\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\'\x82\xb2\x19\x03\x30\xe8\x07\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12\x1b\n\x11include_residuals\x18\xa2\x99\x02 \x01(\x08\x12H\n\x0c\x64\x65\x62ug_output\x18\x9c\xb3\x03 \x01(\x0e\x32\".luminary.proto.client.DebugOutputB\x0c\x82\xb2\x19\x04 \xdf\xba\x02\x92\xb2\x19\x00\x12\x9a\x01\n\"debug_output_interior_surface_data\x18\xd6\xa2\x02 \x01(\x0e\x32\x35.luminary.proto.client.DebugOutputInteriorSurfaceDataB5\x82\xb2\x19\x04 \x9a\xac\x02\x92\xb2\x19)\n\'\x08\x83)\x12\x14SOLN_DEBUG_OUTPUT_ON\x1a\x0c\x64\x65\x62ug_output\"\xdf\x02\n\x13\x43onvergenceCriteria\x12\x45\n\x12stopping_condition\x18\xc7v \x03(\x0b\x32(.luminary.proto.output.StoppingCondition\x12O\n\x1ctime_step_stopping_condition\x18\xb1\x0e \x03(\x0b\x32(.luminary.proto.output.StoppingCondition\x12S\n\x0c\x65ntity_group\x18\xbe\x8e\x02 \x03(\x0b\x32;.luminary.proto.client.ConvergenceCriteria.EntityGroupEntry\x1a[\n\x10\x45ntityGroupEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.luminary.proto.entitygroup.EntityGroup:\x02\x38\x01\"\xb4\x01\n\x1aVolumeMaterialRelationship\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12\x46\n\x13material_identifier\x18\xa1\xfe\x03 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\"\xb1\x01\n\x19VolumePhysicsRelationship\x12N\n\x11volume_identifier\x18\x9e\xa1\x01 \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifierB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12\x44\n\x12physics_identifier\x18\xb2\x1a \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\"\xc9\x01\n\x13\x45ntityRelationships\x12Y\n\x1cvolume_material_relationship\x18\x8c\xa8\x02 \x03(\x0b\x32\x31.luminary.proto.client.VolumeMaterialRelationship\x12W\n\x1bvolume_physics_relationship\x18\xef\xff\x02 \x03(\x0b\x32\x30.luminary.proto.client.VolumePhysicsRelationship\"\xb5\x08\n\x0fReferenceValues\x12i\n\x08\x61rea_ref\x18\x83\xdc\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19\n\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12k\n\nlength_ref\x18\xdc\" \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB4\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12%\n\x1buse_aero_moment_ref_lengths\x18\xdd\xb7\x02 \x01(\x08\x12\x7f\n\x10length_ref_pitch\x18\xe1\" \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBB\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12~\n\x0flength_ref_roll\x18\x84\x0f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBB\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12~\n\x0elength_ref_yaw\x18\xd7\xda\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBB\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\n\x1a\x08\n\x06:\x04\x08\xdd\xb7\x02\x12\x66\n\x05p_ref\x18\xac\x8b\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x12\xd1\x01\n\x05t_ref\x18\xd6\xc2\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\x66\n\x05v_ref\x18\xb3\x83\x04 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19\x05\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\"\xf2\x03\n\x14\x42oundaryLayerProfile\x12\x7f\n\x08n_layers\x18\x87\x9b\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntBQ\x82\xb2\x19\x02\x30(\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12\x99\x01\n\x0cinitial_size\x18\xad\x88\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB_\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x8d\xed\xb5\xa0\xf7\xc6\xb0>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12\x99\x01\n\x0bgrowth_rate\x18\xc4\xf2\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xf3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x10@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\"\xf0\x08\n\x16\x41\x64\x61ptiveMeshRefinement\x12\x61\n\x15refinement_iterations\x18\xa3\x9e\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\xc0X@\x8a\xb2\x19\x02\x18\x00\x12g\n\x1crefinement_dispatch_interval\x18\xc1\x0c \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x12\x63\n\x17max_refinement_interval\x18\xb7\xa0\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB&\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x12|\n\x19initial_target_complexity\x18\x87\x8d\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB5\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12z\n\x17\x66inal_target_complexity\x18\xc3\xc5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB5\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x12H\n\x0emeshing_method\x18\xce\xb7\x01 \x01(\x0e\x32$.luminary.proto.client.MeshingMethodB\x08\x82\xb2\x19\x04 \xa2\x90\x02\x12\x89\x01\n\x12target_cv_millions\x18\xfb\x89\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBQ\x82\xb2\x19\x02\x30\n\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00 i@\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12j\n\x07\x61ll_tet\x18\xa6\xe2\x02 \x01(\x0e\x32\x1d.luminary.proto.client.AllTetB8\x82\xb2\x19\x03 \xf6 \x92\xb2\x19-\x1a+\n\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\n\x00\x12\x9a\x01\n\x0cuser_scaling\x18\xe9\xe5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xfb\x0c\x12\x10MESH_METHOD_AUTO\x1a\x0emeshing_method\x12L\n\x16\x62oundary_layer_profile\x18\xb7\x43 \x03(\x0b\x32+.luminary.proto.client.BoundaryLayerProfile\"\x8f\x17\n\x14SolutionControlsHeat\x12\x99\x01\n\x11relaxation_method\x18\xc0\xc9\x03 \x01(\x0e\x32\'.luminary.proto.client.RelaxationMethodBS\x82\xb2\x19\x04 \xa0\x9e\x03\x92\xb2\x19G\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12q\n\x0fimplicit_method\x18\xaf\x85\x04 \x01(\x0e\x32%.luminary.proto.client.ImplicitMethodB/\x82\xb2\x19\x04 \xb7\xeb\x03\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x83\x01\n\x11linsol_iterations\x18\xbbO \x01(\x0b\x32\x18.luminary.proto.base.IntBM\x82\xb2\x19\x02\x30\x0f\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00@\x8f@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x99\x01\n\x10linsol_tolerance\x18\xc5\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12u\n\x12linear_solver_type\x18\x86\xf7\x03 \x01(\x0e\x32\'.luminary.proto.client.LinearSolverTypeB.\x82\xb2\x19\x03 \xd1}\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xe4\x01\n\x15linsol_amg_pre_sweeps\x18\xd6\xe2\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe5\x01\n\x16linsol_amg_post_sweeps\x18\xef\xd8\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe9\x01\n\x1alinsol_amg_coarsening_size\x18\xc7\xeb\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x08\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00 @\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe0\x01\n\x11linsol_amg_levels\x18\x88\xf5\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x14\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x44@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xfb\x01\n\x15linsol_amg_relaxation\x18\xe7\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb7\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd7\x01\n\x15linsol_amg_cycle_type\x18\xe8\xe1\x01 \x01(\x0e\x32).luminary.proto.client.LinsolAmgCycleTypeB\x8a\x01\x82\xb2\x19\x04 \xfd\xd4\x01\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x92\x02\n\"linsol_amg_freeze_levels_threshold\x18\xd3J \x01(\x0b\x32\x18.luminary.proto.base.IntB\xca\x01\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd4\x01\n\x13linsol_amg_smoother\x18\x9b\xf0\x03 \x01(\x0e\x32(.luminary.proto.client.LinsolAmgSmootherB\x8a\x01\x82\xb2\x19\x04 \xf8\xe0\x02\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x9a\x01\n\x0f\x65xplicit_method\x18\xb2\" \x01(\x0e\x32%.luminary.proto.client.ExplicitMethodBY\x82\xb2\x19\x04 \xeb\xca\x02\x92\xb2\x19M\x12K\n#\n!\x08\xfe\xd3\x01\x12\x08\x45XPLICIT\x1a\x11relaxation_method\n$\n\"\x08\x91\xbe\x01\x12\rTIME_EXPLICIT\x1a\rtime_marching\x12k\n\x17\x63ontrols_preset_version\x18\xd3\xbb\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12\x63\n\x1dsolution_controls_heat_preset\x18\x8a\xd9\x03 \x01(\x0e\x32\x31.luminary.proto.client.SolutionControlsHeatPresetB\x07\x82\xb2\x19\x03 \xe4\x05\"\xae\x02\n\x13\x41\x64jointControlsHeat\x12u\n\x17\x61\x64joint_solution_method\x18\xd5\" \x01(\x0e\x32,.luminary.proto.client.AdjointSolutionMethodB%\x82\xb2\x19\x04 \xf7\xdd\x02\x92\xb2\x19\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\x12\x9f\x01\n\x1b\x61\x64joint_gmres_restart_iters\x18\xc0z \x01(\x0b\x32\x18.luminary.proto.base.IntB_\x82\xb2\x19\x02\x30\x32\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00>@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x35\n3\x08\xf7\xdd\x02\x12\x14\x41\x44JOINT_METHOD_GMRES\x1a\x17\x61\x64joint_solution_method\"\xa0\x06\n\x19SpatialDiscretizationHeat\x12I\n\x0fgradient_method\x18\x9f\xec\x03 \x01(\x0e\x32%.luminary.proto.client.GradientMethodB\x07\x82\xb2\x19\x03 \xd8v\x12\xb4\x01\n\nhlsq_blend\x18\xfc\x82\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB|\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x43\x12\x41\n\x1d\n\x1b\x08\x9b\xe8\x03\x12\x04HLSQ\x1a\x0fgradient_method\n \n\x1e\x08\xf0\x8a\x03\x12\x07LC_HLSQ\x1a\x0fgradient_method\x12s\n\x0egeometry_fixes\x18\x92\xb7\x03 \x01(\x0e\x32$.luminary.proto.client.GeometryFixesB3\x82\xb2\x19\x04 \xd9\xe6\x01\x92\xb2\x19\'\x12%\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\x12\xaa\x01\n\x1ageometry_fixes_mitigations\x18\xb1\xe9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xd9\xe6\x01\x12\x11GEOMETRY_FIXES_ON\x1a\x0egeometry_fixes\x12q\n\x1d\x64iscretization_preset_version\x18\xa6\xe0\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12l\n\"spatial_discretization_heat_preset\x18\xa5\x11 \x01(\x0e\x32\x36.luminary.proto.client.SpatialDiscretizationHeatPresetB\x07\x82\xb2\x19\x03 \xb1\x34\"\xf6\r\n\x16\x42oundaryConditionsHeat\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12)\n\x17\x62oundary_condition_name\x18\x86\xa2\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x30\n\x1f\x62oundary_condition_display_name\x18\xd8Q \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x31\n\x1f\x62oundary_condition_interface_id\x18\xfb\x9f\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x8a\x02\n\nprofile_bc\x18\x85\xe9\x02 \x01(\x08\x42\xf3\x01\x92\xb2\x19\xee\x01\x12\xeb\x01\n\x9a\x01\x1a\x97\x01\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\nL\x1aJ\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n&2$\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\x12/\n\x0fprofile_bc_data\x18\xc6\xbc\x03 \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\x85\xe9\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12W\n\x16heat_physical_boundary\x18\xc3\xf1\x03 \x01(\x0e\x32+.luminary.proto.client.HeatPhysicalBoundaryB\x08\x82\xb2\x19\x04 \x9e\xc5\x01\x12\xcf\x01\n\x0f\x66ixed_heat_flux\x18\xe5, \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\xb8\xb2\x19\xa7`\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19Z\x12X\n#\n!\x08\xae\x06\x12\x0f\x46IXED_HEAT_FLUX\x1a\x0bwall_energy\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xbd\x01\n\x1a\x66ixed_integrated_heat_flux\x18\xa7\x9c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBu\xb8\xb2\x19\x98\xf7\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xdc\x01\n\rheat_flux_col\x18\xe0\x65 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa9\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x7f\x1a}\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\n\x06:\x04\x08\x85\xe9\x02\x12\x8b\x02\n\x11\x66ixed_temperature\x18\x91\xb4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xcb\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x93\x01\x12\x90\x01\n&\n$\x08\xa7\xac\x01\x12\x11\x46IXED_TEMPERATURE\x1a\x0bwall_energy\n2\n0\x08\x9e\xc5\x01\x12\x12HEAT_BC_ISOTHERMAL\x1a\x16heat_physical_boundary\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\xb6\x01\n\x19heat_transfer_coefficient\x18\xb3\xfb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBo\xb8\xb2\x19\xc1\xf7\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x36\x1a\x34\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\"\xbb\x04\n\x12InitializationHeat\x12R\n\x13initialization_type\x18\x9e\xf2\x01 \x01(\x0e\x32).luminary.proto.client.InitializationTypeB\x08\x82\xb2\x19\x04 \xa2\xbe\x01\x12\xd4\x02\n\tuniform_t\x18\xf8\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x02\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe4\x01\x12\xe1\x01\n\xd4\x01\x1a\xd1\x01\nk\x12i\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\x08\x42\x06\n\x04heat\x12R\n\x15\x65xisting_solution_url\x18\xdcG \x01(\tB2\x92\xb2\x19.\n,\x08\xe4\xd1\x01\x12\x11\x45XISTING_SOLUTION\x1a\x13initialization_type\x12&\n\x14\x65xisting_solution_id\x18\xd5\xd6\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xd1\x06\n\nHeatSource\x12L\n\x0eprofile_source\x18\xe9\xe1\x02 \x01(\x08\x42\x32\x92\xb2\x19.\x1a,\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\n\x08\x42\x06\n\x04heat\x12\x32\n\x13profile_source_data\x18\x8bP \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\xe9\xe1\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12\x64\n\x0fheat_source_col\x18\xb2X \x01(\x0b\x32\x18.luminary.proto.base.IntB0\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x06:\x04\x08\xe9\xe1\x02\x12#\n\x0eheat_source_id\x18\x90\" \x01(\tB\n\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12%\n\x10heat_source_name\x18\xeei \x01(\tB\n\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12(\n\x14heat_source_zone_ids\x18\xef\x8e\x03 \x03(\tB\x08\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x12K\n\x10heat_source_type\x18\xb6\x8a\x03 \x01(\x0e\x32%.luminary.proto.client.HeatSourceTypeB\x08\x82\xb2\x19\x04 \xc2\xe2\x01\x12\x8c\x01\n\x11heat_source_power\x18\xc4\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBM\xb8\xb2\x19\x98\xf7\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x34\x1a\x32\n0\n.\x08\xc2\xe2\x01\x12\x16HEAT_SOURCE_TYPE_POWER\x1a\x10heat_source_type\x12\xac\x01\n!heat_source_power_per_unit_volume\x18\xcb\x0b \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB^\xb8\xb2\x19\x33\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19G\x1a\x45\nC\nA\x08\xbf\xde\x03\x12)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\x1a\x10heat_source_type\"\x9c\x05\n\x11SlidingInterfaces\x12&\n\x14sliding_interface_id\x18\x83\xb1\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12(\n\x16sliding_interface_name\x18\xed\xbc\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12#\n\tsliding_a\x18\x91\xd4\x03 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12#\n\tsliding_b\x18\x90\xd9\x01 \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12\x84\x01\n&sliding_matching_translation_transform\x18\xde\x84\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B2\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\x87\x01\n)sliding_matching_periodic_rotation_angles\x18\xabZ \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B3\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\x8a\x01\n,sliding_matching_periodic_center_of_rotation\x18\xb9\x8c\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B2\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12M\n\x0einterface_type\x18\xa8_ \x01(\x0e\x32$.luminary.proto.client.InterfaceTypeB\x0e\x82\xb2\x19\x04 \xc2\xa3\x03\x92\xb2\x19\x02*\x00\"\xaa\x05\n\x0cPeriodicPair\x12#\n\x12periodic_pair_name\x18\xf2o \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x1a\n\x07\x62ound_a\x18\xd5n \x03(\tB\x08\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x12\x1a\n\x07\x62ound_b\x18\xa4\x37 \x03(\tB\x08\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x12K\n\x10periodic_bc_type\x18\xcf\xb5\x01 \x01(\x0e\x32%.luminary.proto.client.PeriodicBcTypeB\x08\x82\xb2\x19\x04 \xd9\x9d\x01\x12\x9b\x01\n\rtranslational\x18\xdb\x9e\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xd9\x9d\x01\x12\rTRANSLATIONAL\x1a\x10periodic_bc_type\x12k\n\x14periodic_translation\x18\xc4\x64 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B,\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12r\n\x1bperiodic_center_of_rotation\x18\xaa] \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B,\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12q\n\x18periodic_rotation_angles\x18\x90\xc0\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B-\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\"\xd7\x04\n\x04Heat\x12M\n\x16solution_controls_heat\x18\x9c\xb9\x01 \x01(\x0b\x32+.luminary.proto.client.SolutionControlsHeat\x12K\n\x15\x61\x64joint_controls_heat\x18\x81\x82\x04 \x01(\x0b\x32*.luminary.proto.client.AdjointControlsHeat\x12V\n\x1bspatial_discretization_heat\x18\xa6g \x01(\x0b\x32\x30.luminary.proto.client.SpatialDiscretizationHeat\x12Q\n\x18\x62oundary_conditions_heat\x18\xa1\xfa\x01 \x03(\x0b\x32-.luminary.proto.client.BoundaryConditionsHeat\x12H\n\x13initialization_heat\x18\x90\xb9\x01 \x01(\x0b\x32).luminary.proto.client.InitializationHeat\x12\x38\n\x0bheat_source\x18\x8d\xac\x02 \x03(\x0b\x32!.luminary.proto.client.HeatSource\x12\x46\n\x12sliding_interfaces\x18\xae\xe6\x03 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12<\n\rperiodic_pair\x18\xec\x81\x04 \x03(\x0b\x32#.luminary.proto.client.PeriodicPair\"\xa0\x01\n\nBasicFluid\x12J\n\nfluid_type\x18\xf2\xb6\x02 \x01(\x0e\x32 .luminary.proto.client.FluidTypeB\x12\x82\xb2\x19\x04 \xdd\xf0\x01\x92\xb2\x19\x06\x1a\x04\n\x02*\x00\x12\x46\n\rviscous_model\x18\xeb\x81\x01 \x01(\x0e\x32#.luminary.proto.client.ViscousModelB\x08\x82\xb2\x19\x04 \x92\x95\x02\"\xb8\x43\n\nTurbulence\x12g\n\x0f\x64\x65s_formulation\x18\xfb\x15 \x01(\x0e\x32%.luminary.proto.client.DesFormulationB&\x82\xb2\x19\x04 \xe6\x8b\x02\x92\xb2\x19\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x62\n\x0brans_region\x18\xd2\xc2\x01 \x01(\x0e\x32!.luminary.proto.client.RansRegionB(\x82\xb2\x19\x03 \xd9s\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12\x82\x01\n\tzdes_rmin\x18\x94\xe0\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BM\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12\x81\x01\n\tzdes_rmax\x18\xd1\x1e \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BM\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x1d\n\x1b\x08\xfd\xc5\x01\x12\x04ZDES\x1a\x0f\x64\x65s_formulation\x12o\n\x14sub_grid_scale_model\x18\x97\x1b \x01(\x0e\x32(.luminary.proto.client.SubGridScaleModelB&\x82\xb2\x19\x04 \xf7\xb1\x01\x92\xb2\x19\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\x12\x93\x01\n\x03\x63_s\x18\xe8\xc3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\xa2\x97\x02\x12\x0bSMAGORINSKY\x1a\x14sub_grid_scale_model\x12\x93\x01\n\x08\x63_vreman\x18\xc6\x9b\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB]\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xe5\xd0\"\xdb\xf9~\xb2?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xf7\xb1\x01\x12\x06VREMAN\x1a\x14sub_grid_scale_model\x12\x8e\x01\n\x06\x63_wale\x18\x82< \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB[\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xcd\xcc\xcc\xcc\xcc\xcc\xd4?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\"\n \x08\xc8\xc9\x03\x12\x04WALE\x1a\x14sub_grid_scale_model\x12\x90\x01\n\x07\x63_sigma\x18\xb9\xf6\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB[\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\"\n \x08\xc7g\x12\x05SIGMA\x1a\x14sub_grid_scale_model\x12\x8c\x01\n\x05\x63_amd\x18\xf4\xc7\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBY\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tR\xb8\x1e\x85\xebQ\xc8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19 \n\x1e\x08\xd4\x1f\x12\x03\x41MD\x1a\x14sub_grid_scale_model\x12\xd8\x02\n/turbulent_thermal_conductivity_prandtl_constant\x18\xe2\xb0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xfa\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc0\x01\x1a\xbd\x01\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\nW\x12U\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\x12\xc3\x01\n\x10transition_model\x18\xae\x9a\x02 \x01(\x0e\x32&.luminary.proto.client.TransitionModelB\x7f\x82\xb2\x19\x04 \xa1\xe8\x03\x92\xb2\x19s\x1aq\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\nR\x12P\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12\xe0\x01\n\x1btransition_model_cross_flow\x18\x87\xf8\x02 \x01(\x0e\x32/.luminary.proto.client.TransitionModelCrossFlowB\x87\x01\x82\xb2\x19\x04 \x8e\xe5\x01\x92\xb2\x19{\x12y\n$\n\"\x08\xd0\x9e\x01\x12\nGAMMA_2015\x1a\x10transition_model\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\x12\x98\x02\n+transition_free_stream_turbulence_intensity\x18\xffQ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbf\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xfc\xa9\xf1\xd2Mb`?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x85\x01\x1a\x82\x01\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\nU\x12S\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\x12\x8a\x01\n\x10turbulence_model\x18\xd0\xe5\x01 \x01(\x0e\x32&.luminary.proto.client.TurbulenceModelBF\x82\xb2\x19\x03 \xca\x15\x92\xb2\x19;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x64\n\x06qcr_sa\x18\xdd\xd9\x01 \x01(\x0e\x32\x1c.luminary.proto.client.QcrSaB4\x82\xb2\x19\x03 \x99\x05\x92\xb2\x19)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\x84\x01\n\x16rotation_correction_sa\x18\x84\xbc\x02 \x01(\x0e\x32+.luminary.proto.client.RotationCorrectionSaB5\x82\xb2\x19\x04 \xfa\x92\x02\x92\xb2\x19)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\x8e\x02\n\x05\x63_rot\x18\xbb\xb5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xda\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa0\x01\x1a\x9d\x01\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\n5\n3\x08\xae#\x12\x16ROTATION_CORRECTION_ON\x1a\x16rotation_correction_sa\x12\xf6\x01\n\x08\x43_sa_des\x18\xc3\xa1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xbf\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xcd\xcc\xcc\xcc\xcc\xcc\xe4?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x85\x01\x1a\x82\x01\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd4\x01\n\x05\x63_b_1\x18\xd3\' \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xf2\xd2Mb\x10X\xc1?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd4\x01\n\x05sigma\x18\xdfq \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tUUUUUU\xe5?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_b_2\x18\xb6\xeb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x81\x95\x43\x8bl\xe7\xe3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05kappa\x18\xb1\xd4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t=\n\xd7\xa3p=\xda?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_w_2\x18\x89\x89\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xd3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_w_3\x18\xe5\xb5\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_v_1\x18\x8d\xa9\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tffffff\x1c@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_t_3\x18\x94\xcd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xf3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd5\x01\n\x05\x63_t_4\x18\x80\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd4\x01\n\x05\x63_r_1\x18\xef\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\x61\n\x07qcr_sst\x18\x81\xb9\x02 \x01(\x0e\x32\x1d.luminary.proto.client.QcrSstB/\x82\xb2\x19\x04 \xf9\xeb\x01\x92\xb2\x19#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12k\n\x0ckato_launder\x18\xca\x10 \x01(\x08\x42T\x92\xb2\x19P\x1aN\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n\'\n%\x08\xa1\xe8\x03\x12\rNO_TRANSITION\x1a\x10transition_model\x12\x9e\x01\n\x1aturbulence_model_constants\x18\xb9\xaa\x02 \x01(\x0e\x32/.luminary.proto.client.TurbulenceModelConstantsBG\x82\xb2\x19\x04 \xb4\xd2\x01\x92\xb2\x19;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xef\x01\n\nC_sst_des1\x18\xe5\x15 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb7\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xf6(\\\x8f\xc2\xf5\xe8?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19~\x1a|\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xf0\x01\n\nC_sst_des2\x18\xfc\xa4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb7\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x85\xebQ\xb8\x1e\x85\xe3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19~\x1a|\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tsigma_k_1\x18\xe8\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tsigma_k_2\x18\x91\x86\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tsigma_w_1\x18\xca\xae\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tsigma_w_2\x18\xab\xf4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t1\x08\xac\x1cZd\xeb?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd0\x01\n\x06\x62\x65ta_1\x18\xa0\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xb3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd0\x01\n\x06\x62\x65ta_2\x18\x9e\xb3\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tQ\xda\x1b|a2\xb5?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tbeta_star\x18\xbc\x87\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\n\xd7\xa3p=\n\xb7?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd3\x01\n\tkappa_sst\x18\xf7\x95\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t=\n\xd7\xa3p=\xda?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xcc\x01\n\x03\x61_1\x18\xa7( \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xd7\xa3p=\n\xd7\xd3?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd1\x01\n\x07gamma_1\x18\x94\xe5\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tr\x1c\xc7q\x1c\xc7\xe1?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\x12\xd0\x01\n\x07gamma_2\x18\xd6g \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t)\\\x8f\xc2\xf5(\xdc?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n9\n7\x08\xc7\xa4\x03\x12\x15\x43USTOM_TURB_CONSTANTS\x1a\x1aturbulence_model_constants\"\xc6)\n\x15SolutionControlsFluid\x12\xa6\x01\n\x17pseudo_time_step_method\x18\x90# \x01(\x0e\x32+.luminary.proto.client.PseudoTimeStepMethodBW\x82\xb2\x19\x04 \xe0\xda\x03\x92\xb2\x19K\x1aI\nG\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12\x94\x01\n\x03\x63\x66l\x18\x94\x90\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBc\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00I@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19*\n(\x08\xe0\xda\x03\x12\tCFL_BASED\x1a\x17pseudo_time_step_method\x12\x87\x01\n\x13local_time_stepping\x18\xa0\xcd\x03 \x01(\x0e\x32(.luminary.proto.client.LocalTimeSteppingB>\x82\xb2\x19\x04 \x98\xcf\x01\x92\xb2\x19\x32\x1a\x30\n*\n(\x08\xe0\xda\x03\x12\tCFL_BASED\x1a\x17pseudo_time_step_method\n\x02*\x00\x12\xb2\x01\n\x14pseudo_time_step_val\x18\xd0\xff\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBp\xb8\xb2\x19\xaa\x9f\x01\x82\xb2\x19\x0b\n\t\t\x8d\xed\xb5\xa0\xf7\xc6\xb0>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x37\n5\x08\xc2\xfe\x01\x12\x16\x46IXED_PSEUDO_TIME_STEP\x1a\x17pseudo_time_step_method\x12\x99\x01\n\x11relaxation_method\x18\xc0\xc9\x03 \x01(\x0e\x32\'.luminary.proto.client.RelaxationMethodBS\x82\xb2\x19\x04 \xa0\x9e\x03\x92\xb2\x19G\x12\x45\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\x12q\n\x0fimplicit_method\x18\xaf\x85\x04 \x01(\x0e\x32%.luminary.proto.client.ImplicitMethodB/\x82\xb2\x19\x04 \xb7\xeb\x03\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x83\x01\n\x11linsol_iterations\x18\xbbO \x01(\x0b\x32\x18.luminary.proto.base.IntBM\x82\xb2\x19\x02\x30\x0f\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00@\x8f@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\x99\x01\n\x10linsol_tolerance\x18\xc5\x1f \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12u\n\x12linear_solver_type\x18\x86\xf7\x03 \x01(\x0e\x32\'.luminary.proto.client.LinearSolverTypeB.\x82\xb2\x19\x03 \xd1}\x92\xb2\x19#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xe4\x01\n\x15linsol_amg_pre_sweeps\x18\xd6\xe2\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe5\x01\n\x16linsol_amg_post_sweeps\x18\xef\xd8\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x01\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe9\x01\n\x1alinsol_amg_coarsening_size\x18\xc7\xeb\x01 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x08\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00 @\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xe0\x01\n\x11linsol_amg_levels\x18\x88\xf5\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xa8\x01\x82\xb2\x19\x02\x30\x14\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x44@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xfb\x01\n\x15linsol_amg_relaxation\x18\xe7\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb7\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd7\x01\n\x15linsol_amg_cycle_type\x18\xe8\xe1\x01 \x01(\x0e\x32).luminary.proto.client.LinsolAmgCycleTypeB\x8a\x01\x82\xb2\x19\x04 \xfd\xd4\x01\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x92\x02\n\"linsol_amg_freeze_levels_threshold\x18\xd3J \x01(\x0b\x32\x18.luminary.proto.base.IntB\xca\x01\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\xd4\x01\n\x13linsol_amg_smoother\x18\x9b\xf0\x03 \x01(\x0e\x32(.luminary.proto.client.LinsolAmgSmootherB\x8a\x01\x82\xb2\x19\x04 \xf8\xe0\x02\x92\xb2\x19~\x1a|\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\nU\x12S\n$\n\"\x08\x90\xb0\x01\x12\x08\x41MG_AMGX\x1a\x12linear_solver_type\n+\n)\x08\xa9\x8e\x02\x12\x0f\x41MG_KRYLOV_AMGX\x1a\x12linear_solver_type\x12\x81\x01\n\x16jacobian_update_method\x18\xe1\xde\x03 \x01(\x0e\x32+.luminary.proto.client.JacobianUpdateMethodB2\x82\xb2\x19\x03 \xf6t\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xba\x01\n\x18jacobian_update_interval\x18\x8b\xca\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBt\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19;\n9\x08\xf6t\x12\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x1a\x16jacobian_update_method\x12\xa4\x01\n\x19jacobian_warmup_threshold\x18\xb3X \x01(\x0b\x32\x18.luminary.proto.base.IntBf\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19;\n9\x08\xf6t\x12\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x1a\x16jacobian_update_method\x12\x92\x01\n\x0erobust_startup\x18\xa8\xa1\x02 \x01(\x0e\x32$.luminary.proto.client.RobustStartupBR\x82\xb2\x19\x04 \x98\xfe\x01\x92\xb2\x19\x46\x1a\x44\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\x12\xa9\x01\n\x1arobust_startup_initial_cfl\x18\x82w \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\x98\xfe\x01\x12\x11ROBUST_STARTUP_ON\x1a\x0erobust_startup\x12\x92\x01\n\x19robust_startup_iterations\x18\xd1+ \x01(\x0b\x32\x18.luminary.proto.base.IntBT\x82\xb2\x19\x03\x30\xac\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19)\n\'\x08\x98\xfe\x01\x12\x11ROBUST_STARTUP_ON\x1a\x0erobust_startup\x12\x98\x01\n\nrelax_flow\x18\xf2\xb4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xd6\x01\n\nrelax_turb\x18\xae\x84\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x64\x1a\x62\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x9f\x01\n\x11update_limit_flow\x18\xe2\xaa\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\'\x1a%\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\x12\xdd\x01\n\x11update_limit_turb\x18\x86\xa1\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xaeG\xe1z\x14\xae\xef?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x64\x1a\x62\n#\n!\x08\xa0\x9e\x03\x12\x08IMPLICIT\x1a\x11relaxation_method\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x9a\x01\n\x0f\x65xplicit_method\x18\xb2\" \x01(\x0e\x32%.luminary.proto.client.ExplicitMethodBY\x82\xb2\x19\x04 \xeb\xca\x02\x92\xb2\x19M\x12K\n#\n!\x08\xfe\xd3\x01\x12\x08\x45XPLICIT\x1a\x11relaxation_method\n$\n\"\x08\x91\xbe\x01\x12\rTIME_EXPLICIT\x1a\rtime_marching\x12k\n\x17\x63ontrols_preset_version\x18\xd3\xbb\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12\x66\n\x1esolution_controls_fluid_preset\x18\xd4\xa1\x03 \x01(\x0e\x32\x32.luminary.proto.client.SolutionControlsFluidPresetB\x08\x82\xb2\x19\x04 \xca\xc3\x03\"\xe9\x06\n\x14\x41\x64jointControlsFluid\x12u\n\x17\x61\x64joint_solution_method\x18\xd5\" \x01(\x0e\x32,.luminary.proto.client.AdjointSolutionMethodB%\x82\xb2\x19\x04 \xf7\xdd\x02\x92\xb2\x19\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\x12\x9f\x01\n\x1b\x61\x64joint_gmres_restart_iters\x18\xc0z \x01(\x0b\x32\x18.luminary.proto.base.IntB_\x82\xb2\x19\x02\x30\x32\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00>@\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x35\n3\x08\xf7\xdd\x02\x12\x14\x41\x44JOINT_METHOD_GMRES\x1a\x17\x61\x64joint_solution_method\x12\xb2\x01\n\x1c\x61\x64joint_second_order_damping\x18\xd8\xe1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBh\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12x\n\x19\x61\x64joint_frozen_turbulence\x18\xd8H \x01(\x08\x42T\x92\xb2\x19P\x1aN\n/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\x12\x88\x02\n\x19\x61\x64joint_frozen_transition\x18\xf6\x93\x02 \x01(\x08\x42\xe2\x01\x92\xb2\x19\xdd\x01\x1a\xda\x01\nP\x1aN\n/\x1a-\n\x19\n\x17\x08\xc4\xca\x03\x12\x05\x41\x44\x41\x31\x44\x1a\nfloat_type\n\x10\x12\x0e\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\t2\x07\n\x05:\x03\x08\xd8H\n{\x12y\n$\n\"\x08\xd0\x9e\x01\x12\nGAMMA_2015\x1a\x10transition_model\n-\n+\x08\xe0\xa7\x02\x12\x13GAMMA_RE_THETA_2009\x1a\x10transition_model\n\"\n \x08\xed\x96\x03\x12\x08\x41\x46T_2019\x1a\x10transition_model\"\x91\x1f\n\x1aSpatialDiscretizationFluid\x12I\n\x0fgradient_method\x18\x9f\xec\x03 \x01(\x0e\x32%.luminary.proto.client.GradientMethodB\x07\x82\xb2\x19\x03 \xd8v\x12\xb4\x01\n\nhlsq_blend\x18\xfc\x82\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB|\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x43\x12\x41\n\x1d\n\x1b\x08\x9b\xe8\x03\x12\x04HLSQ\x1a\x0fgradient_method\n \n\x1e\x08\xf0\x8a\x03\x12\x07LC_HLSQ\x1a\x0fgradient_method\x12j\n convective_schemes_density_based\x18\xa0\x82\x03 \x01(\x0e\x32\x34.luminary.proto.client.ConvectiveSchemesDensityBasedB\x08\x82\xb2\x19\x04 \xb1\xbf\x02\x12\xf4\x01\n\x0fpreconditioning\x18\xc6\" \x01(\x0e\x32&.luminary.proto.client.PreconditioningB\xb1\x01\x82\xb2\x19\x04 \x88\xfa\x03\x92\xb2\x19\xa4\x01\x1a\xa1\x01\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\nG\x12\x45\n$\n\"\x08\xaf\x84\x02\x12\rTIME_IMPLICIT\x1a\rtime_marching\n\x1d\n\x1b\x08\x80\xf9\x03\x12\x06STEADY\x1a\rflow_behavior\x12\xcb\x01\n\x17\x66\x64s_min_low_dissipation\x18\xfcq \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x86\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19M\x1aK\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\x12\xd7\x01\n\x0f\x65ntropy_epsilon\x18\xb6\x81\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x12^\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\x12\x8e\x01\n\x1askew_symmetric_formulation\x18\xffU \x01(\x0e\x32/.luminary.proto.client.SkewSymmetricFormulationB8\x82\xb2\x19\x03 \xbe\x41\x92\xb2\x19-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12\xc2\x01\n\x1a\x61rtificial_viscosity_model\x18\xa0@ \x01(\x0e\x32/.luminary.proto.client.ArtificialViscosityModelBl\x82\xb2\x19\x04 \x8a\x8e\x01\x92\xb2\x19`\x12^\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12\xfb\x01\n\x0c\x61lpha_hybrid\x18\x84\x37 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc1\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x87\x01\x12\x84\x01\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\nS\x1aQ\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12P\n\x13upwind_scheme_order\x18\xc4\x1c \x01(\x0e\x32(.luminary.proto.client.UpwindSchemeOrderB\x08\x82\xb2\x19\x04 \xf5\x88\x02\x12\xc7\x02\n\x12robust_dissipation\x18\xc8\xc1\x03 \x01(\x0e\x32(.luminary.proto.client.RobustDissipationB\xfe\x01\x82\xb2\x19\x04 \x8d\xbc\x02\x92\xb2\x19\xf1\x01\x1a\xee\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\nf\x12\x64\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\n_\x12]\n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\x12\x82\x02\n\x07limiter\x18\xfa\x98\x03 \x01(\x0e\x32\x1e.luminary.proto.client.LimiterB\xce\x01\x82\xb2\x19\x04 \xe8\xda\x01\x92\xb2\x19\xc1\x01\x1a\xbe\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12\xcb\x01\n\rlimiter_kappa\x18\xeb\xcd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x8f\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19V\x12T\n#\n!\x08\xac\x87\x02\x12\x12VENKATAKRISHNAN_CV\x1a\x07limiter\n-\n+\x08\xe8\xda\x01\x12\x1cINVARIANT_VENKATAKRISHNAN_CV\x1a\x07limiter\x12\xe4\x02\n\numuscl_chi\x18\x8b\xed\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xab\x02\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0\xbf\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xf1\x01\x1a\xee\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n.2,\n*\n(\x08\xe1\xc3\x03\x12\x0eROBUST_DISS_ON\x1a\x12robust_dissipation\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12\xfc\x01\n\talpha_ld2\x18\xed\xab\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc4\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x8a\x01\x1a\x87\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n`\x12^\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n-\n+\x08\xa9\x9b\x03\x12\x03\x45\x43\x32\x1a convective_schemes_density_based\x12s\n\x0egeometry_fixes\x18\x92\xb7\x03 \x01(\x0e\x32$.luminary.proto.client.GeometryFixesB3\x82\xb2\x19\x04 \xd9\xe6\x01\x92\xb2\x19\'\x12%\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\x12\xaa\x01\n\x1ageometry_fixes_mitigations\x18\xb1\xe9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBb\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19)\n\'\x08\xd9\xe6\x01\x12\x11GEOMETRY_FIXES_ON\x1a\x0egeometry_fixes\x12\xb5\x02\n\x0border_blend\x18\x94\xa8\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xfb\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xc1\x01\x1a\xbe\x01\n#\n!\x08\xf5\x88\x02\x12\x06SECOND\x1a\x13upwind_scheme_order\n\x96\x01\x12\x93\x01\n-\n+\x08\xb1\xbf\x02\x12\x03ROE\x1a convective_schemes_density_based\n-\n+\x08\x99\xec\x02\x12\x03LD2\x1a convective_schemes_density_based\n3\n1\x08\xf7\xd5\x02\x12\tRHIE_CHOW\x1a convective_schemes_density_based\x12q\n\x1d\x64iscretization_preset_version\x18\xa6\xe0\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB.\x18\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x02*\x00\x12p\n#spatial_discretization_fluid_preset\x18\xc9\xef\x01 \x01(\x0e\x32\x37.luminary.proto.client.SpatialDiscretizationFluidPresetB\x08\x82\xb2\x19\x04 \xfe\xad\x02\"\xc7`\n\x17\x42oundaryConditionsFluid\x12!\n\x08surfaces\x18\xc5\x1b \x03(\tB\x0e\xa0\xb2\x19\x01\xa8\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12)\n\x17\x62oundary_condition_name\x18\x86\xa2\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x30\n\x1f\x62oundary_condition_display_name\x18\xd8Q \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\x31\n\x1f\x62oundary_condition_interface_id\x18\xfb\x9f\x02 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12N\n\x11physical_boundary\x18\x84\xd7\x03 \x01(\x0e\x32\'.luminary.proto.client.PhysicalBoundaryB\x08\x82\xb2\x19\x04 \xdb\xf9\x03\x12h\n\rwall_momentum\x18\x96\xb3\x02 \x01(\x0e\x32#.luminary.proto.client.WallMomentumB*\x82\xb2\x19\x03 \xb7V\x92\xb2\x19\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\x98\x02\n\x11roughness_control\x18\xe6\x03 \x01(\x08\x42\xfb\x01\x92\xb2\x19\xf6\x01\x12\xf3\x01\n\x8c\x01\x1a\x89\x01\n\"2 \n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\"2 \n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n\x1e\x32\x1c\n\x1a\n\x18\x08\xa3\x1b\x12\x04SLIP\x1a\rwall_momentum\nb\x1a`\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n!\n\x1f\x08\xc9\xa1\x03\x12\nWALL_MODEL\x1a\rwall_momentum\x12\xfd\x02\n\x1f\x65quivalent_sand_grain_roughness\x18\xe5\xf0\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xaf\x02\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11{\x14\xaeG\xe1zt?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xf6\x01\x12\xf3\x01\n\x8c\x01\x1a\x89\x01\n\"2 \n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\n\"2 \n\x1e\n\x1c\x08\xc7\x44\x12\x08INVISCID\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n\x1e\x32\x1c\n\x1a\n\x18\x08\xa3\x1b\x12\x04SLIP\x1a\rwall_momentum\nb\x1a`\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\n!\n\x1f\x08\xc9\xa1\x03\x12\nWALL_MODEL\x1a\rwall_momentum\x12\xbd\x01\n\x1a\x66ixed_integrated_heat_flux\x18\xa7\x9c\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBu\xb8\xb2\x19\x98\xf7\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\xb6\x01\n\x19heat_transfer_coefficient\x18\xb3\xfb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBo\xb8\xb2\x19\xc1\xf7\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x36\x1a\x34\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\xc8\x02\n\x0bwall_energy\x18\x93\xf6\x01 \x01(\x0e\x32!.luminary.proto.client.WallEnergyB\x8d\x02\x82\xb2\x19\x03 \xae\x06\x92\xb2\x19\x81\x02\x1a\xfe\x01\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\nw\x12u\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\n\x1a\n\x18\x08\x81\x80\x04\x12\x03LES\x1a\rviscous_model\n\x1e\n\x1c\x08\xce\xf7\x02\x12\x07LAMINAR\x1a\rviscous_model\x12\xcf\x01\n\x0f\x66ixed_heat_flux\x18\xe5, \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x92\x01\xb8\xb2\x19\xa7`\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19Z\x12X\n#\n!\x08\xae\x06\x12\x0f\x46IXED_HEAT_FLUX\x1a\x0bwall_energy\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\x12\x8b\x02\n\x11\x66ixed_temperature\x18\x91\xb4\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xcb\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x93\x01\x12\x90\x01\n&\n$\x08\xa7\xac\x01\x12\x11\x46IXED_TEMPERATURE\x1a\x0bwall_energy\n2\n0\x08\x9e\xc5\x01\x12\x12HEAT_BC_ISOTHERMAL\x1a\x16heat_physical_boundary\n2\n0\x08\x93\xc3\x03\x12\x12HEAT_BC_CONVECTION\x1a\x16heat_physical_boundary\x12\x9b\x01\n\x19wall_movement_translation\x18\xd7\x86\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BV\xb8\xb2\x19\x05\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\xa0\x01\n\x1dwall_movement_rotation_center\x18\xea\xd9\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BW\xb8\xb2\x19\x80P\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12\xa1\x01\n\x1ewall_movement_angular_velocity\x18\x84j \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BX\xb8\xb2\x19\xfa\xc6\x03\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\'\x1a%\n\x02*\x00\n\x1f\n\x1d\x08\xdb\xf9\x03\x12\x04WALL\x1a\x11physical_boundary\x12l\n\x0einlet_momentum\x18\x87\xfa\x02 \x01(\x0e\x32$.luminary.proto.client.InletMomentumB,\x82\xb2\x19\x04 \x8a\xb2\x03\x92\xb2\x19 \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\xca\x01\n\x18inlet_velocity_magnitude\x18\x90\xd0\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x83\x01\xb8\xb2\x19\x05\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19L\x1aJ\n&\n$\x08\x9e\xcc\x03\x12\x0eVELOCITY_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\x9d\x01\n\x1cinlet_velocity_magnitude_col\x18\xf7\x44 \x01(\x0b\x32\x18.luminary.proto.base.IntB\\\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x32\x1a\x30\n&\n$\x08\x9e\xcc\x03\x12\x0eVELOCITY_INLET\x1a\x0einlet_momentum\n\x06:\x04\x08\x85\xe9\x02\x12\xcc\x01\n\x19inlet_velocity_components\x18\x9d\xca\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x86\x01\xb8\xb2\x19\x05\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19W\x1aU\n1\n/\x08\xe3\x83\x04\x12\x19VELOCITY_COMPONENTS_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\x99\x01\n\x12total_pressure_col\x18\xde> \x01(\x0b\x32\x18.luminary.proto.base.IntBb\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x38\x1a\x36\n,\n*\x08\x8a\xb2\x03\x12\x14TOTAL_PRESSURE_INLET\x1a\x0einlet_momentum\n\x06:\x04\x08\x85\xe9\x02\x12\xc1\x01\n\x0emass_flow_rate\x18\xd9\xca\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x84\x01\xb8\xb2\x19\x0b\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19M\x1aK\n\'\n%\x08\x9f\x87\x01\x12\x0fMASS_FLOW_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\xf3\x01\n\x0etotal_pressure\x18\x80\x94\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xb6\x01\xb8\xb2\x19\x1c\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x7f\x12}\nR\x1aP\n,\n*\x08\x8a\xb2\x03\x12\x14TOTAL_PRESSURE_INLET\x1a\x0einlet_momentum\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\x12\xb9\x01\n\x17\x64irection_specification\x18\x8a\x81\x04 \x01(\x0e\x32-.luminary.proto.client.DirectionSpecificationBg\x82\xb2\x19\x04 \xe6\xa7\x03\x92\xb2\x19[\x1aY\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n523\n1\n/\x08\xe3\x83\x04\x12\x19VELOCITY_COMPONENTS_INLET\x1a\x0einlet_momentum\x12\xc3\x01\n\x0e\x66low_direction\x18\xf1\xbb\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x88\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19W\x1aU\n1\n/\x08\xaf\xd4\x01\x12\x10\x44IRECTION_VECTOR\x1a\x17\x64irection_specification\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\x12\x8a\x02\n\nprofile_bc\x18\x85\xe9\x02 \x01(\x08\x42\xf3\x01\x92\xb2\x19\xee\x01\x12\xeb\x01\n\x9a\x01\x1a\x97\x01\n \n\x1e\x08\xfe\x9d\x02\x12\tTRANSIENT\x1a\rflow_behavior\ns\x12q\n1\n/\x08\xa4\xec\x03\x12\x11HEAT_BC_HEAT_FLUX\x1a\x16heat_physical_boundary\n<\n:\x08\xe7\xe1\x03\x12\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x1a\x16heat_physical_boundary\nL\x1aJ\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n&2$\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\x12/\n\x0fprofile_bc_data\x18\xc6\xbc\x03 \x01(\tB\x14\x92\xb2\x19\x06:\x04\x08\x85\xe9\x02\x9a\xb2\x19\x06\n\x02\x12\x00 \x01\x12Z\n\x0cprofile_type\x18\x97\xae\x01 \x01(\x0e\x32\".luminary.proto.client.ProfileTypeB\x1e\x82\xb2\x19\x04 \x87\x87\x04\x92\xb2\x19\x12\x12\x10\n\x06:\x04\x08\x85\xe9\x02\n\x06:\x04\x08\xe9\xe1\x02\x12\xd3\x01\n\x0cinlet_energy\x18\xd4\x9d\x01 \x01(\x0e\x32\".luminary.proto.client.InletEnergyB\x96\x01\x82\xb2\x19\x04 \x9e\xf1\x03\x92\xb2\x19\x89\x01\x1a\x86\x01\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xb0\x02\n\x11total_temperature\x18\xdf\x8f\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf0\x01\xb8\xb2\x19\x1d\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc0r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb8\x01\x1a\xb5\x01\n-\n+\x08\x9e\xf1\x03\x12\x17TOTAL_TEMPERATURE_INLET\x1a\x0cinlet_energy\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\x84\x02\n\x15total_temperature_col\x18\xf6x \x01(\x0b\x32\x18.luminary.proto.base.IntB\xc9\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x9e\x01\x1a\x9b\x01\n-\n+\x08\x9e\xf1\x03\x12\x17TOTAL_TEMPERATURE_INLET\x1a\x0cinlet_energy\n\x06:\x04\x08\x85\xe9\x02\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12o\n\x0foutlet_strategy\x18\x94\xe0\x03 \x01(\x0e\x32%.luminary.proto.client.OutletStrategyB-\x82\xb2\x19\x04 \xf0\xb7\x03\x92\xb2\x19!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\x12\xa3\x02\n\x1coutlet_target_mass_flow_rate\x18\xb3\x19 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd9\x01\xb8\xb2\x19\x0b\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa1\x01\x1a\x9e\x01\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\ny\x12w\n5\n3\x08\xdb\xaa\x01\x12\x1cOUTLET_TARGET_MASS_FLOW_RATE\x1a\x0foutlet_strategy\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\xe4\x01\n\x19outlet_reference_pressure\x18\x86\xa5\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x65\x1a\x63\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\xe7\x01\n\x1coutlet_reference_temperature\x18\xe8\x96\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x65\x1a\x63\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n>\n<\x08\x82p\x12&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x1a\x0foutlet_strategy\x12\x99\x01\n\x0foutlet_pressure\x18\xb9\xe7\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\\\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19%\x1a#\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\x12\xbb\x01\n\x14\x66\x61n_curve_table_data\x18\xf5# \x01(\tB\x9b\x01\x92\xb2\x19\x88\x01\x12\x85\x01\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\n\n\x03\x08\xda\x04\x12\x03\x08\xd9\x04\x12\x85\x02\n\x15head_loss_coefficient\x18\xcbO \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc2\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x88\x01\x12\x85\x01\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x12\xb7\x01\n\x1aoutlet_pressure_constraint\x18\x82\xac\x03 \x01(\x0e\x32/.luminary.proto.client.OutletPressureConstraintB`\x82\xb2\x19\x04 \x86\xa8\x02\x92\xb2\x19T\x1aR\n!\n\x1f\x08\xe2\xaf\x03\x12\x06OUTLET\x1a\x11physical_boundary\n-2+\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\x12u\n\x11\x66\x61rfield_momentum\x18\x8e\xfd\x01 \x01(\x0e\x32\'.luminary.proto.client.FarfieldMomentumB/\x82\xb2\x19\x04 \x99\xd9\x02\x92\xb2\x19#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\x8e\x02\n\x14\x66\x61rfield_mach_number\x18\xe9\r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xcc\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x94\x01\x1a\x91\x01\n\x80\x01\x12~\nX\x1aV\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n/\n-\x08\x99\xd9\x02\x12\x14\x46\x41RFIELD_MACH_NUMBER\x1a\x11\x66\x61rfield_momentum\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\xe0\x01\n\x1b\x66\x61rfield_velocity_magnitude\x18\xdc\xf1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x05\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19_\x1a]\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n6\n4\x08\xcb\xaf\x02\x12\x1b\x46\x41RFIELD_VELOCITY_MAGNITUDE\x1a\x11\x66\x61rfield_momentum\x12\xe5\x02\n\x11\x66\x61rfield_pressure\x18\xf0^ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa6\x02\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xee\x01\x1a\xeb\x01\n\xda\x01\x12\xd7\x01\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n\"\n \x08\x99\xaf\x01\x12\nMACH_INLET\x1a\x0einlet_momentum\n\x8b\x01\x1a\x88\x01\n]\x12[\n&\n$\x08\x9e\xcc\x03\x12\x0eVELOCITY_INLET\x1a\x0einlet_momentum\n1\n/\x08\xe3\x83\x04\x12\x19VELOCITY_COMPONENTS_INLET\x1a\x0einlet_momentum\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\x9b\x02\n\x14\x66\x61rfield_temperature\x18\x90\xf0\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xd8\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa0\x01\x1a\x9d\x01\n\x8c\x01\x1a\x89\x01\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\x0c\x32\n\n\x08\x42\x06\n\x04heat\x12\x9c\x01\n&far_field_flow_direction_specification\x18\x85\xce\x02 \x01(\x0e\x32\x39.luminary.proto.client.FarFieldFlowDirectionSpecificationB/\x82\xb2\x19\x04 \x86\xed\x01\x92\xb2\x19#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xe0\x01\n\x17\x66\x61rfield_flow_direction\x18\xd7\xcd\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x9c\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19k\x1ai\nB\n@\x08\x86\xed\x01\x12\x12\x46\x41RFIELD_DIRECTION\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xe4\x01\n\x14\x66\x61rfield_angle_alpha\x18\xd1\xd1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n?\n=\x08\x81\xe9\x03\x12\x0f\x46\x41RFIELD_ANGLES\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xe3\x01\n\x13\x66\x61rfield_angle_beta\x18\x95\x94\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19h\x1a\x66\n?\n=\x08\x81\xe9\x03\x12\x0f\x46\x41RFIELD_ANGLES\x1a&far_field_flow_direction_specification\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\x12\xb8\x02\n)turbulence_specification_spalart_allmaras\x18\xcb\xc4\x03 \x01(\x0e\x32=.luminary.proto.client.TurbulenceSpecificationSpalartAllmarasB\xc3\x01\x82\xb2\x19\x04 \xdf\x8b\x03\x92\xb2\x19\xb6\x01\x1a\xb3\x01\nI\x12G\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x9f\x02\n\x1fturbulence_specification_komega\x18\xfc\x8d\x02 \x01(\x0e\x32\x34.luminary.proto.client.TurbulenceSpecificationKomegaB\xbd\x01\x82\xb2\x19\x04 \x8e\x8d\x02\x92\xb2\x19\xb0\x01\x1a\xad\x01\nI\x12G\n#\n!\x08\xa0\xfb\x01\x12\x08\x46\x41RFIELD\x1a\x11physical_boundary\n \n\x1e\x08\xd1\xec\x02\x12\x05INLET\x1a\x11physical_boundary\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xb2\x02\n\x19turbulent_viscosity_ratio\x18\xc4\xe9\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xea\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xc6\xb8\'\x0c\xa4\xef\xca?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb0\x01\x12\xad\x01\nO\nM\x08\xdf\x8b\x03\x12\x1cTURBULENT_VISCOSITY_RATIO_SA\x1a)turbulence_specification_spalart_allmaras\nZ\nX\x08\x8e\x8d\x02\x12\x31\x42\x43_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\x9f\x02\n\x13turbulent_viscosity\x18\xf9\xaf\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xdd\x01\xb8\xb2\x19\x90\x0b\x82\xb2\x19\x0b\n\t\t\xb9\xc0L\xb1\x86\x96\xcf>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa4\x01\x12\xa1\x01\nI\nG\x08\x95\x9a\x03\x12\x16TURBULENT_VISCOSITY_SA\x1a)turbulence_specification_spalart_allmaras\nT\nR\x08\xaf\x84\x04\x12+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\xb2\x02\n\x14turbulence_intensity\x18\x8b\x98\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xef\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb5\x01\x12\xb2\x01\nT\nR\x08\xaf\x84\x04\x12+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\nZ\nX\x08\x8e\x8d\x02\x12\x31\x42\x43_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a\x1fturbulence_specification_komega\x12\xbc\x01\n\x13\x62\x63_uniform_nu_tilde\x18\x9c\xde\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB{\xb8\xb2\x19\x07\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x44\x1a\x42\n@\n>\x08\xe4\x34\x12\x0e\x42\x43_SA_VARIABLE\x1a)turbulence_specification_spalart_allmaras\x12\xab\x01\n\x0f\x62\x63_nu_tilde_col\x18\xcc\xc4\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntBv\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19L\x1aJ\n@\n>\x08\xe4\x34\x12\x0e\x42\x43_SA_VARIABLE\x1a)turbulence_specification_spalart_allmaras\n\x06:\x04\x08\x85\xe9\x02\x12\x98\x02\n\x0e\x62\x63_uniform_tke\x18\x8cK \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xdc\x01\xb8\xb2\x19\xb9\xac\x02\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x8c\x02\n\nbc_tke_col\x18\xda\xe2\x03 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xdb\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xb0\x01\x1a\xad\x01\n\x06:\x04\x08\x85\xe9\x02\n\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x99\x02\n\x10\x62\x63_uniform_omega\x18\xe1{ \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xdb\x01\xb8\xb2\x19\x8fx\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x8e\x02\n\x0c\x62\x63_omega_col\x18\xd9\x8c\x02 \x01(\x0b\x32\x18.luminary.proto.base.IntB\xdb\x01\x82\xb2\x19\x02\x30\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\xb0\x01\x1a\xad\x01\n\x06:\x04\x08\x85\xe9\x02\n\xa2\x01\x1a\x9f\x01\n;\n9\x08\xecR\x12\x13\x42\x43_KOMEGA_VARIABLES\x1a\x1fturbulence_specification_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\"\xdck\n\x13InitializationFluid\x12R\n\x13initialization_type\x18\x9e\xf2\x01 \x01(\x0e\x32).luminary.proto.client.InitializationTypeB\x08\x82\xb2\x19\x04 \xa2\xbe\x01\x12\x8f\x01\n\tuniform_v\x18\xa7\x8a\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3BZ\xb8\xb2\x19\x05\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\x12\xd4\x02\n\tuniform_t\x18\xf8\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x02\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\tfffff\x02r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe4\x01\x12\xe1\x01\n\xd4\x01\x1a\xd1\x01\nk\x12i\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\nb\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n\x08\x42\x06\n\x04heat\x12\xa4\x02\n&potential_flow_pressure_initialization\x18\x93\x11 \x01(\x0e\x32:.luminary.proto.client.PotentialFlowPressureInitializationB\xb6\x01\x82\xb2\x19\x03 \xe1\x37\x92\xb2\x19\xaa\x01\x1a\xa7\x01\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xc0\x02\n\tuniform_p\x18\xc4\x9c\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x88\x02\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\xd0\xbc\xf8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xd0\x01\x12\xcd\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n\x9d\x01\x1a\x9a\x01\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n\\2Z\nX\nV\x08\xf5\x42\x12)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\x1a&potential_flow_pressure_initialization\x12\xca\x02\n)turbulent_variable_initialization_type_sa\x18\x85$ \x01(\x0e\x32<.luminary.proto.client.TurbulentVariableInitializationTypeSaB\xd7\x01\x82\xb2\x19\x04 \xeb\xc3\x01\x92\xb2\x19\xca\x01\x1a\xc7\x01\n\x99\x01\x12\x96\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n+\n)\x08\xd2\x1c\x12\x0f\x46\x41RFIELD_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\x12\xcb\x02\n-turbulent_variable_initialization_type_komega\x18\x97N \x01(\x0e\x32@.luminary.proto.client.TurbulentVariableInitializationTypeKomegaB\xd0\x01\x82\xb2\x19\x03 \x9d\x13\x92\xb2\x19\xc4\x01\x1a\xc1\x01\n\x99\x01\x12\x96\x01\n+\n)\x08\xa2\xbe\x01\x12\x0eUNIFORM_VALUES\x1a\x13initialization_type\n+\n)\x08\xd2\x1c\x12\x0f\x46\x41RFIELD_VALUES\x1a\x13initialization_type\n:\n8\x08\xbf\xba\x02\x12\x1dINITIALIZATION_POTENTIAL_FLOW\x1a\x13initialization_type\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\x12\xcb\x02\n\x1einit_turbulent_viscosity_ratio\x18\xe0\xa3\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xfe\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\xc6\xb8\'\x0c\xa4\xef\xca?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc4\x01\x12\xc1\x01\ni\ng\x08\x9d\x13\x12\x33INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\nT\nR\x08\xeb\xc3\x01\x12!INIT_TURBULENT_VISCOSITY_RATIO_SA\x1a)turbulent_variable_initialization_type_sa\x12\xb8\x02\n\x18init_turbulent_viscosity\x18\xfd\xca\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xf1\x01\xb8\xb2\x19\x90\x0b\x82\xb2\x19\x0b\n\t\t\xb9\xc0L\xb1\x86\x96\xcf>\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb8\x01\x12\xb5\x01\nc\na\x08\xa5R\x12-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\nN\nL\x08\xf3\xbd\x03\x12\x1bINIT_TURBULENT_VISCOSITY_SA\x1a)turbulent_variable_initialization_type_sa\x12\xd5\x02\n\x19init_turbulence_intensity\x18\x9e\xe1\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x8d\x02\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xd3\x01\x12\xd0\x01\nc\na\x08\xa5R\x12-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\ni\ng\x08\x9d\x13\x12\x33INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x1a-turbulent_variable_initialization_type_komega\x12\xa7\x02\n\x10uniform_nu_tilde\x18\x92\xfd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xe8\x01\xb8\xb2\x19\x07\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb0\x01\x1a\xad\x01\nC\nA\x08\xb3\x80\x04\x12\x10INIT_SA_VARIABLE\x1a)turbulent_variable_initialization_type_sa\n)\n\'\x08\xca\x15\x12\x10SPALART_ALLMARAS\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xa7\x02\n\x0buniform_tke\x18\xc3\xbb\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xed\x01\xb8\xb2\x19\xb9\xac\x02\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb3\x01\x1a\xb0\x01\nL\nJ\x08\x85\xb2\x01\x12\x15INIT_KOMEGA_VARIABLES\x1a-turbulent_variable_initialization_type_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\xa8\x02\n\runiform_omega\x18\xdb\xcf\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xec\x01\xb8\xb2\x19\x8fx\x82\xb2\x19\x0b\n\t\tu|e\x1fu\xd8\x05?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xb3\x01\x1a\xb0\x01\nL\nJ\x08\x85\xb2\x01\x12\x15INIT_KOMEGA_VARIABLES\x1a-turbulent_variable_initialization_type_komega\n#\n!\x08\x96p\x12\nKOMEGA_SST\x1a\x10turbulence_model\n;\x12\x39\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\n\x1a\n\x18\x08\xc7\xb3\x03\x12\x03\x44\x45S\x1a\rviscous_model\x12\x95\x01\n\x16verification_solutions\x18\xc4\xe9\x03 \x01(\x0e\x32,.luminary.proto.client.VerificationSolutionsBE\x82\xb2\x19\x04 \xf2\xc4\x03\x92\xb2\x19\x39\x1a\x37\n\x02*\x00\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\x12\xd7\x01\n\x07tgv_rho\x18\x9e\x8f\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xd5\x01\n\x05tgv_p\x18\x87\xa3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xd5\x01\n\x05tgv_v\x18\xd7\x9a\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa1\x01\xb8\xb2\x19\x05\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19j\x1ah\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n3\n1\x08\xf2\xc4\x03\x12\x13TAYLOR_GREEN_VORTEX\x1a\x16verification_solutions\x12\xd1\x01\n\x0cshocktube_p1\x18\x98\x15 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xd2\x01\n\x0cshocktube_p4\x18\xfa\xfd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xd2\x01\n\x0cshocktube_t1\x18\xdd\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t\xf5\xf3\xa6\"\x15\xc6\x66?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xd2\x01\n\x0cshocktube_t4\x18\xbc\xfe\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x97\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t\xa7\"\x15\xc6\x16\x82l?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19`\x1a^\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n)\n\'\x08\x92<\x12\nSHOCK_TUBE\x1a\x16verification_solutions\x12\xd0\x01\n\x0bshuosher_p1\x18\xd6\xb9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t{\x83/L\xa6\xaa$@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd2\x01\n\rshuosher_rho1\x18\xfa\xc3\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\to\xf6\x07\xcam\xdb\x0e@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xcf\x01\n\x0bshuosher_m1\x18\xca? \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x08@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd0\x01\n\x0bshuosher_p2\x18\x9d\xeb\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd2\x01\n\rshuosher_rho2\x18\x8e\xa7\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd0\x01\n\x0bshuosher_m2\x18\xc3\xd2\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x96\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd2\x01\n\x0cshuosher_amp\x18\xef\x46 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xd2\x01\n\x0bshuosher_kx\x18\xed\xad\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x98\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x14@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19_\x1a]\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n(\n&\x08\xf8Q\x12\tSHU_OSHER\x1a\x16verification_solutions\x12\xdd\x01\n\x11\x64isturbancewave_p\x18\x8a\x43 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\xb3\x0cq\xac\x8b\xdb\xe6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xde\x01\n\x11\x64isturbancewave_t\x18\x9a\xc1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zd?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xde\x01\n\x11\x64isturbancewave_m\x18\xad\xb8\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xdf\x01\n\x10\x61\x63ousticwave_amp\x18\xe8\xbd\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa0\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xe0\x01\n\x11vorticitywave_amp\x18\xd2\xbe\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa0\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xdd\x01\n\x0f\x65ntropywave_amp\x18\xc6* \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa0\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xe1\x01\n\x12\x64isturbancewave_kx\x18\x8e\xdd\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa0\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x14@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19g\x1a\x65\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n0\n.\x08\xb0\x91\x02\x12\x10\x44ISTURBANCE_WAVE\x1a\x16verification_solutions\x12\xd6\x01\n\x0enormalshock_p1\x18\x8f\xe2\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\xb3\x0cq\xac\x8b\xdb\xe6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd5\x01\n\x0enormalshock_t1\x18\xc4J \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zd?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd6\x01\n\x0enormalshock_m1\x18\x82\xa6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x99\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x62\x1a`\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n+\n)\x08\x9b\x62\x12\x0cNORMAL_SHOCK\x1a\x16verification_solutions\x12\xd7\x01\n\x0eshockvortex_p1\x18\xb7\xf1\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd6\x01\n\x0eshockvortex_t1\x18\x99r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\ty\xe9&1\x08\xacl?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd7\x01\n\x0eshockvortex_m1\x18\xd2\xdf\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf8?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd6\x01\n\x0eshockvortex_mv\x18\x82% \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xc9?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd8\x01\n\x0eshockvortex_xv\x18\x9b\xd4\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xd0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd8\x01\n\x0eshockvortex_zv\x18\xdc\xcc\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9b\x01\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd9\x01\n\x0eshockvortex_av\x18\x92\x9c\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t333333\xb3?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xd8\x01\n\x0eshockvortex_bv\x18\x8e\x66 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9c\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\tffffff\xc6?\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x63\x1a\x61\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n,\n*\x08\xeb\xcd\x03\x12\x0cSHOCK_VORTEX\x1a\x16verification_solutions\x12\xfa\x01\n\x05mms_k\x18\xb4\xd6\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc6\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x18-DT\xfb!\t@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x8c\x01\x1a\x89\x01\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\nT\x12R\n)\n\'\x08\xe2\xd6\x02\x12\tEULER_MMS\x1a\x16verification_solutions\n%\n#\x08\xef\x18\x12\x06NS_MMS\x1a\x16verification_solutions\x12\xf9\x01\n\x05mms_a\x18\x87( \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc6\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x8c\x01\x1a\x89\x01\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\nT\x12R\n)\n\'\x08\xe2\xd6\x02\x12\tEULER_MMS\x1a\x16verification_solutions\n%\n#\x08\xef\x18\x12\x06NS_MMS\x1a\x16verification_solutions\x12\xe2\x01\n\x16inviscid_vortex_minfty\x18\x96\xeb\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\x06\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xa9?\x8a\xb2\x19\t\t{\x14\xaeG\xe1z\x84?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe1\x01\n\x16inviscid_vortex_pinfty\x18\xf1] \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00j\xf8@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe1\x01\n\x16inviscid_vortex_tinfty\x18\xda\x10 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9d\x01\xb8\xb2\x19\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc0r@\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xdf\x01\n\x12inviscid_vortex_xv\x18\x9b\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x01\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xdf\x01\n\x12inviscid_vortex_yv\x18\x94\xef\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9e\x01\xb8\xb2\x19\x80P\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe6\x01\n\x18inviscid_vortex_xflowdir\x18\x80\x9c\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9f\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe6\x01\n\x18inviscid_vortex_yflowdir\x18\x92\xa0\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9f\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe4\x01\n\x17inviscid_vortex_rvortex\x18\xfb\x62 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9f\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1zt?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12\xe7\x01\n\x1ainviscid_vortex_betavortex\x18\xdd\x0b \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9f\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t{\x14\xaeG\xe1z\x94?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x66\x1a\x64\n1\n/\x08\x87Y\x12\x15VERIFICATION_SOLUTION\x1a\x13initialization_type\n/\n-\x08\xc1\x89\x02\x12\x0fINVISCID_VORTEX\x1a\x16verification_solutions\x12R\n\x15\x65xisting_solution_url\x18\xdcG \x01(\tB2\x92\xb2\x19.\n,\x08\xe4\xd1\x01\x12\x11\x45XISTING_SOLUTION\x1a\x13initialization_type\x12&\n\x14\x65xisting_solution_id\x18\xd5\xd6\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\"\xfe\x01\n\x17\x42ladeElementAirfoilData\x12\x14\n\nairfoil_id\x18\xb1\x85\x03 \x01(\t\x12\x16\n\x0c\x61irfoil_name\x18\xac\xed\x01 \x01(\t\x12v\n\x16\x61irfoil_radial_station\x18\xbaG \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB3\xb8\xb2\x19*\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x12=\n\x18\x61irfoil_performance_data\x18\xca@ \x01(\tB\x1a\x9a\xb2\x19\x16\n\x04\x08\xc6\xce\x02\n\x02\x08\x06\x12\x02\x08\x12\x12\x02\x08\x13\x12\x02\x08#\"\xca\'\n\x10PhysicalBehavior\x12&\n\x14physical_behavior_id\x18\x9f\xfd\x03 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12(\n\x16physical_behavior_name\x18\xc5\x9f\x01 \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12X\n\x17physical_behavior_model\x18\xa7{ \x01(\x0e\x32,.luminary.proto.client.PhysicalBehaviorModelB\x08\x82\xb2\x19\x04 \xda\xf7\x02\x12\x88\x01\n\x13\x61\x63tuator_disk_model\x18\xb1< \x01(\x0e\x32(.luminary.proto.client.ActuatorDiskModelB@\x82\xb2\x19\x04 \xc8\xb2\x03\x92\xb2\x19\x34\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\x12\xdc\x03\n\x14\x61\x63tuator_disk_thrust\x18\xeb\r \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x9a\x03\xb8\xb2\x19\x30\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xe2\x02\x12\xdf\x02\n9\n7\x08\xc8\xb2\x03\x12\x1c\x41\x43TUATOR_DISK_UNIFORM_THRUST\x1a\x13\x61\x63tuator_disk_model\n=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\n\xe2\x01\x1a\xdf\x01\nm\x12k\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\n4\n2\x08\x8c\x1c\x12\x11\x42\x45M_TARGET_THRUST\x1a\x1a\x61\x63tuator_disk_bem_strategy\x12\xb6\x01\n\x14\x61\x63tuator_disk_torque\x18\xc3\x89\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBt\xb8\xb2\x19/\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x12\xbd\x01\n\x1a\x61\x63tuator_disk_radial_force\x18\xf3p \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBv\xb8\xb2\x19\x99\x92\x01\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x12\x7f\n\x1f\x61\x63tuator_disk_radial_table_data\x18\xfc! \x01(\tBU\x92\xb2\x19=\n;\x08\xa6#\x12!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\x10\n\x02\x08*\x12\x02\x08\'\x12\x02\x08(\x12\x02\x08)\x12\xbb\x01\n\x14\x66\x61n_curve_table_data\x18\xf5# \x01(\tB\x9b\x01\x92\xb2\x19\x88\x01\x12\x85\x01\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x9a\xb2\x19\n\n\x03\x08\xda\x04\x12\x03\x08\xd9\x04\x12\x85\x02\n\x15head_loss_coefficient\x18\xcbO \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xc2\x01\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00\x00\x00\x00\xf0?\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x88\x01\x12\x85\x01\n)\n\'\x08\xf8\xde\x02\x12\x10\x46\x41N_CURVE_OUTLET\x1a\x0foutlet_strategy\n\'\n%\x08\xc9\xb7\x03\x12\x0f\x46\x41N_CURVE_INLET\x1a\x0einlet_momentum\n/\n-\x08\xef\x91\x03\x12\x12\x46\x41N_CURVE_INTERNAL\x1a\x13\x61\x63tuator_disk_model\x12\x88\x01\n\x13\x61\x63tuator_line_model\x18\x9e\xab\x01 \x01(\x0e\x32(.luminary.proto.client.ActuatorLineModelB?\x82\xb2\x19\x04 \xe1\xfb\x02\x92\xb2\x19\x33\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\x12\xee\x02\n\x1b\x61\x63tuator_disk_rotation_rate\x18\xab\xdc\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xa4\x02\xb8\xb2\x19\xfa\xc6\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00Y@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xce\x02\n\x1a\x61\x63tuator_disk_bem_strategy\x18\x87\xd7\x01 \x01(\x0e\x32..luminary.proto.client.ActuatorDiskBemStrategyB\xf7\x01\x82\xb2\x19\x04 \x93\x93\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xd4\x02\n\x19\x61\x63tuator_disk_blade_count\x18\xf8\x61 \x01(\x0b\x32\x18.luminary.proto.base.IntB\x95\x02\x82\xb2\x19\x02\x30\x02\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\xe4\x02\n\x1c\x62lade_element_pitch_schedule\x18\xdbs \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x9c\x02\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12y\n\x1b\x62lade_element_flap_schedule\x18\xc5\x17 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B3\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12y\n\x1a\x62lade_element_lag_schedule\x18\xed\xe5\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B3\xb8\xb2\x19\xc6\xce\x02\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x02*\x00\x12\xaf\x02\n\x1b\x62lade_element_geometry_data\x18\xa3\xc8\x02 \x01(\tB\x87\x02\x92\xb2\x19\xea\x01\x12\xe7\x01\nr\x1ap\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\nq\x1ao\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x9a\xb2\x19\x14\n\x02\x08*\x12\x02\x08+\x12\x02\x08,\x12\x02\x08-\x12\x02\x08.\x12\xcd\x04\n#blade_element_reference_sound_speed\x18\xebX \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\xfc\x03\xb8\xb2\x19\x05\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00@u@\x8a\xb2\x19\t\t\xbb\xbd\xd7\xd9\xdf|\xdb=\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\xc4\x03\x12\xc1\x03\n\xde\x01\x1a\xdb\x01\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n4\n2\x08\xda\xf7\x02\x12\x13\x41\x43TUATOR_DISK_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xfb\xfc\x01\x12\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x1a\x13\x61\x63tuator_disk_model\n\xdd\x01\x1a\xda\x01\ni\x12g\n.\n,\x08\x91\xe1\x01\x12\x10\x43ONSTANT_DENSITY\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\n3\n1\x08\xd7\x0f\x12\x13\x41\x43TUATOR_LINE_MODEL\x1a\x17physical_behavior_model\n8\n6\x08\xe1\xfb\x02\x12\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x1a\x13\x61\x63tuator_line_model\x12\x8d\x01\n\x15particle_source_model\x18\xa9\x97\x02 \x01(\x0e\x32*.luminary.proto.client.ParticleSourceModelB@\x82\xb2\x19\x04 \xa0\x9c\x02\x92\xb2\x19\x34\n2\x08\xbb\x9f\x02\x12\x13SOURCE_POINTS_MODEL\x1a\x17physical_behavior_model\x12\xba\x01\n#source_particle_mass_injection_rate\x18\xfc\xd9\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBi\xb8\xb2\x19\x0b\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19\x32\n0\x08\xa0\x9c\x02\x12\x13GENERAL_MASS_SOURCE\x1a\x15particle_source_model\x12\xb9\x01\n#source_particle_acceleration_vector\x18\xab\xe0\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3Bj\xb8\xb2\x19\xe7\x1e\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x1f\x85\xebQ\xb8\x9e#\xc0\x92\xb2\x19:\n8\x08\x80\xc9\x01\x12\x1bGENERAL_ACCELERATION_SOURCE\x1a\x15particle_source_model\x12T\n\x1a\x62lade_element_airfoil_data\x18\xdd\x8f\x03 \x03(\x0b\x32..luminary.proto.client.BladeElementAirfoilData\"\xad\x06\n\nCavitation\x12s\n\x10\x63\x61vitation_model\x18\xadt \x01(\x0e\x32&.luminary.proto.client.CavitationModelB0\x82\xb2\x19\x04 \xb2\xe9\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xa7\x01\n\x1e\x64\x65nsity_vapor_phase_cavitation\x18\xce\xc7\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB[\xb8\xb2\x19\x01\x82\xb2\x19\x0b\n\t\t7\x1a\xc0[ A\xe7?\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\xa7\x01\n\x1esaturation_pressure_cavitation\x18\xc4\x9d\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB[\xb8\xb2\x19\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\xc4\xa8@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\x12\x9e\x01\n\x10n0_sauer_schnerr\x18\x92\xc0\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB`\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x84\xd7\x97\x41\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\'\n%\x08\xb2\xe9\x01\x12\rSAUER_SCHNERR\x1a\x10\x63\x61vitation_model\x12\xb4\x01\n\x08n_reboud\x18\x85\x96\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB~\xb8\xb2\x19\xd4\x9a\x02\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00$@\x8a\xb2\x19\t\t\x00\x00\x00 _\xa0\x02\xc2\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x01\x92\xb2\x19\x45\x1a\x43\n$\n\"\x08\xa9\xba\x03\x12\x10\x43\x41VITATING_FLUID\x1a\nfluid_type\n\x1b\n\x19\x08\x92\x95\x02\x12\x04RANS\x1a\rviscous_model\"\xa9\x08\n\x0ePorousBehavior\x12#\n\x12porous_behavior_id\x18\xed. \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12%\n\x14porous_behavior_name\x18\xdfo \x01(\tB\x06\x92\xb2\x19\x02*\x00\x12\"\n\x08zone_ids\x18\xfe\xa9\x02 \x03(\tB\x0e\xa0\xb2\x19\x01\xb0\xb2\x19\x01\x92\xb2\x19\x02*\x00\x12S\n\x11porous_model_type\x18\xbc\xc9\x02 \x01(\x0e\x32&.luminary.proto.client.PorousModelTypeB\x0e\x82\xb2\x19\x04 \xab\xb2\x03\x92\xb2\x19\x02*\x00\x12\xb3\x01\n\x0b\x64\x61rcy_coeff\x18\xf5\xef\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B|\xb8\xb2\x19\xfc_\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\x12\xba\x01\n\x11\x66orchheimer_coeff\x18\xe8\xc4\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B}\xb8\xb2\x19\xab\xb6\x01\x82\xb2\x19#\x12!\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x12\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x1a\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xb2\x19\t\x11\x00\x00\x00 _\xa0\x02\x42\x8a\xb2\x19\x02\x18\x00\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\x12\xc1\x01\n\x18porous_heat_source_power\x18\xd6\x8f\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB{\xb8\xb2\x19\x98\xf7\x03\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12\xce\x01\n(porous_heat_source_power_per_unit_volume\x18\x9d \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeBy\xb8\xb2\x19\x33\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb2\x19\x62\x12`\n\'\n%\x08\xec\xa4\x02\x12\tIDEAL_GAS\x1a\x14\x64\x65nsity_relationship\n5\n3\x08\xb1\xc6\x02\x12\x17\x43ONSTANT_DENSITY_ENERGY\x1a\x14\x64\x65nsity_relationship\x12J\n\x0cref_frame_id\x18\xeb\xe1\x02 \x01(\tB2\x18\x01\x92\xb2\x19,\n*\x08\xab\xb2\x03\x12\x11\x44\x41RCY_FORCHHEIMER\x1a\x11porous_model_type\"\xd9\x06\n\x05\x46luid\x12\x37\n\x0b\x62\x61sic_fluid\x18\x88u \x01(\x0b\x32!.luminary.proto.client.BasicFluid\x12\x37\n\nturbulence\x18\x81\xb0\x01 \x01(\x0b\x32!.luminary.proto.client.Turbulence\x12O\n\x17solution_controls_fluid\x18\xfa\xfc\x01 \x01(\x0b\x32,.luminary.proto.client.SolutionControlsFluid\x12L\n\x16\x61\x64joint_controls_fluid\x18\xa2j \x01(\x0b\x32+.luminary.proto.client.AdjointControlsFluid\x12Y\n\x1cspatial_discretization_fluid\x18\xb1\xfb\x02 \x01(\x0b\x32\x31.luminary.proto.client.SpatialDiscretizationFluid\x12S\n\x19\x62oundary_conditions_fluid\x18\xdd\xa7\x01 \x03(\x0b\x32..luminary.proto.client.BoundaryConditionsFluid\x12\x46\n\x12sliding_interfaces\x18\xae\xe6\x03 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12<\n\rperiodic_pair\x18\xec\x81\x04 \x03(\x0b\x32#.luminary.proto.client.PeriodicPair\x12J\n\x14initialization_fluid\x18\xa0\x86\x02 \x01(\x0b\x32*.luminary.proto.client.InitializationFluid\x12\x43\n\x11physical_behavior\x18\xd8U \x03(\x0b\x32\'.luminary.proto.client.PhysicalBehavior\x12\x36\n\ncavitation\x18\xab\x19 \x01(\x0b\x32!.luminary.proto.client.Cavitation\x12@\n\x0fporous_behavior\x18\xeb\xa0\x02 \x03(\x0b\x32%.luminary.proto.client.PorousBehavior\"\xb9\x01\n\x07Physics\x12\x44\n\x12physics_identifier\x18\xb2\x1a \x01(\x0b\x32\'.luminary.proto.client.EntityIdentifier\x12-\n\x04heat\x18\xab\xb4\x01 \x01(\x0b\x32\x1b.luminary.proto.client.HeatH\x00\x12/\n\x05\x66luid\x18\x86\xbc\x01 \x01(\x0b\x32\x1c.luminary.proto.client.FluidH\x00\x42\x08\n\x06params\"\x7f\n\x1bMultiPhysicsCouplingOptions\x12`\n\x1cmp_coupling_lin_sol_coupling\x18\xf0\" \x01(\x0e\x32/.luminary.proto.client.MpCouplingLinSolCouplingB\x08\x82\xb2\x19\x04 \xd7\x9e\x02\"\xc8\x0e\n\x0fSimulationParam\x12\x10\n\x06schema\x18\x8b\xbe\x03 \x01(\t\x12-\n\x05units\x18\x82\x93\x03 \x01(\x0b\x32\x1c.luminary.proto.client.Units\x12S\n\x0enamed_variable\x18\xf6\xfd\x03 \x03(\x0b\x32\x39.luminary.proto.client.SimulationParam.NamedVariableEntry\x12-\n\x05input\x18\xed\x92\x03 \x01(\x0b\x32\x1c.luminary.proto.client.Input\x12@\n\x0fmaterial_entity\x18\x88\x95\x02 \x03(\x0b\x32%.luminary.proto.client.MaterialEntity\x12;\n\rvolume_entity\x18\x9c) \x03(\x0b\x32#.luminary.proto.client.VolumeEntity\x12\x30\n\x07general\x18\xeb\x1f \x01(\x0b\x32\x1e.luminary.proto.client.General\x12\x31\n\x07\x61\x64joint\x18\x94\xf8\x01 \x01(\x0b\x32\x1e.luminary.proto.client.Adjoint\x12*\n\x04time\x18\xe1\x66 \x01(\x0b\x32\x1b.luminary.proto.client.Time\x12\x38\n\x0bmotion_data\x18\xe2\xa4\x03 \x03(\x0b\x32!.luminary.proto.client.MotionData\x12=\n\x0eparticle_group\x18\xd5\t \x03(\x0b\x32$.luminary.proto.client.ParticleGroup\x12<\n\rmonitor_plane\x18\x8a\xdb\x01 \x03(\x0b\x32#.luminary.proto.client.MonitorPlane\x12\x35\n\nbody_frame\x18\xe3\x12 \x01(\x0b\x32 .luminary.proto.client.BodyFrame\x12U\n\x0csurface_name\x18\xe0\xb9\x02 \x03(\x0b\x32\x37.luminary.proto.client.SimulationParam.SurfaceNameEntryB\x04\xa0\xb2\x19\x01\x12\x41\n\x05table\x18\xd0\x1a \x03(\x0b\x32\x31.luminary.proto.client.SimulationParam.TableEntry\x12W\n\x10table_references\x18\xe4\x96\x03 \x03(\x0b\x32;.luminary.proto.client.SimulationParam.TableReferencesEntry\x12/\n\x06output\x18\xef\xc1\x03 \x01(\x0b\x32\x1d.luminary.proto.client.Output\x12J\n\x14\x63onvergence_criteria\x18\x9a\xdc\x03 \x01(\x0b\x32*.luminary.proto.client.ConvergenceCriteria\x12I\n\x14\x65ntity_relationships\x18\xd6X \x01(\x0b\x32*.luminary.proto.client.EntityRelationships\x12\x42\n\x10reference_values\x18\xb2\x9d\x02 \x01(\x0b\x32&.luminary.proto.client.ReferenceValues\x12Q\n\x18\x61\x64\x61ptive_mesh_refinement\x18\xff\xb4\x01 \x01(\x0b\x32-.luminary.proto.client.AdaptiveMeshRefinement\x12\x31\n\x07physics\x18\xac\xe8\x01 \x03(\x0b\x32\x1e.luminary.proto.client.Physics\x12=\n\ninterfaces\x18\xf5\x04 \x03(\x0b\x32(.luminary.proto.client.SlidingInterfaces\x12P\n\x13mp_coupling_options\x18\xe7\x13 \x01(\x0b\x32\x32.luminary.proto.client.MultiPhysicsCouplingOptions\x1aV\n\x12NamedVariableEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType:\x02\x38\x01\x1aV\n\x10SurfaceNameEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".luminary.proto.client.SurfaceName:\x02\x38\x01\x1aT\n\nTableEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.table.RectilinearTable:\x02\x38\x01\x1aV\n\x14TableReferencesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.table.Metadata:\x02\x38\x01*i\n\nUnitSystem\x12\x17\n\x13INVALID_UNIT_SYSTEM\x10\x00\x12\x17\n\x12UNIT_SYSTEM_CUSTOM\x10\xb6N\x12\x14\n\x0eUNIT_SYSTEM_SI\x10\x81\xe5\x03\x12\x13\n\x0eUNIT_SYSTEM_US\x10\x8d\t*\x80\x01\n\x0fTemperatureUnit\x12\x1c\n\x18INVALID_TEMPERATURE_UNIT\x10\x00\x12\x11\n\x0bUNIT_KELVIN\x10\x96\xe6\x02\x12\x11\n\x0cUNIT_CELSIUS\x10\x83\\\x12\x12\n\x0cUNIT_RANKINE\x10\xf1\xc8\x02\x12\x15\n\x0fUNIT_FAHRENHEIT\x10\x92\xb1\x01*W\n\x08MassUnit\x12\x15\n\x11INVALID_MASS_UNIT\x10\x00\x12\x13\n\rUNIT_KILOGRAM\x10\xb4\xf3\x03\x12\x0e\n\tUNIT_GRAM\x10\xf0l\x12\x0f\n\nUNIT_POUND\x10\xa8\x37*n\n\nLengthUnit\x12\x17\n\x13INVALID_LENGTH_UNIT\x10\x00\x12\x10\n\nUNIT_METER\x10\xdc\xd4\x01\x12\x15\n\x0fUNIT_MILLIMETER\x10\xf2\xc4\x03\x12\x0e\n\tUNIT_FOOT\x10\xc3o\x12\x0e\n\tUNIT_INCH\x10\xac:*H\n\tAngleUnit\x12\x16\n\x12INVALID_ANGLE_UNIT\x10\x00\x12\x11\n\x0bUNIT_DEGREE\x10\x88\x9e\x01\x12\x10\n\x0bUNIT_RADIAN\x10\xfaO*4\n\x08TimeUnit\x12\x15\n\x11INVALID_TIME_UNIT\x10\x00\x12\x11\n\x0bUNIT_SECOND\x10\xd8\xc5\x01*\x94\x01\n\x0cVelocityUnit\x12\x19\n\x15INVALID_VELOCITY_UNIT\x10\x00\x12\x1a\n\x15UNIT_METER_PER_SECOND\x10\xf1h\x12\x16\n\x10UNIT_KM_PER_HOUR\x10\xa4\xed\x02\x12\x1a\n\x14UNIT_FEET_PER_SECOND\x10\x82\xc4\x02\x12\x19\n\x13UNIT_MILES_PER_HOUR\x10\xdd\x84\x01*f\n\x13\x41ngularVelocityUnit\x12!\n\x1dINVALID_ANGULAR_VELOCITY_UNIT\x10\x00\x12\x1c\n\x16UNIT_RADIAN_PER_SECOND\x10\xe8\xc3\x01\x12\x0e\n\x08UNIT_RPM\x10\xaf\xee\x01*M\n\tForceUnit\x12\x16\n\x12INVALID_FORCE_UNIT\x10\x00\x12\x10\n\x0bUNIT_NEWTON\x10\x80(\x12\x16\n\x10UNIT_POUND_FORCE\x10\xbd\x81\x03*T\n\nMomentUnit\x12\x17\n\x13INVALID_MOMENT_UNIT\x10\x00\x12\x16\n\x11UNIT_NEWTON_METER\x10\xc4[\x12\x15\n\x0fUNIT_POUND_FOOT\x10\xd8\x84\x01*[\n\x0cPressureUnit\x12\x19\n\x15INVALID_PRESSURE_UNIT\x10\x00\x12\x10\n\x0bUNIT_PASCAL\x10\xd4V\x12\x0e\n\x08UNIT_BAR\x10\xc8\xea\x02\x12\x0e\n\x08UNIT_PSI\x10\xde\xbe\x03*G\n\nEnergyUnit\x12\x17\n\x13INVALID_ENERGY_UNIT\x10\x00\x12\x10\n\nUNIT_JOULE\x10\xa7\xdb\x01\x12\x0e\n\x08UNIT_BTU\x10\x8b\xaf\x03*K\n\tPowerUnit\x12\x16\n\x12INVALID_POWER_UNIT\x10\x00\x12\x0f\n\tUNIT_WATT\x10\xe7\x9c\x03\x12\x15\n\x0fUNIT_HORSEPOWER\x10\xd0\xa6\x03*\x8d\x01\n\nVolumeUnit\x12\x17\n\x13INVALID_VOLUME_UNIT\x10\x00\x12\x15\n\x10UNIT_CUBIC_METER\x10\xcd_\x12\x10\n\nUNIT_LITER\x10\xf3\xde\x02\x12\x10\n\x0bUNIT_GALLON\x10\x93\x65\x12\x15\n\x0fUNIT_CUBIC_INCH\x10\x93\x83\x03\x12\x14\n\x0fUNIT_CUBIC_FOOT\x10\xb4\n*i\n\x12VolumetricFlowUnit\x12 \n\x1cINVALID_VOLUMETRIC_FLOW_UNIT\x10\x00\x12!\n\x1bUNIT_CUBIC_METER_PER_SECOND\x10\x8d\xc4\x02\x12\x0e\n\x08UNIT_CFM\x10\xb7\xc0\x01*\x84\x01\n\rViscosityUnit\x12\x1a\n\x16INVALID_VISCOSITY_UNIT\x10\x00\x12\x17\n\x12UNIT_PASCAL_SECOND\x10\xd0\x07\x12\x15\n\x0fUNIT_CENTIPOISE\x10\xb5\x84\x01\x12\'\n!UNIT_POUND_SECOND_PER_SQUARE_FOOT\x10\x93\xc3\x02*{\n\x10\x43onductivityUnit\x12\x1d\n\x19INVALID_CONDUCTIVITY_UNIT\x10\x00\x12\x1f\n\x1aUNIT_WATT_PER_METER_KELVIN\x10\x92\x03\x12\'\n!UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT\x10\xe1\xa9\x01*s\n\x13MolecularWeightUnit\x12!\n\x1dINVALID_MOLECULAR_WEIGHT_UNIT\x10\x00\x12\x18\n\x12UNIT_GRAM_PER_MOLE\x10\x89\xff\x02\x12\x1f\n\x19UNIT_POUND_PER_POUND_MOLE\x10\xcc\xf3\x01*\x7f\n\x13\x44\x65nsityRelationship\x12 \n\x1cINVALID_DENSITY_RELATIONSHIP\x10\x00\x12\x0f\n\tIDEAL_GAS\x10\xec\xa4\x02\x12\x16\n\x10\x43ONSTANT_DENSITY\x10\x91\xe1\x01\x12\x1d\n\x17\x43ONSTANT_DENSITY_ENERGY\x10\xb1\xc6\x02*\xcd\x01\n\x1aLaminarThermalConductivity\x12(\n$INVALID_LAMINAR_THERMAL_CONDUCTIVITY\x10\x00\x12&\n LAMINAR_CONSTANT_THERMAL_PRANDTL\x10\xb1\xeb\x02\x12+\n%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\x10\xb5\xb4\x02\x12\x30\n*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\x10\xef\xa9\x02*i\n\x17\x42oussinesqApproximation\x12$\n INVALID_BOUSSINESQ_APPROXIMATION\x10\x00\x12\x13\n\x0e\x42OUSSINESQ_OFF\x10\xc2`\x12\x13\n\rBOUSSINESQ_ON\x10\x91\xcb\x01*\x9d\x01\n\x13MaterialFluidPreset\x12!\n\x1dINVALID_MATERIAL_FLUID_PRESET\x10\x00\x12!\n\x1bUNSET_MATERIAL_FLUID_PRESET\x10\x9a\xc1\x02\x12\x12\n\x0cSTANDARD_AIR\x10\xb8\xdc\x01\x12\x0f\n\tWATER_NTP\x10\xc4\xbe\x01\x12\x1b\n\x15\x43USTOM_MATERIAL_FLUID\x10\xcc\xfd\x01*\xb1\x01\n\x1eLaminarViscosityModelNewtonian\x12-\n)INVALID_LAMINAR_VISCOSITY_MODEL_NEWTONIAN\x10\x00\x12\x10\n\nSUTHERLAND\x10\x8b\x9c\x02\x12\x1f\n\x1aLAMINAR_CONSTANT_VISCOSITY\x10\xb8H\x12-\n\'TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY\x10\x84\xc6\x02*\x9d\x01\n\x13MaterialSolidPreset\x12!\n\x1dINVALID_MATERIAL_SOLID_PRESET\x10\x00\x12\x0e\n\x08\x41LUMINUM\x10\xb4\x92\x02\x12\x0c\n\x06\x43OPPER\x10\xdc\xd8\x03\x12\n\n\x04IRON\x10\xea\xf5\x01\x12\x0c\n\x06NICKEL\x10\xd3\xe9\x02\x12\x0e\n\x08TITANIUM\x10\xf9\xe7\x02\x12\x1b\n\x15\x43USTOM_MATERIAL_SOLID\x10\xa6\xeb\x03*K\n\tFloatType\x12\x16\n\x12INVALID_FLOAT_TYPE\x10\x00\x12\x0c\n\x06\x44OUBLE\x10\xbb\xcc\x01\x12\x0b\n\x05\x41\x44T1D\x10\xba\xb8\x03\x12\x0b\n\x05\x41\x44\x41\x31\x44\x10\xc4\xca\x03*C\n\x07Gravity\x12\x13\n\x0fINVALID_GRAVITY\x10\x00\x12\x11\n\x0bGRAVITY_OFF\x10\x95\xe3\x03\x12\x10\n\nGRAVITY_ON\x10\x9c\xe2\x03*H\n\x0c\x46lowBehavior\x12\x19\n\x15INVALID_FLOW_BEHAVIOR\x10\x00\x12\x0c\n\x06STEADY\x10\x80\xf9\x03\x12\x0f\n\tTRANSIENT\x10\xfe\x9d\x02*S\n\x0cTimeMarching\x12\x19\n\x15INVALID_TIME_MARCHING\x10\x00\x12\x13\n\rTIME_IMPLICIT\x10\xaf\x84\x02\x12\x13\n\rTIME_EXPLICIT\x10\x91\xbe\x01*Y\n\x11TimeImplicitOrder\x12\x1f\n\x1bINVALID_TIME_IMPLICIT_ORDER\x10\x00\x12\x11\n\x0bTIME_SECOND\x10\x87\x8c\x03\x12\x10\n\nTIME_FIRST\x10\xe7\xb7\x02*V\n\x16PhysicalTimeStepMethod\x12%\n!INVALID_PHYSICAL_TIME_STEP_METHOD\x10\x00\x12\x15\n\x0f\x46IXED_TIME_STEP\x10\xc0\xf8\x01*]\n\x0cTimeStepRamp\x12\x1a\n\x16INVALID_TIME_STEP_RAMP\x10\x00\x12\x18\n\x12TIME_STEP_RAMP_OFF\x10\x93\xf6\x01\x12\x17\n\x11TIME_STEP_RAMP_ON\x10\xdc\xae\x02*m\n\x11\x43omputeStatistics\x12\x1e\n\x1aINVALID_COMPUTE_STATISTICS\x10\x00\x12\x1c\n\x16\x43OMPUTE_STATISTICS_OFF\x10\xf2\xbc\x02\x12\x1a\n\x15\x43OMPUTE_STATISTICS_ON\x10\xb3\x08*\x9c\x01\n\nMotionType\x12\x17\n\x13INVALID_MOTION_TYPE\x10\x00\x12\x0f\n\tNO_MOTION\x10\xb4\xa8\x01\x12!\n\x1b\x43ONSTANT_TRANSLATION_MOTION\x10\xff\xd0\x01\x12\x1d\n\x17\x43ONSTANT_ANGULAR_MOTION\x10\x8a\xf6\x02\x12\"\n\x18\x43ONSTANT_VELOCITY_MOTION\x10\xe7\xe7\x02\x1a\x02\x08\x01*u\n\x11MotionFormulation\x12\x1e\n\x1aINVALID_MOTION_FORMULATION\x10\x00\x12\"\n\x1c\x41UTOMATIC_MOTION_FORMULATION\x10\x91\xeb\x02\x12\x1c\n\x16MRF_MOTION_FORMULATION\x10\xe4\xde\x02*\x81\x01\n\x13MotionSpecification\x12 \n\x1cINVALID_MOTION_SPECIFICATION\x10\x00\x12%\n\x1fMOTION_SPECIFICATION_REPOSITION\x10\x91\xb4\x01\x12!\n\x1bMOTION_SPECIFICATION_NORMAL\x10\x9e\xb0\x03*z\n\rTransformType\x12\x1a\n\x16INVALID_TRANSFORM_TYPE\x10\x00\x12\x12\n\x0cNO_TRANSFORM\x10\xd0\xe7\x02\x12\x1a\n\x14ROTATIONAL_TRANSFORM\x10\xe6\xb8\x03\x12\x1d\n\x17TRANSLATIONAL_TRANSFORM\x10\xfb\xcc\x02*\x86\x01\n\x11ParticleGroupType\x12\x1f\n\x1bINVALID_PARTICLE_GROUP_TYPE\x10\x00\x12\x13\n\rACTUATOR_DISK\x10\xd9\xdf\x01\x12\x13\n\rACTUATOR_LINE\x10\xb2\xb8\x03\x12\x13\n\rSOURCE_POINTS\x10\xa8\x92\x02\x12\x11\n\x0cPROBE_POINTS\x10\xdd>*\xaa\x01\n ActuatorDiskOrientationSelection\x12/\n+INVALID_ACTUATOR_DISK_ORIENTATION_SELECTION\x10\x00\x12+\n%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\x10\xf2\x95\x03\x12(\n#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\x10\xbe\x38*_\n\x0b\x44\x65\x62ugOutput\x12\x18\n\x14INVALID_DEBUG_OUTPUT\x10\x00\x12\x1b\n\x15SOLN_DEBUG_OUTPUT_OFF\x10\xdf\xba\x02\x12\x19\n\x14SOLN_DEBUG_OUTPUT_ON\x10\x83)*\xa5\x01\n\x1e\x44\x65\x62ugOutputInteriorSurfaceData\x12.\n*INVALID_DEBUG_OUTPUT_INTERIOR_SURFACE_DATA\x10\x00\x12)\n#SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF\x10\x9a\xac\x02\x12(\n\"SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON\x10\xf6\xa8\x01*\\\n\rMeshingMethod\x12\x1a\n\x16INVALID_MESHING_METHOD\x10\x00\x12\x18\n\x12MESH_METHOD_MANUAL\x10\xa2\x90\x02\x12\x15\n\x10MESH_METHOD_AUTO\x10\xfb\x0c*V\n\x06\x41llTet\x12\x13\n\x0fINVALID_ALL_TET\x10\x00\x12\x12\n\rALL_TET_UNSET\x10\xf6 \x12\x11\n\x0b\x41LL_TET_OFF\x10\xbc\xc0\x01\x12\x10\n\nALL_TET_ON\x10\x8a\xfa\x02*Q\n\x10RelaxationMethod\x12\x1d\n\x19INVALID_RELAXATION_METHOD\x10\x00\x12\x0e\n\x08IMPLICIT\x10\xa0\x9e\x03\x12\x0e\n\x08\x45XPLICIT\x10\xfe\xd3\x01*C\n\x0eImplicitMethod\x12\x1b\n\x17INVALID_IMPLICIT_METHOD\x10\x00\x12\x14\n\x0e\x42\x41\x43KWARD_EULER\x10\xb7\xeb\x03*p\n\x10LinearSolverType\x12\x1e\n\x1aINVALID_LINEAR_SOLVER_TYPE\x10\x00\x12\x07\n\x02GS\x10\xd1}\x12\x0c\n\x07GS_AMGX\x10\xd0t\x12\x15\n\x0f\x41MG_KRYLOV_AMGX\x10\xa9\x8e\x02\x12\x0e\n\x08\x41MG_AMGX\x10\x90\xb0\x01*\x94\x01\n\x12LinsolAmgCycleType\x12!\n\x1dINVALID_LINSOL_AMG_CYCLE_TYPE\x10\x00\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_V\x10\xfd\xd4\x01\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_W\x10\xef\xd4\x03\x12\x1d\n\x17LINSOL_AMG_CYCLE_TYPE_F\x10\xcc\xc3\x01*\x96\x01\n\x11LinsolAmgSmoother\x12\x1f\n\x1bINVALID_LINSOL_AMG_SMOOTHER\x10\x00\x12 \n\x1aLINSOL_AMG_SMOOTHER_JACOBI\x10\xf8\xe0\x02\x12\x1c\n\x16LINSOL_AMG_SMOOTHER_GS\x10\xbf\xcf\x02\x12 \n\x1aLINSOL_AMG_SMOOTHER_SYM_GS\x10\xd1\xff\x02*]\n\x0e\x45xplicitMethod\x12\x1b\n\x17INVALID_EXPLICIT_METHOD\x10\x00\x12\n\n\x04RK_4\x10\xeb\xca\x02\x12\r\n\x08TVD_RK_3\x10\xb6]\x12\x13\n\rFORWARD_EULER\x10\x9a\xa7\x01*\x90\x02\n\x1aSolutionControlsHeatPreset\x12)\n%INVALID_SOLUTION_CONTROLS_HEAT_PRESET\x10\x00\x12)\n#UNSET_SOLUTION_CONTROLS_HEAT_PRESET\x10\x83\xbd\x01\x12#\n\x1e\x44\x45\x46\x41ULT_SOLUTION_CONTROLS_HEAT\x10\xe4\x05\x12)\n#INTERMEDIATE_SOLUTION_CONTROLS_HEAT\x10\xf5\xde\x03\x12\'\n!AGGRESSIVE_SOLUTION_CONTROLS_HEAT\x10\xb7\xcc\x03\x12#\n\x1d\x43USTOM_SOLUTION_CONTROLS_HEAT\x10\xec\xd7\x02*\x9a\x01\n\x15\x41\x64jointSolutionMethod\x12#\n\x1fINVALID_ADJOINT_SOLUTION_METHOD\x10\x00\x12\x1a\n\x14\x41\x44JOINT_METHOD_GMRES\x10\xf7\xdd\x02\x12\x1f\n\x19\x41\x44JOINT_METHOD_RICHARDSON\x10\x92\xeb\x01\x12\x1f\n\x1a\x41\x44JOINT_METHOD_ALGORITHMIC\x10\xc0\x37*\x8e\x01\n\x0eGradientMethod\x12\x1b\n\x17INVALID_GRADIENT_METHOD\x10\x00\x12\n\n\x04HLSQ\x10\x9b\xe8\x03\x12\x1c\n\x16WEIGHTED_LEAST_SQUARES\x10\xa7\xc2\x02\x12\x11\n\x0bGREEN_GAUSS\x10\xe7\xe8\x01\x12\r\n\x07LC_HLSQ\x10\xf0\x8a\x03\x12\x13\n\x0eNODAL_GRADIENT\x10\xd8v*^\n\rGeometryFixes\x12\x1a\n\x16INVALID_GEOMETRY_FIXES\x10\x00\x12\x17\n\x11GEOMETRY_FIXES_ON\x10\xd9\xe6\x01\x12\x18\n\x12GEOMETRY_FIXES_OFF\x10\xf0\xb3\x03*\xb4\x02\n\x1fSpatialDiscretizationHeatPreset\x12.\n*INVALID_SPATIAL_DISCRETIZATION_HEAT_PRESET\x10\x00\x12.\n(UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET\x10\xc3\xa6\x02\x12(\n#DEFAULT_SPATIAL_DISCRETIZATION_HEAT\x10\xb1\x34\x12.\n(CONSERVATIVE_SPATIAL_DISCRETIZATION_HEAT\x10\xea\xd7\x03\x12.\n)HIGH_ACCURACY_SPATIAL_DISCRETIZATION_HEAT\x10\xd3+\x12\'\n\"CUSTOM_SPATIAL_DISCRETIZATION_HEAT\x10\xb6\x15*\x9a\x01\n\x0bProfileType\x12\x18\n\x14INVALID_PROFILE_TYPE\x10\x00\x12\x11\n\x0b\x43\x41RTESIAN_X\x10\x87\x87\x04\x12\x11\n\x0b\x43\x41RTESIAN_Y\x10\xc5\xb6\x02\x12\x11\n\x0b\x43\x41RTESIAN_Z\x10\x8c\xb4\x01\x12\x0e\n\x08RADIAL_X\x10\xc5\xee\x03\x12\r\n\x08RADIAL_Y\x10\xc1u\x12\r\n\x08RADIAL_Z\x10\xfe\x62\x12\n\n\x04TIME\x10\x89\xb1\x01*\xc3\x01\n\x14HeatPhysicalBoundary\x12\"\n\x1eINVALID_HEAT_PHYSICAL_BOUNDARY\x10\x00\x12\x18\n\x12HEAT_BC_ISOTHERMAL\x10\x9e\xc5\x01\x12\x17\n\x11HEAT_BC_HEAT_FLUX\x10\xa4\xec\x03\x12\"\n\x1cHEAT_BC_INTEGRATED_HEAT_FLUX\x10\xe7\xe1\x03\x12\x16\n\x10HEAT_BC_SYMMETRY\x10\xd0\xb2\x03\x12\x18\n\x12HEAT_BC_CONVECTION\x10\x93\xc3\x03*\xbb\x01\n\x12InitializationType\x12\x1f\n\x1bINVALID_INITIALIZATION_TYPE\x10\x00\x12\x14\n\x0eUNIFORM_VALUES\x10\xa2\xbe\x01\x12\x14\n\x0f\x46\x41RFIELD_VALUES\x10\xd2\x1c\x12#\n\x1dINITIALIZATION_POTENTIAL_FLOW\x10\xbf\xba\x02\x12\x1a\n\x15VERIFICATION_SOLUTION\x10\x87Y\x12\x17\n\x11\x45XISTING_SOLUTION\x10\xe4\xd1\x01*}\n\x0eHeatSourceType\x12\x1c\n\x18INVALID_HEAT_SOURCE_TYPE\x10\x00\x12\x1c\n\x16HEAT_SOURCE_TYPE_POWER\x10\xc2\xe2\x01\x12/\n)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\x10\xbf\xde\x03*b\n\rInterfaceType\x12\x1a\n\x16INVALID_INTERFACE_TYPE\x10\x00\x12\x17\n\x11GENERAL_INTERFACE\x10\xc2\xa3\x03\x12\x1c\n\x16MIXING_PLANE_INTERFACE\x10\xaa\xdf\x02*U\n\x0ePeriodicBcType\x12\x1c\n\x18INVALID_PERIODIC_BC_TYPE\x10\x00\x12\x13\n\rTRANSLATIONAL\x10\xd9\x9d\x01\x12\x10\n\nROTATIONAL\x10\xee\x8c\x02*`\n\tFluidType\x12\x16\n\x12INVALID_FLUID_TYPE\x10\x00\x12\x12\n\x0cSINGLE_PHASE\x10\xdd\xf0\x01\x12\x16\n\x10\x43\x41VITATING_FLUID\x10\xa9\xba\x03\x12\x0f\n\tVOF_FLUID\x10\xf8\xcf\x01*i\n\x0cViscousModel\x12\x19\n\x15INVALID_VISCOUS_MODEL\x10\x00\x12\n\n\x04RANS\x10\x92\x95\x02\x12\t\n\x03\x44\x45S\x10\xc7\xb3\x03\x12\t\n\x03LES\x10\x81\x80\x04\x12\r\n\x07LAMINAR\x10\xce\xf7\x02\x12\r\n\x08INVISCID\x10\xc7\x44*\x84\x01\n\x0e\x44\x65sFormulation\x12\x1b\n\x17INVALID_DES_FORMULATION\x10\x00\x12\x0e\n\x08\x44\x44\x45S_VTM\x10\xe6\x8b\x02\x12\x14\n\x0e\x44\x44\x45S_VTM_SIGMA\x10\xfc\x8a\x01\x12\x0b\n\x05IDDES\x10\x94\xf2\x03\x12\t\n\x04\x44\x44\x45S\x10\xef\x35\x12\x0b\n\x05\x44\x45S97\x10\xab\xa1\x02\x12\n\n\x04ZDES\x10\xfd\xc5\x01*@\n\nRansRegion\x12\x17\n\x13INVALID_RANS_REGION\x10\x00\x12\x0b\n\x06INSIDE\x10\xd9s\x12\x0c\n\x07OUTSIDE\x10\xad\x18*\x84\x01\n\x11SubGridScaleModel\x12 \n\x1cINVALID_SUB_GRID_SCALE_MODEL\x10\x00\x12\n\n\x04NONE\x10\xa8\x8c\x03\x12\x11\n\x0bSMAGORINSKY\x10\xa2\x97\x02\x12\x0c\n\x06VREMAN\x10\xf7\xb1\x01\x12\n\n\x04WALE\x10\xc8\xc9\x03\x12\n\n\x05SIGMA\x10\xc7g\x12\x08\n\x03\x41MD\x10\xd4\x1f*\x81\x01\n\x0fTransitionModel\x12\x1c\n\x18INVALID_TRANSITION_MODEL\x10\x00\x12\x13\n\rNO_TRANSITION\x10\xa1\xe8\x03\x12\x10\n\nGAMMA_2015\x10\xd0\x9e\x01\x12\x19\n\x13GAMMA_RE_THETA_2009\x10\xe0\xa7\x02\x12\x0e\n\x08\x41\x46T_2019\x10\xed\x96\x03*\x90\x01\n\x18TransitionModelCrossFlow\x12\'\n#INVALID_TRANSITION_MODEL_CROSS_FLOW\x10\x00\x12%\n\x1fTRANSITION_MODEL_CROSS_FLOW_OFF\x10\x8e\xe5\x01\x12$\n\x1eTRANSITION_MODEL_CROSS_FLOW_ON\x10\x82\xa3\x02*W\n\x0fTurbulenceModel\x12\x1c\n\x18INVALID_TURBULENCE_MODEL\x10\x00\x12\x15\n\x10SPALART_ALLMARAS\x10\xca\x15\x12\x0f\n\nKOMEGA_SST\x10\x96p*7\n\x05QcrSa\x12\x12\n\x0eINVALID_QCR_SA\x10\x00\x12\x0c\n\x07QCR_OFF\x10\x99\x05\x12\x0c\n\x07QCR2000\x10\xcdY*v\n\x14RotationCorrectionSa\x12\"\n\x1eINVALID_ROTATION_CORRECTION_SA\x10\x00\x12\x1d\n\x17ROTATION_CORRECTION_OFF\x10\xfa\x92\x02\x12\x1b\n\x16ROTATION_CORRECTION_ON\x10\xae#*C\n\x06QcrSst\x12\x13\n\x0fINVALID_QCR_SST\x10\x00\x12\x11\n\x0bSST_QCR_OFF\x10\xf9\xeb\x01\x12\x11\n\x0bSST_QCR2000\x10\xfa\xdb\x01*}\n\x18TurbulenceModelConstants\x12&\n\"INVALID_TURBULENCE_MODEL_CONSTANTS\x10\x00\x12\x1c\n\x16\x44\x45\x46\x41ULT_TURB_CONSTANTS\x10\xb4\xd2\x01\x12\x1b\n\x15\x43USTOM_TURB_CONSTANTS\x10\xc7\xa4\x03*j\n\x14PseudoTimeStepMethod\x12#\n\x1fINVALID_PSEUDO_TIME_STEP_METHOD\x10\x00\x12\x0f\n\tCFL_BASED\x10\xe0\xda\x03\x12\x1c\n\x16\x46IXED_PSEUDO_TIME_STEP\x10\xc2\xfe\x01*q\n\x11LocalTimeStepping\x12\x1f\n\x1bINVALID_LOCAL_TIME_STEPPING\x10\x00\x12\x1c\n\x16LOCAL_TIME_STEPPING_ON\x10\x98\xcf\x01\x12\x1d\n\x17LOCAL_TIME_STEPPING_OFF\x10\xce\xd8\x03*]\n\x14JacobianUpdateMethod\x12\"\n\x1eINVALID_JACOBIAN_UPDATE_METHOD\x10\x00\x12!\n\x1c\x45XPLICIT_INTERVAL_AND_WARMUP\x10\xf6t*]\n\rRobustStartup\x12\x1a\n\x16INVALID_ROBUST_STARTUP\x10\x00\x12\x17\n\x11ROBUST_STARTUP_ON\x10\x98\xfe\x01\x12\x17\n\x12ROBUST_STARTUP_OFF\x10\xef\x1c*\x96\x02\n\x1bSolutionControlsFluidPreset\x12*\n&INVALID_SOLUTION_CONTROLS_FLUID_PRESET\x10\x00\x12*\n$UNSET_SOLUTION_CONTROLS_FLUID_PRESET\x10\x9f\x91\x03\x12%\n\x1f\x44\x45\x46\x41ULT_SOLUTION_CONTROLS_FLUID\x10\xca\xc3\x03\x12)\n$INTERMEDIATE_SOLUTION_CONTROLS_FLUID\x10\x99V\x12(\n\"AGGRESSIVE_SOLUTION_CONTROLS_FLUID\x10\xfc\xa2\x01\x12#\n\x1e\x43USTOM_SOLUTION_CONTROLS_FLUID\x10\xab\x31*\x7f\n\x1d\x43onvectiveSchemesDensityBased\x12,\n(INVALID_CONVECTIVE_SCHEMES_DENSITY_BASED\x10\x00\x12\t\n\x03ROE\x10\xb1\xbf\x02\x12\t\n\x03LD2\x10\x99\xec\x02\x12\t\n\x03\x45\x43\x32\x10\xa9\x9b\x03\x12\x0f\n\tRHIE_CHOW\x10\xf7\xd5\x02*c\n\x0fPreconditioning\x12\x1b\n\x17INVALID_PRECONDITIONING\x10\x00\x12\x18\n\x12PRECONDITIONING_ON\x10\x88\xfa\x03\x12\x19\n\x13PRECONDITIONING_OFF\x10\xf6\xc4\x02*}\n\x18SkewSymmetricFormulation\x12&\n\"INVALID_SKEW_SYMMETRIC_FORMULATION\x10\x00\x12\x16\n\x11\x43HANDRASEKHAR_EC2\x10\xbe\x41\x12\x16\n\x11\x43HANDRASEKHAR_EC1\x10\x93>\x12\t\n\x04KUYA\x10\xa4>*]\n\x18\x41rtificialViscosityModel\x12&\n\"INVALID_ARTIFICIAL_VISCOSITY_MODEL\x10\x00\x12\x0e\n\x08NO_MODEL\x10\x8a\x8e\x01\x12\t\n\x03LAD\x10\x91\x80\x02*N\n\x11UpwindSchemeOrder\x12\x1f\n\x1bINVALID_UPWIND_SCHEME_ORDER\x10\x00\x12\x0c\n\x06SECOND\x10\xf5\x88\x02\x12\n\n\x05\x46IRST\x10\xfeL*`\n\x11RobustDissipation\x12\x1e\n\x1aINVALID_ROBUST_DISSIPATION\x10\x00\x12\x15\n\x0fROBUST_DISS_OFF\x10\x8d\xbc\x02\x12\x14\n\x0eROBUST_DISS_ON\x10\xe1\xc3\x03*\x85\x01\n\x07Limiter\x12\x13\n\x0fINVALID_LIMITER\x10\x00\x12\x10\n\nNO_LIMITER\x10\x85\x8b\x02\x12\"\n\x1cINVARIANT_VENKATAKRISHNAN_CV\x10\xe8\xda\x01\x12\x15\n\x0fVAN_ALBADA_FACE\x10\x9d\xec\x01\x12\x18\n\x12VENKATAKRISHNAN_CV\x10\xac\x87\x02*\xbc\x02\n SpatialDiscretizationFluidPreset\x12/\n+INVALID_SPATIAL_DISCRETIZATION_FLUID_PRESET\x10\x00\x12/\n)UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET\x10\xf1\x83\x03\x12*\n$DEFAULT_SPATIAL_DISCRETIZATION_FLUID\x10\xfe\xad\x02\x12.\n)CONSERVATIVE_SPATIAL_DISCRETIZATION_FLUID\x10\xd7\x13\x12\x30\n*HIGH_ACCURACY_SPATIAL_DISCRETIZATION_FLUID\x10\xdb\xce\x03\x12(\n#CUSTOM_SPATIAL_DISCRETIZATION_FLUID\x10\xc2R*\x86\x01\n\x10PhysicalBoundary\x12\x1d\n\x19INVALID_PHYSICAL_BOUNDARY\x10\x00\x12\n\n\x04WALL\x10\xdb\xf9\x03\x12\x0b\n\x05INLET\x10\xd1\xec\x02\x12\x0c\n\x06OUTLET\x10\xe2\xaf\x03\x12\r\n\x08SYMMETRY\x10\x9fg\x12\x0e\n\x08\x46\x41RFIELD\x10\xa0\xfb\x01\x12\r\n\x07OVERSET\x10\xb9\x92\x03*T\n\x0cWallMomentum\x12\x19\n\x15INVALID_WALL_MOMENTUM\x10\x00\x12\x0c\n\x07NO_SLIP\x10\xb7V\x12\t\n\x04SLIP\x10\xa3\x1b\x12\x10\n\nWALL_MODEL\x10\xc9\xa1\x03*T\n\nWallEnergy\x12\x17\n\x13INVALID_WALL_ENERGY\x10\x00\x12\x14\n\x0f\x46IXED_HEAT_FLUX\x10\xae\x06\x12\x17\n\x11\x46IXED_TEMPERATURE\x10\xa7\xac\x01*\xbe\x01\n\rInletMomentum\x12\x1a\n\x16INVALID_INLET_MOMENTUM\x10\x00\x12\x1a\n\x14TOTAL_PRESSURE_INLET\x10\x8a\xb2\x03\x12\x15\n\x0fMASS_FLOW_INLET\x10\x9f\x87\x01\x12\x14\n\x0eVELOCITY_INLET\x10\x9e\xcc\x03\x12\x1f\n\x19VELOCITY_COMPONENTS_INLET\x10\xe3\x83\x04\x12\x10\n\nMACH_INLET\x10\x99\xaf\x01\x12\x15\n\x0f\x46\x41N_CURVE_INLET\x10\xc9\xb7\x03*o\n\x16\x44irectionSpecification\x12#\n\x1fINVALID_DIRECTION_SPECIFICATION\x10\x00\x12\x18\n\x12NORMAL_TO_BOUNDARY\x10\xe6\xa7\x03\x12\x16\n\x10\x44IRECTION_VECTOR\x10\xaf\xd4\x01*F\n\x0bInletEnergy\x12\x18\n\x14INVALID_INLET_ENERGY\x10\x00\x12\x1d\n\x17TOTAL_TEMPERATURE_INLET\x10\x9e\xf1\x03*\xad\x01\n\x0eOutletStrategy\x12\x1b\n\x17INVALID_OUTLET_STRATEGY\x10\x00\x12\x15\n\x0fOUTLET_PRESSURE\x10\xf0\xb7\x03\x12\"\n\x1cOUTLET_TARGET_MASS_FLOW_RATE\x10\xdb\xaa\x01\x12+\n&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\x10\x82p\x12\x16\n\x10\x46\x41N_CURVE_OUTLET\x10\xf8\xde\x02*\x82\x01\n\x18OutletPressureConstraint\x12&\n\"INVALID_OUTLET_PRESSURE_CONSTRAINT\x10\x00\x12\x1d\n\x17OUTLET_LOCAL_CONSTRAINT\x10\x86\xa8\x02\x12\x1f\n\x19OUTLET_AVERAGE_CONSTRAINT\x10\x9f\x82\x02*p\n\x10\x46\x61rfieldMomentum\x12\x1d\n\x19INVALID_FARFIELD_MOMENTUM\x10\x00\x12\x1a\n\x14\x46\x41RFIELD_MACH_NUMBER\x10\x99\xd9\x02\x12!\n\x1b\x46\x41RFIELD_VELOCITY_MAGNITUDE\x10\xcb\xaf\x02*\x89\x01\n\"FarFieldFlowDirectionSpecification\x12\x32\n.INVALID_FAR_FIELD_FLOW_DIRECTION_SPECIFICATION\x10\x00\x12\x18\n\x12\x46\x41RFIELD_DIRECTION\x10\x86\xed\x01\x12\x15\n\x0f\x46\x41RFIELD_ANGLES\x10\x81\xe9\x03*\xb6\x01\n&TurbulenceSpecificationSpalartAllmaras\x12\x35\n1INVALID_TURBULENCE_SPECIFICATION_SPALART_ALLMARAS\x10\x00\x12\"\n\x1cTURBULENT_VISCOSITY_RATIO_SA\x10\xdf\x8b\x03\x12\x1c\n\x16TURBULENT_VISCOSITY_SA\x10\x95\x9a\x03\x12\x13\n\x0e\x42\x43_SA_VARIABLE\x10\xe4\x34*\xd2\x01\n\x1dTurbulenceSpecificationKomega\x12+\n\'INVALID_TURBULENCE_SPECIFICATION_KOMEGA\x10\x00\x12\x37\n1BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x10\x8e\x8d\x02\x12\x31\n+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x10\xaf\x84\x04\x12\x18\n\x13\x42\x43_KOMEGA_VARIABLES\x10\xecR*\xba\x01\n#PotentialFlowPressureInitialization\x12\x32\n.INVALID_POTENTIAL_FLOW_PRESSURE_INITIALIZATION\x10\x00\x12/\n*INITIALIZATION_POTENTIAL_FLOW_PRESSURE_OFF\x10\xe1\x37\x12.\n)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\x10\xf5\x42*\xe0\x01\n%TurbulentVariableInitializationTypeSa\x12\x35\n1INVALID_TURBULENT_VARIABLE_INITIALIZATION_TYPE_SA\x10\x00\x12\'\n!INIT_TURBULENT_VISCOSITY_RATIO_SA\x10\xeb\xc3\x01\x12!\n\x1bINIT_TURBULENT_VISCOSITY_SA\x10\xf3\xbd\x03\x12\x16\n\x10INIT_SA_VARIABLE\x10\xb3\x80\x04\x12\x1c\n\x17INIT_FARFIELD_VALUES_SA\x10\xc2t*\x94\x02\n)TurbulentVariableInitializationTypeKomega\x12\x39\n5INVALID_TURBULENT_VARIABLE_INITIALIZATION_TYPE_KOMEGA\x10\x00\x12\x38\n3INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\x10\x9d\x13\x12\x32\n-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\x10\xa5R\x12\x1b\n\x15INIT_KOMEGA_VARIABLES\x10\x85\xb2\x01\x12!\n\x1bINIT_FARFIELD_VALUES_KOMEGA\x10\xce\xd0\x02*\x9f\x02\n\x15VerificationSolutions\x12\"\n\x1eINVALID_VERIFICATION_SOLUTIONS\x10\x00\x12\x19\n\x13TAYLOR_GREEN_VORTEX\x10\xf2\xc4\x03\x12\x0b\n\x06NS_MMS\x10\xef\x18\x12\x0f\n\tEULER_MMS\x10\xe2\xd6\x02\x12\x0f\n\nSHOCK_TUBE\x10\x92<\x12\x11\n\x0cNORMAL_SHOCK\x10\x9b\x62\x12\x12\n\x0cSHOCK_VORTEX\x10\xeb\xcd\x03\x12\x0e\n\tSHU_OSHER\x10\xf8Q\x12\x16\n\x10\x44ISTURBANCE_WAVE\x10\xb0\x91\x02\x12\x15\n\x0fINVISCID_VORTEX\x10\xc1\x89\x02\x12\x14\n\x0eINS_2D_LATTICE\x10\xbb\xdc\x03\x12\x1c\n\x13\x43HECK_FLUX_SYMMETRY\x10\xdd\x16\x1a\x02\x08\x01*\x8c\x01\n\x15PhysicalBehaviorModel\x12#\n\x1fINVALID_PHYSICAL_BEHAVIOR_MODEL\x10\x00\x12\x19\n\x13\x41\x43TUATOR_DISK_MODEL\x10\xda\xf7\x02\x12\x18\n\x13\x41\x43TUATOR_LINE_MODEL\x10\xd7\x0f\x12\x19\n\x13SOURCE_POINTS_MODEL\x10\xbb\x9f\x02*\xbd\x01\n\x11\x41\x63tuatorDiskModel\x12\x1f\n\x1bINVALID_ACTUATOR_DISK_MODEL\x10\x00\x12\"\n\x1c\x41\x43TUATOR_DISK_UNIFORM_THRUST\x10\xc8\xb2\x03\x12&\n!ACTUATOR_DISK_RADIAL_DISTRIBUTION\x10\xa6#\x12!\n\x1b\x41\x43TUATOR_DISK_BLADE_ELEMENT\x10\xfb\xfc\x01\x12\x18\n\x12\x46\x41N_CURVE_INTERNAL\x10\xef\x91\x03*W\n\x11\x41\x63tuatorLineModel\x12\x1f\n\x1bINVALID_ACTUATOR_LINE_MODEL\x10\x00\x12!\n\x1b\x41\x43TUATOR_LINE_BLADE_ELEMENT\x10\xe1\xfb\x02*r\n\x17\x41\x63tuatorDiskBemStrategy\x12&\n\"INVALID_ACTUATOR_DISK_BEM_STRATEGY\x10\x00\x12\x17\n\x11\x42\x45M_ROTATION_RATE\x10\x93\x93\x01\x12\x16\n\x11\x42\x45M_TARGET_THRUST\x10\x8c\x1c*v\n\x13ParticleSourceModel\x12!\n\x1dINVALID_PARTICLE_SOURCE_MODEL\x10\x00\x12\x19\n\x13GENERAL_MASS_SOURCE\x10\xa0\x9c\x02\x12!\n\x1bGENERAL_ACCELERATION_SOURCE\x10\x80\xc9\x01*D\n\x0f\x43\x61vitationModel\x12\x1c\n\x18INVALID_CAVITATION_MODEL\x10\x00\x12\x13\n\rSAUER_SCHNERR\x10\xb2\xe9\x01*I\n\x0fPorousModelType\x12\x1d\n\x19INVALID_POROUS_MODEL_TYPE\x10\x00\x12\x17\n\x11\x44\x41RCY_FORCHHEIMER\x10\xab\xb2\x03*\x93\x01\n\x18MpCouplingLinSolCoupling\x12(\n$INVALID_MP_COUPLING_LIN_SOL_COUPLING\x10\x00\x12%\n\x1fMP_COUPLING_LIN_SOL_COUPLING_ON\x10\xd7\x9e\x02\x12&\n MP_COUPLING_LIN_SOL_COUPLING_OFF\x10\x98\xbb\x02\x42%Z#luminarycloud.com/core/proto/clientb\x06proto3')
|
|
25
25
|
|
|
26
|
+
_UNITSYSTEM = DESCRIPTOR.enum_types_by_name['UnitSystem']
|
|
27
|
+
UnitSystem = enum_type_wrapper.EnumTypeWrapper(_UNITSYSTEM)
|
|
28
|
+
_TEMPERATUREUNIT = DESCRIPTOR.enum_types_by_name['TemperatureUnit']
|
|
29
|
+
TemperatureUnit = enum_type_wrapper.EnumTypeWrapper(_TEMPERATUREUNIT)
|
|
30
|
+
_MASSUNIT = DESCRIPTOR.enum_types_by_name['MassUnit']
|
|
31
|
+
MassUnit = enum_type_wrapper.EnumTypeWrapper(_MASSUNIT)
|
|
32
|
+
_LENGTHUNIT = DESCRIPTOR.enum_types_by_name['LengthUnit']
|
|
33
|
+
LengthUnit = enum_type_wrapper.EnumTypeWrapper(_LENGTHUNIT)
|
|
34
|
+
_ANGLEUNIT = DESCRIPTOR.enum_types_by_name['AngleUnit']
|
|
35
|
+
AngleUnit = enum_type_wrapper.EnumTypeWrapper(_ANGLEUNIT)
|
|
36
|
+
_TIMEUNIT = DESCRIPTOR.enum_types_by_name['TimeUnit']
|
|
37
|
+
TimeUnit = enum_type_wrapper.EnumTypeWrapper(_TIMEUNIT)
|
|
38
|
+
_VELOCITYUNIT = DESCRIPTOR.enum_types_by_name['VelocityUnit']
|
|
39
|
+
VelocityUnit = enum_type_wrapper.EnumTypeWrapper(_VELOCITYUNIT)
|
|
40
|
+
_ANGULARVELOCITYUNIT = DESCRIPTOR.enum_types_by_name['AngularVelocityUnit']
|
|
41
|
+
AngularVelocityUnit = enum_type_wrapper.EnumTypeWrapper(_ANGULARVELOCITYUNIT)
|
|
42
|
+
_FORCEUNIT = DESCRIPTOR.enum_types_by_name['ForceUnit']
|
|
43
|
+
ForceUnit = enum_type_wrapper.EnumTypeWrapper(_FORCEUNIT)
|
|
44
|
+
_MOMENTUNIT = DESCRIPTOR.enum_types_by_name['MomentUnit']
|
|
45
|
+
MomentUnit = enum_type_wrapper.EnumTypeWrapper(_MOMENTUNIT)
|
|
46
|
+
_PRESSUREUNIT = DESCRIPTOR.enum_types_by_name['PressureUnit']
|
|
47
|
+
PressureUnit = enum_type_wrapper.EnumTypeWrapper(_PRESSUREUNIT)
|
|
48
|
+
_ENERGYUNIT = DESCRIPTOR.enum_types_by_name['EnergyUnit']
|
|
49
|
+
EnergyUnit = enum_type_wrapper.EnumTypeWrapper(_ENERGYUNIT)
|
|
50
|
+
_POWERUNIT = DESCRIPTOR.enum_types_by_name['PowerUnit']
|
|
51
|
+
PowerUnit = enum_type_wrapper.EnumTypeWrapper(_POWERUNIT)
|
|
52
|
+
_VOLUMEUNIT = DESCRIPTOR.enum_types_by_name['VolumeUnit']
|
|
53
|
+
VolumeUnit = enum_type_wrapper.EnumTypeWrapper(_VOLUMEUNIT)
|
|
54
|
+
_VOLUMETRICFLOWUNIT = DESCRIPTOR.enum_types_by_name['VolumetricFlowUnit']
|
|
55
|
+
VolumetricFlowUnit = enum_type_wrapper.EnumTypeWrapper(_VOLUMETRICFLOWUNIT)
|
|
56
|
+
_VISCOSITYUNIT = DESCRIPTOR.enum_types_by_name['ViscosityUnit']
|
|
57
|
+
ViscosityUnit = enum_type_wrapper.EnumTypeWrapper(_VISCOSITYUNIT)
|
|
58
|
+
_CONDUCTIVITYUNIT = DESCRIPTOR.enum_types_by_name['ConductivityUnit']
|
|
59
|
+
ConductivityUnit = enum_type_wrapper.EnumTypeWrapper(_CONDUCTIVITYUNIT)
|
|
60
|
+
_MOLECULARWEIGHTUNIT = DESCRIPTOR.enum_types_by_name['MolecularWeightUnit']
|
|
61
|
+
MolecularWeightUnit = enum_type_wrapper.EnumTypeWrapper(_MOLECULARWEIGHTUNIT)
|
|
26
62
|
_DENSITYRELATIONSHIP = DESCRIPTOR.enum_types_by_name['DensityRelationship']
|
|
27
63
|
DensityRelationship = enum_type_wrapper.EnumTypeWrapper(_DENSITYRELATIONSHIP)
|
|
28
64
|
_LAMINARTHERMALCONDUCTIVITY = DESCRIPTOR.enum_types_by_name['LaminarThermalConductivity']
|
|
@@ -203,6 +239,72 @@ _POROUSMODELTYPE = DESCRIPTOR.enum_types_by_name['PorousModelType']
|
|
|
203
239
|
PorousModelType = enum_type_wrapper.EnumTypeWrapper(_POROUSMODELTYPE)
|
|
204
240
|
_MPCOUPLINGLINSOLCOUPLING = DESCRIPTOR.enum_types_by_name['MpCouplingLinSolCoupling']
|
|
205
241
|
MpCouplingLinSolCoupling = enum_type_wrapper.EnumTypeWrapper(_MPCOUPLINGLINSOLCOUPLING)
|
|
242
|
+
INVALID_UNIT_SYSTEM = 0
|
|
243
|
+
UNIT_SYSTEM_CUSTOM = 10038
|
|
244
|
+
UNIT_SYSTEM_SI = 62081
|
|
245
|
+
UNIT_SYSTEM_US = 1165
|
|
246
|
+
INVALID_TEMPERATURE_UNIT = 0
|
|
247
|
+
UNIT_KELVIN = 45846
|
|
248
|
+
UNIT_CELSIUS = 11779
|
|
249
|
+
UNIT_RANKINE = 42097
|
|
250
|
+
UNIT_FAHRENHEIT = 22674
|
|
251
|
+
INVALID_MASS_UNIT = 0
|
|
252
|
+
UNIT_KILOGRAM = 63924
|
|
253
|
+
UNIT_GRAM = 13936
|
|
254
|
+
UNIT_POUND = 7080
|
|
255
|
+
INVALID_LENGTH_UNIT = 0
|
|
256
|
+
UNIT_METER = 27228
|
|
257
|
+
UNIT_MILLIMETER = 57970
|
|
258
|
+
UNIT_FOOT = 14275
|
|
259
|
+
UNIT_INCH = 7468
|
|
260
|
+
INVALID_ANGLE_UNIT = 0
|
|
261
|
+
UNIT_DEGREE = 20232
|
|
262
|
+
UNIT_RADIAN = 10234
|
|
263
|
+
INVALID_TIME_UNIT = 0
|
|
264
|
+
UNIT_SECOND = 25304
|
|
265
|
+
INVALID_VELOCITY_UNIT = 0
|
|
266
|
+
UNIT_METER_PER_SECOND = 13425
|
|
267
|
+
UNIT_KM_PER_HOUR = 46756
|
|
268
|
+
UNIT_FEET_PER_SECOND = 41474
|
|
269
|
+
UNIT_MILES_PER_HOUR = 16989
|
|
270
|
+
INVALID_ANGULAR_VELOCITY_UNIT = 0
|
|
271
|
+
UNIT_RADIAN_PER_SECOND = 25064
|
|
272
|
+
UNIT_RPM = 30511
|
|
273
|
+
INVALID_FORCE_UNIT = 0
|
|
274
|
+
UNIT_NEWTON = 5120
|
|
275
|
+
UNIT_POUND_FORCE = 49341
|
|
276
|
+
INVALID_MOMENT_UNIT = 0
|
|
277
|
+
UNIT_NEWTON_METER = 11716
|
|
278
|
+
UNIT_POUND_FOOT = 16984
|
|
279
|
+
INVALID_PRESSURE_UNIT = 0
|
|
280
|
+
UNIT_PASCAL = 11092
|
|
281
|
+
UNIT_BAR = 46408
|
|
282
|
+
UNIT_PSI = 57182
|
|
283
|
+
INVALID_ENERGY_UNIT = 0
|
|
284
|
+
UNIT_JOULE = 28071
|
|
285
|
+
UNIT_BTU = 55179
|
|
286
|
+
INVALID_POWER_UNIT = 0
|
|
287
|
+
UNIT_WATT = 52839
|
|
288
|
+
UNIT_HORSEPOWER = 54096
|
|
289
|
+
INVALID_VOLUME_UNIT = 0
|
|
290
|
+
UNIT_CUBIC_METER = 12237
|
|
291
|
+
UNIT_LITER = 44915
|
|
292
|
+
UNIT_GALLON = 12947
|
|
293
|
+
UNIT_CUBIC_INCH = 49555
|
|
294
|
+
UNIT_CUBIC_FOOT = 1332
|
|
295
|
+
INVALID_VOLUMETRIC_FLOW_UNIT = 0
|
|
296
|
+
UNIT_CUBIC_METER_PER_SECOND = 41485
|
|
297
|
+
UNIT_CFM = 24631
|
|
298
|
+
INVALID_VISCOSITY_UNIT = 0
|
|
299
|
+
UNIT_PASCAL_SECOND = 976
|
|
300
|
+
UNIT_CENTIPOISE = 16949
|
|
301
|
+
UNIT_POUND_SECOND_PER_SQUARE_FOOT = 41363
|
|
302
|
+
INVALID_CONDUCTIVITY_UNIT = 0
|
|
303
|
+
UNIT_WATT_PER_METER_KELVIN = 402
|
|
304
|
+
UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT = 21729
|
|
305
|
+
INVALID_MOLECULAR_WEIGHT_UNIT = 0
|
|
306
|
+
UNIT_GRAM_PER_MOLE = 49033
|
|
307
|
+
UNIT_POUND_PER_POUND_MOLE = 31180
|
|
206
308
|
INVALID_DENSITY_RELATIONSHIP = 0
|
|
207
309
|
IDEAL_GAS = 37484
|
|
208
310
|
CONSTANT_DENSITY = 28817
|
|
@@ -484,8 +586,8 @@ TOTAL_PRESSURE_INLET = 55562
|
|
|
484
586
|
MASS_FLOW_INLET = 17311
|
|
485
587
|
VELOCITY_INLET = 58910
|
|
486
588
|
VELOCITY_COMPONENTS_INLET = 66019
|
|
487
|
-
FAN_CURVE_INLET = 56265
|
|
488
589
|
MACH_INLET = 22425
|
|
590
|
+
FAN_CURVE_INLET = 56265
|
|
489
591
|
INVALID_DIRECTION_SPECIFICATION = 0
|
|
490
592
|
NORMAL_TO_BOUNDARY = 54246
|
|
491
593
|
DIRECTION_VECTOR = 27183
|
|
@@ -564,6 +666,7 @@ MP_COUPLING_LIN_SOL_COUPLING_ON = 36695
|
|
|
564
666
|
MP_COUPLING_LIN_SOL_COUPLING_OFF = 40344
|
|
565
667
|
|
|
566
668
|
|
|
669
|
+
_UNITS = DESCRIPTOR.message_types_by_name['Units']
|
|
567
670
|
_INPUT = DESCRIPTOR.message_types_by_name['Input']
|
|
568
671
|
_MATERIALFLUID = DESCRIPTOR.message_types_by_name['MaterialFluid']
|
|
569
672
|
_MATERIALSOLID = DESCRIPTOR.message_types_by_name['MaterialSolid']
|
|
@@ -615,6 +718,13 @@ _SIMULATIONPARAM_NAMEDVARIABLEENTRY = _SIMULATIONPARAM.nested_types_by_name['Nam
|
|
|
615
718
|
_SIMULATIONPARAM_SURFACENAMEENTRY = _SIMULATIONPARAM.nested_types_by_name['SurfaceNameEntry']
|
|
616
719
|
_SIMULATIONPARAM_TABLEENTRY = _SIMULATIONPARAM.nested_types_by_name['TableEntry']
|
|
617
720
|
_SIMULATIONPARAM_TABLEREFERENCESENTRY = _SIMULATIONPARAM.nested_types_by_name['TableReferencesEntry']
|
|
721
|
+
Units = _reflection.GeneratedProtocolMessageType('Units', (_message.Message,), {
|
|
722
|
+
'DESCRIPTOR' : _UNITS,
|
|
723
|
+
'__module__' : 'proto.client.simulation_pb2'
|
|
724
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.client.Units)
|
|
725
|
+
})
|
|
726
|
+
_sym_db.RegisterMessage(Units)
|
|
727
|
+
|
|
618
728
|
Input = _reflection.GeneratedProtocolMessageType('Input', (_message.Message,), {
|
|
619
729
|
'DESCRIPTOR' : _INPUT,
|
|
620
730
|
'__module__' : 'proto.client.simulation_pb2'
|
|
@@ -985,52 +1095,88 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
985
1095
|
_MOTIONTYPE.values_by_name["CONSTANT_VELOCITY_MOTION"]._serialized_options = b'\010\001'
|
|
986
1096
|
_VERIFICATIONSOLUTIONS.values_by_name["CHECK_FLUX_SYMMETRY"]._options = None
|
|
987
1097
|
_VERIFICATIONSOLUTIONS.values_by_name["CHECK_FLUX_SYMMETRY"]._serialized_options = b'\010\001'
|
|
1098
|
+
_UNITS.fields_by_name['unit_system']._options = None
|
|
1099
|
+
_UNITS.fields_by_name['unit_system']._serialized_options = b'\202\262\031\004 \201\345\003'
|
|
1100
|
+
_UNITS.fields_by_name['temperature_unit']._options = None
|
|
1101
|
+
_UNITS.fields_by_name['temperature_unit']._serialized_options = b'\202\262\031\004 \226\346\002'
|
|
1102
|
+
_UNITS.fields_by_name['mass_unit']._options = None
|
|
1103
|
+
_UNITS.fields_by_name['mass_unit']._serialized_options = b'\202\262\031\004 \264\363\003'
|
|
1104
|
+
_UNITS.fields_by_name['length_unit']._options = None
|
|
1105
|
+
_UNITS.fields_by_name['length_unit']._serialized_options = b'\202\262\031\004 \334\324\001'
|
|
1106
|
+
_UNITS.fields_by_name['angle_unit']._options = None
|
|
1107
|
+
_UNITS.fields_by_name['angle_unit']._serialized_options = b'\202\262\031\004 \210\236\001'
|
|
1108
|
+
_UNITS.fields_by_name['time_unit']._options = None
|
|
1109
|
+
_UNITS.fields_by_name['time_unit']._serialized_options = b'\202\262\031\004 \330\305\001'
|
|
1110
|
+
_UNITS.fields_by_name['velocity_unit']._options = None
|
|
1111
|
+
_UNITS.fields_by_name['velocity_unit']._serialized_options = b'\202\262\031\003 \361h'
|
|
1112
|
+
_UNITS.fields_by_name['angular_velocity_unit']._options = None
|
|
1113
|
+
_UNITS.fields_by_name['angular_velocity_unit']._serialized_options = b'\202\262\031\004 \350\303\001'
|
|
1114
|
+
_UNITS.fields_by_name['force_unit']._options = None
|
|
1115
|
+
_UNITS.fields_by_name['force_unit']._serialized_options = b'\202\262\031\003 \200('
|
|
1116
|
+
_UNITS.fields_by_name['moment_unit']._options = None
|
|
1117
|
+
_UNITS.fields_by_name['moment_unit']._serialized_options = b'\202\262\031\003 \304['
|
|
1118
|
+
_UNITS.fields_by_name['pressure_unit']._options = None
|
|
1119
|
+
_UNITS.fields_by_name['pressure_unit']._serialized_options = b'\202\262\031\003 \324V'
|
|
1120
|
+
_UNITS.fields_by_name['energy_unit']._options = None
|
|
1121
|
+
_UNITS.fields_by_name['energy_unit']._serialized_options = b'\202\262\031\004 \247\333\001'
|
|
1122
|
+
_UNITS.fields_by_name['power_unit']._options = None
|
|
1123
|
+
_UNITS.fields_by_name['power_unit']._serialized_options = b'\202\262\031\004 \347\234\003'
|
|
1124
|
+
_UNITS.fields_by_name['volume_unit']._options = None
|
|
1125
|
+
_UNITS.fields_by_name['volume_unit']._serialized_options = b'\202\262\031\003 \315_'
|
|
1126
|
+
_UNITS.fields_by_name['volumetric_flow_unit']._options = None
|
|
1127
|
+
_UNITS.fields_by_name['volumetric_flow_unit']._serialized_options = b'\202\262\031\004 \215\304\002'
|
|
1128
|
+
_UNITS.fields_by_name['viscosity_unit']._options = None
|
|
1129
|
+
_UNITS.fields_by_name['viscosity_unit']._serialized_options = b'\202\262\031\003 \320\007'
|
|
1130
|
+
_UNITS.fields_by_name['conductivity_unit']._options = None
|
|
1131
|
+
_UNITS.fields_by_name['conductivity_unit']._serialized_options = b'\202\262\031\003 \222\003'
|
|
1132
|
+
_UNITS.fields_by_name['molecular_weight_unit']._options = None
|
|
1133
|
+
_UNITS.fields_by_name['molecular_weight_unit']._serialized_options = b'\202\262\031\004 \211\377\002'
|
|
988
1134
|
_INPUT.fields_by_name['mesh_identifier']._options = None
|
|
989
1135
|
_INPUT.fields_by_name['mesh_identifier']._serialized_options = b'\240\262\031\001'
|
|
990
1136
|
_MATERIALFLUID.fields_by_name['reference_pressure']._options = None
|
|
991
|
-
_MATERIALFLUID.fields_by_name['reference_pressure']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1137
|
+
_MATERIALFLUID.fields_by_name['reference_pressure']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
992
1138
|
_MATERIALFLUID.fields_by_name['density_relationship']._options = None
|
|
993
1139
|
_MATERIALFLUID.fields_by_name['density_relationship']._serialized_options = b'\202\262\031\004 \354\244\002'
|
|
994
1140
|
_MATERIALFLUID.fields_by_name['molecular_weight']._options = None
|
|
995
|
-
_MATERIALFLUID.fields_by_name['molecular_weight']._serialized_options = b'\202\262\031\013\n\t\t\366(\\\217\302\365<@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship'
|
|
1141
|
+
_MATERIALFLUID.fields_by_name['molecular_weight']._serialized_options = b'\270\262\031\366\014\202\262\031\013\n\t\t\366(\\\217\302\365<@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship'
|
|
996
1142
|
_MATERIALFLUID.fields_by_name['constant_density_value']._options = None
|
|
997
|
-
_MATERIALFLUID.fields_by_name['constant_density_value']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\363?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\220\001\022\215\001\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1143
|
+
_MATERIALFLUID.fields_by_name['constant_density_value']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\t\232\231\231\231\231\231\363?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\220\001\022\215\001\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
998
1144
|
_MATERIALFLUID.fields_by_name['specific_heat_cp']._options = None
|
|
999
|
-
_MATERIALFLUID.fields_by_name['specific_heat_cp']._serialized_options = b'\202\262\031\013\n\t\t\264\310v\276\237e\217@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1145
|
+
_MATERIALFLUID.fields_by_name['specific_heat_cp']._serialized_options = b'\270\262\031\316\365\001\202\262\031\013\n\t\t\264\310v\276\237e\217@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1000
1146
|
_MATERIALFLUID.fields_by_name['laminar_thermal_conductivity']._options = None
|
|
1001
1147
|
_MATERIALFLUID.fields_by_name['laminar_thermal_conductivity']._serialized_options = b'\202\262\031\004 \261\353\002\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1002
1148
|
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_prandtl_constant']._options = None
|
|
1003
|
-
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_prandtl_constant']._serialized_options = b'\202\262\031\013\n\t\t\n\327\243p=\n\347?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031J\032H\nF\nD\010\261\353\002\022 LAMINAR_CONSTANT_THERMAL_PRANDTL\032\034laminar_thermal_conductivity'
|
|
1149
|
+
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_prandtl_constant']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\n\327\243p=\n\347?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031J\032H\nF\nD\010\261\353\002\022 LAMINAR_CONSTANT_THERMAL_PRANDTL\032\034laminar_thermal_conductivity'
|
|
1004
1150
|
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_conductivity_constant']._options = None
|
|
1005
|
-
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_conductivity_constant']._serialized_options = b'\202\262\031\013\n\t\tp_\007\316\031Q\232?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031O\022M\nK\nI\010\265\264\002\022%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\032\034laminar_thermal_conductivity'
|
|
1151
|
+
_MATERIALFLUID.fields_by_name['laminar_constant_thermal_conductivity_constant']._serialized_options = b'\270\262\031\360\330\002\202\262\031\013\n\t\tp_\007\316\031Q\232?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031O\022M\nK\nI\010\265\264\002\022%LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY\032\034laminar_thermal_conductivity'
|
|
1006
1152
|
_MATERIALFLUID.fields_by_name['thermal_conductivity_table_data']._options = None
|
|
1007
1153
|
_MATERIALFLUID.fields_by_name['thermal_conductivity_table_data']._serialized_options = b'\222\262\031P\nN\010\357\251\002\022*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\032\034laminar_thermal_conductivity\232\262\031\n\n\002\010\003\022\004\010\360\330\002'
|
|
1008
1154
|
_MATERIALFLUID.fields_by_name['boussinesq_approximation']._options = None
|
|
1009
1155
|
_MATERIALFLUID.fields_by_name['boussinesq_approximation']._serialized_options = b'\202\262\031\004 \221\313\001\222\262\031V\032T\n\033\n\031\010\234\342\003\022\nGRAVITY_ON\032\007gravity\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1010
1156
|
_MATERIALFLUID.fields_by_name['boussinesq_temp_ref']._options = None
|
|
1011
|
-
_MATERIALFLUID.fields_by_name['boussinesq_temp_ref']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031/\n-\010\221\313\001\022\rBOUSSINESQ_ON\032\030boussinesq_approximation'
|
|
1157
|
+
_MATERIALFLUID.fields_by_name['boussinesq_temp_ref']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031/\n-\010\221\313\001\022\rBOUSSINESQ_ON\032\030boussinesq_approximation'
|
|
1012
1158
|
_MATERIALFLUID.fields_by_name['thermal_expansion_coefficient']._options = None
|
|
1013
|
-
_MATERIALFLUID.fields_by_name['thermal_expansion_coefficient']._serialized_options = b'\202\262\031\013\n\t\ty\351&1\010\254l?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031/\n-\010\221\313\001\022\rBOUSSINESQ_ON\032\030boussinesq_approximation'
|
|
1159
|
+
_MATERIALFLUID.fields_by_name['thermal_expansion_coefficient']._serialized_options = b'\270\262\031\267\204\001\202\262\031\013\n\t\ty\351&1\010\254l?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031/\n-\010\221\313\001\022\rBOUSSINESQ_ON\032\030boussinesq_approximation'
|
|
1014
1160
|
_MATERIALFLUID.fields_by_name['material_fluid_preset']._options = None
|
|
1015
1161
|
_MATERIALFLUID.fields_by_name['material_fluid_preset']._serialized_options = b'\202\262\031\004 \314\375\001'
|
|
1016
1162
|
_MATERIALFLUID.fields_by_name['laminar_viscosity_model_newtonian']._options = None
|
|
1017
1163
|
_MATERIALFLUID.fields_by_name['laminar_viscosity_model_newtonian']._serialized_options = b'\202\262\031\004 \213\234\002'
|
|
1018
1164
|
_MATERIALFLUID.fields_by_name['sutherland_viscosity_ref']._options = None
|
|
1019
|
-
_MATERIALFLUID.fields_by_name['sutherland_viscosity_ref']._serialized_options = b'\202\262\031\013\n\t\t~\255\2058Z\376\361>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1165
|
+
_MATERIALFLUID.fields_by_name['sutherland_viscosity_ref']._serialized_options = b'\270\262\031\220\013\202\262\031\013\n\t\t~\255\2058Z\376\361>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1020
1166
|
_MATERIALFLUID.fields_by_name['sutherland_viscosity_temp_ref']._options = None
|
|
1021
|
-
_MATERIALFLUID.fields_by_name['sutherland_viscosity_temp_ref']._serialized_options = b'\202\262\031\013\n\t\tfffff\022q@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1167
|
+
_MATERIALFLUID.fields_by_name['sutherland_viscosity_temp_ref']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\022q@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1022
1168
|
_MATERIALFLUID.fields_by_name['sutherland_constant']._options = None
|
|
1023
|
-
_MATERIALFLUID.fields_by_name['sutherland_constant']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231[@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1169
|
+
_MATERIALFLUID.fields_by_name['sutherland_constant']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t\232\231\231\231\231\231[@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0315\n3\010\213\234\002\022\nSUTHERLAND\032!laminar_viscosity_model_newtonian'
|
|
1024
1170
|
_MATERIALFLUID.fields_by_name['laminar_constant_viscosity_constant']._options = None
|
|
1025
|
-
_MATERIALFLUID.fields_by_name['laminar_constant_viscosity_constant']._serialized_options = b'\202\262\031\013\n\t\t\353*\024Qb\303\362>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031D\nB\010\270H\022\032LAMINAR_CONSTANT_VISCOSITY\032!laminar_viscosity_model_newtonian'
|
|
1171
|
+
_MATERIALFLUID.fields_by_name['laminar_constant_viscosity_constant']._serialized_options = b'\270\262\031\220\013\202\262\031\013\n\t\t\353*\024Qb\303\362>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031D\nB\010\270H\022\032LAMINAR_CONSTANT_VISCOSITY\032!laminar_viscosity_model_newtonian'
|
|
1026
1172
|
_MATERIALFLUID.fields_by_name['dynamic_viscosity_table_data']._options = None
|
|
1027
1173
|
_MATERIALFLUID.fields_by_name['dynamic_viscosity_table_data']._serialized_options = b'\222\262\031R\nP\010\204\306\002\022\'TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY\032!laminar_viscosity_model_newtonian\232\262\031\t\n\002\010\003\022\003\010\220\013'
|
|
1028
1174
|
_MATERIALSOLID.fields_by_name['constant_density_value_solid']._options = None
|
|
1029
|
-
_MATERIALSOLID.fields_by_name['constant_density_value_solid']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\030\245@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1175
|
+
_MATERIALSOLID.fields_by_name['constant_density_value_solid']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\t\000\000\000\000\000\030\245@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1030
1176
|
_MATERIALSOLID.fields_by_name['specific_heat_cp_solid']._options = None
|
|
1031
|
-
_MATERIALSOLID.fields_by_name['specific_heat_cp_solid']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\214@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1177
|
+
_MATERIALSOLID.fields_by_name['specific_heat_cp_solid']._serialized_options = b'\270\262\031\316\365\001\202\262\031\013\n\t\t\000\000\000\000\000\000\214@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1032
1178
|
_MATERIALSOLID.fields_by_name['thermal_conductivity_constant_solid']._options = None
|
|
1033
|
-
_MATERIALSOLID.fields_by_name['thermal_conductivity_constant_solid']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\340d@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1179
|
+
_MATERIALSOLID.fields_by_name['thermal_conductivity_constant_solid']._serialized_options = b'\270\262\031\360\330\002\202\262\031\013\n\t\t\000\000\000\000\000\340d@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1034
1180
|
_MATERIALSOLID.fields_by_name['thermal_conductivity_table_data']._options = None
|
|
1035
1181
|
_MATERIALSOLID.fields_by_name['thermal_conductivity_table_data']._serialized_options = b'\222\262\031P\nN\010\357\251\002\022*TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY\032\034laminar_thermal_conductivity\232\262\031\n\n\002\010\003\022\004\010\360\330\002'
|
|
1036
1182
|
_MATERIALSOLID.fields_by_name['material_solid_preset']._options = None
|
|
@@ -1042,7 +1188,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1042
1188
|
_GENERAL.fields_by_name['gravity']._options = None
|
|
1043
1189
|
_GENERAL.fields_by_name['gravity']._serialized_options = b'\202\262\031\004 \225\343\003'
|
|
1044
1190
|
_GENERAL.fields_by_name['acceleration']._options = None
|
|
1045
|
-
_GENERAL.fields_by_name['acceleration']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\037\205\353Q\270\236#\300\222\262\031\033\n\031\010\234\342\003\022\nGRAVITY_ON\032\007gravity'
|
|
1191
|
+
_GENERAL.fields_by_name['acceleration']._serialized_options = b'\270\262\031\347\036\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\037\205\353Q\270\236#\300\222\262\031\033\n\031\010\234\342\003\022\nGRAVITY_ON\032\007gravity'
|
|
1046
1192
|
_GENERAL.fields_by_name['flow_behavior']._options = None
|
|
1047
1193
|
_GENERAL.fields_by_name['flow_behavior']._serialized_options = b'\202\262\031\004 \200\371\003'
|
|
1048
1194
|
_GENERAL.fields_by_name['solver_params']._options = None
|
|
@@ -1062,11 +1208,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1062
1208
|
_TIME.fields_by_name['physical_time_step_method']._options = None
|
|
1063
1209
|
_TIME.fields_by_name['physical_time_step_method']._serialized_options = b'\202\262\031\004 \300\370\001\222\262\031(\032&\n\002*\000\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior'
|
|
1064
1210
|
_TIME.fields_by_name['time_step_val']._options = None
|
|
1065
|
-
_TIME.fields_by_name['time_step_val']._serialized_options = b'\202\262\031\013\n\t\t-C\034\353\3426\032?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031 \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior'
|
|
1211
|
+
_TIME.fields_by_name['time_step_val']._serialized_options = b'\270\262\031\252\237\001\202\262\031\013\n\t\t-C\034\353\3426\032?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031 \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior'
|
|
1066
1212
|
_TIME.fields_by_name['time_step_ramp']._options = None
|
|
1067
1213
|
_TIME.fields_by_name['time_step_ramp']._serialized_options = b'\202\262\031\004 \223\366\001\222\262\031J\032H\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior\n$\n\"\010\257\204\002\022\rTIME_IMPLICIT\032\rtime_marching'
|
|
1068
1214
|
_TIME.fields_by_name['time_step_ramp_initial_val']._options = None
|
|
1069
|
-
_TIME.fields_by_name['time_step_ramp_initial_val']._serialized_options = b'\202\262\031\013\n\t\t\374\251\361\322MbP?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031)\n\'\010\334\256\002\022\021TIME_STEP_RAMP_ON\032\016time_step_ramp'
|
|
1215
|
+
_TIME.fields_by_name['time_step_ramp_initial_val']._serialized_options = b'\270\262\031\252\237\001\202\262\031\013\n\t\t\374\251\361\322MbP?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031)\n\'\010\334\256\002\022\021TIME_STEP_RAMP_ON\032\016time_step_ramp'
|
|
1070
1216
|
_TIME.fields_by_name['time_step_ramp_iteration_begin']._options = None
|
|
1071
1217
|
_TIME.fields_by_name['time_step_ramp_iteration_begin']._serialized_options = b'\202\262\031\0030\364\003\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031)\n\'\010\334\256\002\022\021TIME_STEP_RAMP_ON\032\016time_step_ramp'
|
|
1072
1218
|
_TIME.fields_by_name['time_step_ramp_iteration_end']._options = None
|
|
@@ -1080,9 +1226,9 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1080
1226
|
_FRAMETRANSFORMS.fields_by_name['transform_type']._options = None
|
|
1081
1227
|
_FRAMETRANSFORMS.fields_by_name['transform_type']._serialized_options = b'\202\262\031\004 \320\347\002'
|
|
1082
1228
|
_FRAMETRANSFORMS.fields_by_name['transform_rotation_angles']._options = None
|
|
1083
|
-
_FRAMETRANSFORMS.fields_by_name['transform_rotation_angles']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\346\270\003\022\024ROTATIONAL_TRANSFORM\032\016transform_type'
|
|
1229
|
+
_FRAMETRANSFORMS.fields_by_name['transform_rotation_angles']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\346\270\003\022\024ROTATIONAL_TRANSFORM\032\016transform_type'
|
|
1084
1230
|
_FRAMETRANSFORMS.fields_by_name['transform_translation']._options = None
|
|
1085
|
-
_FRAMETRANSFORMS.fields_by_name['transform_translation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031/\n-\010\373\314\002\022\027TRANSLATIONAL_TRANSFORM\032\016transform_type'
|
|
1231
|
+
_FRAMETRANSFORMS.fields_by_name['transform_translation']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031/\n-\010\373\314\002\022\027TRANSLATIONAL_TRANSFORM\032\016transform_type'
|
|
1086
1232
|
_MOTIONDATA.fields_by_name['attached_domains']._options = None
|
|
1087
1233
|
_MOTIONDATA.fields_by_name['attached_domains']._serialized_options = b'\240\262\031\001\260\262\031\001\222\262\031\002*\000'
|
|
1088
1234
|
_MOTIONDATA.fields_by_name['attached_boundaries']._options = None
|
|
@@ -1090,49 +1236,49 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1090
1236
|
_MOTIONDATA.fields_by_name['motion_type']._options = None
|
|
1091
1237
|
_MOTIONDATA.fields_by_name['motion_type']._serialized_options = b'\202\262\031\004 \264\250\001'
|
|
1092
1238
|
_MOTIONDATA.fields_by_name['motion_translation_velocity']._options = None
|
|
1093
|
-
_MOTIONDATA.fields_by_name['motion_translation_velocity']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\0310\n.\010\377\320\001\022\033CONSTANT_TRANSLATION_MOTION\032\013motion_type'
|
|
1239
|
+
_MOTIONDATA.fields_by_name['motion_translation_velocity']._serialized_options = b'\270\262\031\005\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\0310\n.\010\377\320\001\022\033CONSTANT_TRANSLATION_MOTION\032\013motion_type'
|
|
1094
1240
|
_MOTIONDATA.fields_by_name['motion_translation']._options = None
|
|
1095
|
-
_MOTIONDATA.fields_by_name['motion_translation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\0310\n.\010\377\320\001\022\033CONSTANT_TRANSLATION_MOTION\032\013motion_type'
|
|
1241
|
+
_MOTIONDATA.fields_by_name['motion_translation']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\0310\n.\010\377\320\001\022\033CONSTANT_TRANSLATION_MOTION\032\013motion_type'
|
|
1096
1242
|
_MOTIONDATA.fields_by_name['motion_formulation']._options = None
|
|
1097
1243
|
_MOTIONDATA.fields_by_name['motion_formulation']._serialized_options = b'\202\262\031\004 \221\353\002\222\262\031H\032F\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior\n\"2 \n\036\n\034\010\264\250\001\022\tNO_MOTION\032\013motion_type'
|
|
1098
1244
|
_MOTIONDATA.fields_by_name['motion_specification']._options = None
|
|
1099
1245
|
_MOTIONDATA.fields_by_name['motion_specification']._serialized_options = b'\202\262\031\004 \236\260\003'
|
|
1100
1246
|
_MOTIONDATA.fields_by_name['motion_angular_velocity']._options = None
|
|
1101
|
-
_MOTIONDATA.fields_by_name['motion_angular_velocity']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\212\366\002\022\027CONSTANT_ANGULAR_MOTION\032\013motion_type'
|
|
1247
|
+
_MOTIONDATA.fields_by_name['motion_angular_velocity']._serialized_options = b'\270\262\031\372\306\003\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\212\366\002\022\027CONSTANT_ANGULAR_MOTION\032\013motion_type'
|
|
1102
1248
|
_MOTIONDATA.fields_by_name['motion_rotation_angles']._options = None
|
|
1103
|
-
_MOTIONDATA.fields_by_name['motion_rotation_angles']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\212\366\002\022\027CONSTANT_ANGULAR_MOTION\032\013motion_type'
|
|
1249
|
+
_MOTIONDATA.fields_by_name['motion_rotation_angles']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031,\n*\010\212\366\002\022\027CONSTANT_ANGULAR_MOTION\032\013motion_type'
|
|
1104
1250
|
_PARTICLEGROUP.fields_by_name['particle_group_type']._options = None
|
|
1105
1251
|
_PARTICLEGROUP.fields_by_name['particle_group_type']._serialized_options = b'\202\262\031\004 \331\337\001'
|
|
1106
1252
|
_PARTICLEGROUP.fields_by_name['actuator_disk_inner_radius']._options = None
|
|
1107
|
-
_PARTICLEGROUP.fields_by_name['actuator_disk_inner_radius']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1253
|
+
_PARTICLEGROUP.fields_by_name['actuator_disk_inner_radius']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1108
1254
|
_PARTICLEGROUP.fields_by_name['actuator_disk_outer_radius']._options = None
|
|
1109
|
-
_PARTICLEGROUP.fields_by_name['actuator_disk_outer_radius']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1255
|
+
_PARTICLEGROUP.fields_by_name['actuator_disk_outer_radius']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1110
1256
|
_PARTICLEGROUP.fields_by_name['actuator_disk_center']._options = None
|
|
1111
|
-
_PARTICLEGROUP.fields_by_name['actuator_disk_center']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1257
|
+
_PARTICLEGROUP.fields_by_name['actuator_disk_center']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1112
1258
|
_PARTICLEGROUP.fields_by_name['actuator_disk_orientation_selection']._options = None
|
|
1113
1259
|
_PARTICLEGROUP.fields_by_name['actuator_disk_orientation_selection']._serialized_options = b'\202\262\031\004 \362\225\003\222\262\031.\032,\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1114
1260
|
_PARTICLEGROUP.fields_by_name['actuator_disk_rotation_angle']._options = None
|
|
1115
|
-
_PARTICLEGROUP.fields_by_name['actuator_disk_rotation_angle']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\203\001\032\200\001\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type\nR\nP\010\362\225\003\022%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\032#actuator_disk_orientation_selection'
|
|
1261
|
+
_PARTICLEGROUP.fields_by_name['actuator_disk_rotation_angle']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\203\001\032\200\001\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type\nR\nP\010\362\225\003\022%ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES\032#actuator_disk_orientation_selection'
|
|
1116
1262
|
_PARTICLEGROUP.fields_by_name['actuator_disk_normal_vector']._options = None
|
|
1117
|
-
_PARTICLEGROUP.fields_by_name['actuator_disk_normal_vector']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\360?\222\262\031\177\032}\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type\nO\nM\010\2768\022#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\032#actuator_disk_orientation_selection'
|
|
1263
|
+
_PARTICLEGROUP.fields_by_name['actuator_disk_normal_vector']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\360?\222\262\031\177\032}\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type\nO\nM\010\2768\022#ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR\032#actuator_disk_orientation_selection'
|
|
1118
1264
|
_PARTICLEGROUP.fields_by_name['source_particle_radius']._options = None
|
|
1119
|
-
_PARTICLEGROUP.fields_by_name['source_particle_radius']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\250\222\002\022\rSOURCE_POINTS\032\023particle_group_type'
|
|
1265
|
+
_PARTICLEGROUP.fields_by_name['source_particle_radius']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\250\222\002\022\rSOURCE_POINTS\032\023particle_group_type'
|
|
1120
1266
|
_PARTICLEGROUP.fields_by_name['search_radius_scale_factor']._options = None
|
|
1121
|
-
_PARTICLEGROUP.fields_by_name['search_radius_scale_factor']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\004@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1267
|
+
_PARTICLEGROUP.fields_by_name['search_radius_scale_factor']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\004@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1122
1268
|
_PARTICLEGROUP.fields_by_name['isotropic_gaussian_scale_factor']._options = None
|
|
1123
|
-
_PARTICLEGROUP.fields_by_name['isotropic_gaussian_scale_factor']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1269
|
+
_PARTICLEGROUP.fields_by_name['isotropic_gaussian_scale_factor']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0312\0320\n\002*\000\n*\n(\010\331\337\001\022\rACTUATOR_DISK\032\023particle_group_type'
|
|
1124
1270
|
_PARTICLEGROUP.fields_by_name['particle_positions_table']._options = None
|
|
1125
1271
|
_PARTICLEGROUP.fields_by_name['particle_positions_table']._serialized_options = b'\222\262\031X\022V\n(\n&\010\335>\022\014PROBE_POINTS\032\023particle_group_type\n*\n(\010\250\222\002\022\rSOURCE_POINTS\032\023particle_group_type\232\262\031\035\022\003\010\200P\022\003\010\200P\022\003\010\200P\022\006\022\004name\022\004\022\002id'
|
|
1126
1272
|
_MONITORPLANE.fields_by_name['monitor_plane_point']._options = None
|
|
1127
|
-
_MONITORPLANE.fields_by_name['monitor_plane_point']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1273
|
+
_MONITORPLANE.fields_by_name['monitor_plane_point']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1128
1274
|
_MONITORPLANE.fields_by_name['monitor_plane_normal']._options = None
|
|
1129
|
-
_MONITORPLANE.fields_by_name['monitor_plane_normal']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\360?'
|
|
1275
|
+
_MONITORPLANE.fields_by_name['monitor_plane_normal']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\360?'
|
|
1130
1276
|
_MONITORPLANE.fields_by_name['monitor_plane_clip_center']._options = None
|
|
1131
|
-
_MONITORPLANE.fields_by_name['monitor_plane_clip_center']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1277
|
+
_MONITORPLANE.fields_by_name['monitor_plane_clip_center']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1132
1278
|
_MONITORPLANE.fields_by_name['monitor_plane_clip_size']._options = None
|
|
1133
|
-
_MONITORPLANE.fields_by_name['monitor_plane_clip_size']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1279
|
+
_MONITORPLANE.fields_by_name['monitor_plane_clip_size']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1134
1280
|
_MONITORPLANE.fields_by_name['monitor_plane_clip_rotation']._options = None
|
|
1135
|
-
_MONITORPLANE.fields_by_name['monitor_plane_clip_rotation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1281
|
+
_MONITORPLANE.fields_by_name['monitor_plane_clip_rotation']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\006:\004\010\246\237\003'
|
|
1136
1282
|
_MONITORPLANE.fields_by_name['monitor_plane_volumes']._options = None
|
|
1137
1283
|
_MONITORPLANE.fields_by_name['monitor_plane_volumes']._serialized_options = b'\240\262\031\001\260\262\031\001\222\262\031\006:\004\010\216\357\002'
|
|
1138
1284
|
_BODYFRAME.fields_by_name['body_frame_id']._options = None
|
|
@@ -1152,27 +1298,27 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1152
1298
|
_VOLUMEPHYSICSRELATIONSHIP.fields_by_name['volume_identifier']._options = None
|
|
1153
1299
|
_VOLUMEPHYSICSRELATIONSHIP.fields_by_name['volume_identifier']._serialized_options = b'\240\262\031\001\260\262\031\001'
|
|
1154
1300
|
_REFERENCEVALUES.fields_by_name['area_ref']._options = None
|
|
1155
|
-
_REFERENCEVALUES.fields_by_name['area_ref']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1301
|
+
_REFERENCEVALUES.fields_by_name['area_ref']._serialized_options = b'\270\262\031\n\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1156
1302
|
_REFERENCEVALUES.fields_by_name['length_ref']._options = None
|
|
1157
|
-
_REFERENCEVALUES.fields_by_name['length_ref']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1303
|
+
_REFERENCEVALUES.fields_by_name['length_ref']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1158
1304
|
_REFERENCEVALUES.fields_by_name['length_ref_pitch']._options = None
|
|
1159
|
-
_REFERENCEVALUES.fields_by_name['length_ref_pitch']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1305
|
+
_REFERENCEVALUES.fields_by_name['length_ref_pitch']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1160
1306
|
_REFERENCEVALUES.fields_by_name['length_ref_roll']._options = None
|
|
1161
|
-
_REFERENCEVALUES.fields_by_name['length_ref_roll']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1307
|
+
_REFERENCEVALUES.fields_by_name['length_ref_roll']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1162
1308
|
_REFERENCEVALUES.fields_by_name['length_ref_yaw']._options = None
|
|
1163
|
-
_REFERENCEVALUES.fields_by_name['length_ref_yaw']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1309
|
+
_REFERENCEVALUES.fields_by_name['length_ref_yaw']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\n\032\010\n\006:\004\010\335\267\002'
|
|
1164
1310
|
_REFERENCEVALUES.fields_by_name['p_ref']._options = None
|
|
1165
|
-
_REFERENCEVALUES.fields_by_name['p_ref']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1311
|
+
_REFERENCEVALUES.fields_by_name['p_ref']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1166
1312
|
_REFERENCEVALUES.fields_by_name['t_ref']._options = None
|
|
1167
|
-
_REFERENCEVALUES.fields_by_name['t_ref']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1313
|
+
_REFERENCEVALUES.fields_by_name['t_ref']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1168
1314
|
_REFERENCEVALUES.fields_by_name['v_ref']._options = None
|
|
1169
|
-
_REFERENCEVALUES.fields_by_name['v_ref']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1315
|
+
_REFERENCEVALUES.fields_by_name['v_ref']._serialized_options = b'\270\262\031\005\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001'
|
|
1170
1316
|
_BOUNDARYLAYERPROFILE.fields_by_name['n_layers']._options = None
|
|
1171
1317
|
_BOUNDARYLAYERPROFILE.fields_by_name['n_layers']._serialized_options = b'\202\262\031\0020(\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1172
1318
|
_BOUNDARYLAYERPROFILE.fields_by_name['initial_size']._options = None
|
|
1173
|
-
_BOUNDARYLAYERPROFILE.fields_by_name['initial_size']._serialized_options = b'\202\262\031\013\n\t\t\215\355\265\240\367\306\260>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1319
|
+
_BOUNDARYLAYERPROFILE.fields_by_name['initial_size']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\215\355\265\240\367\306\260>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1174
1320
|
_BOUNDARYLAYERPROFILE.fields_by_name['growth_rate']._options = None
|
|
1175
|
-
_BOUNDARYLAYERPROFILE.fields_by_name['growth_rate']._serialized_options = b'\202\262\031\013\n\t\t333333\363?\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\020@\212\262\031\002\030\000\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1321
|
+
_BOUNDARYLAYERPROFILE.fields_by_name['growth_rate']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\363?\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\020@\212\262\031\002\030\000\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1176
1322
|
_BOUNDARYLAYERPROFILE.fields_by_name['surfaces']._options = None
|
|
1177
1323
|
_BOUNDARYLAYERPROFILE.fields_by_name['surfaces']._serialized_options = b'\240\262\031\001\250\262\031\001\222\262\031\002*\000'
|
|
1178
1324
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['refinement_iterations']._options = None
|
|
@@ -1182,9 +1328,9 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1182
1328
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['max_refinement_interval']._options = None
|
|
1183
1329
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['max_refinement_interval']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000'
|
|
1184
1330
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['initial_target_complexity']._options = None
|
|
1185
|
-
_ADAPTIVEMESHREFINEMENT.fields_by_name['initial_target_complexity']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000'
|
|
1331
|
+
_ADAPTIVEMESHREFINEMENT.fields_by_name['initial_target_complexity']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000'
|
|
1186
1332
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['final_target_complexity']._options = None
|
|
1187
|
-
_ADAPTIVEMESHREFINEMENT.fields_by_name['final_target_complexity']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000'
|
|
1333
|
+
_ADAPTIVEMESHREFINEMENT.fields_by_name['final_target_complexity']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000'
|
|
1188
1334
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['meshing_method']._options = None
|
|
1189
1335
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['meshing_method']._serialized_options = b'\202\262\031\004 \242\220\002'
|
|
1190
1336
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['target_cv_millions']._options = None
|
|
@@ -1192,7 +1338,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1192
1338
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['all_tet']._options = None
|
|
1193
1339
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['all_tet']._serialized_options = b'\202\262\031\003 \366 \222\262\031-\032+\n\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method\n\000'
|
|
1194
1340
|
_ADAPTIVEMESHREFINEMENT.fields_by_name['user_scaling']._options = None
|
|
1195
|
-
_ADAPTIVEMESHREFINEMENT.fields_by_name['user_scaling']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1341
|
+
_ADAPTIVEMESHREFINEMENT.fields_by_name['user_scaling']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\373\014\022\020MESH_METHOD_AUTO\032\016meshing_method'
|
|
1196
1342
|
_SOLUTIONCONTROLSHEAT.fields_by_name['relaxation_method']._options = None
|
|
1197
1343
|
_SOLUTIONCONTROLSHEAT.fields_by_name['relaxation_method']._serialized_options = b'\202\262\031\004 \240\236\003\222\262\031G\022E\n\035\n\033\010\200\371\003\022\006STEADY\032\rflow_behavior\n$\n\"\010\257\204\002\022\rTIME_IMPLICIT\032\rtime_marching'
|
|
1198
1344
|
_SOLUTIONCONTROLSHEAT.fields_by_name['implicit_method']._options = None
|
|
@@ -1200,7 +1346,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1200
1346
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_iterations']._options = None
|
|
1201
1347
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_iterations']._serialized_options = b'\202\262\031\0020\017\212\262\031\t\t\000\000\000\000\000\000\000@\212\262\031\t\021\000\000\000\000\000@\217@\212\262\031\002\030\000\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1202
1348
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_tolerance']._options = None
|
|
1203
|
-
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_tolerance']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1349
|
+
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_tolerance']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1204
1350
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linear_solver_type']._options = None
|
|
1205
1351
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linear_solver_type']._serialized_options = b'\202\262\031\003 \321}\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1206
1352
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_pre_sweeps']._options = None
|
|
@@ -1212,7 +1358,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1212
1358
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_levels']._options = None
|
|
1213
1359
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_levels']._serialized_options = b'\202\262\031\0020\024\212\262\031\t\t\000\000\000\000\000\000$@\212\262\031\t\021\000\000\000\000\000\000D@\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1214
1360
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_relaxation']._options = None
|
|
1215
|
-
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_relaxation']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\350?\212\262\031\t\t\000\000\000\000\000\000\340?\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1361
|
+
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_relaxation']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\350?\212\262\031\t\t\000\000\000\000\000\000\340?\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1216
1362
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_cycle_type']._options = None
|
|
1217
1363
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_cycle_type']._serialized_options = b'\202\262\031\004 \375\324\001\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1218
1364
|
_SOLUTIONCONTROLSHEAT.fields_by_name['linsol_amg_freeze_levels_threshold']._options = None
|
|
@@ -1232,11 +1378,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1232
1378
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['gradient_method']._options = None
|
|
1233
1379
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['gradient_method']._serialized_options = b'\202\262\031\003 \330v'
|
|
1234
1380
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['hlsq_blend']._options = None
|
|
1235
|
-
_SPATIALDISCRETIZATIONHEAT.fields_by_name['hlsq_blend']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\000@\212\262\031\002\030\000\222\262\031C\022A\n\035\n\033\010\233\350\003\022\004HLSQ\032\017gradient_method\n \n\036\010\360\212\003\022\007LC_HLSQ\032\017gradient_method'
|
|
1381
|
+
_SPATIALDISCRETIZATIONHEAT.fields_by_name['hlsq_blend']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\000@\212\262\031\002\030\000\222\262\031C\022A\n\035\n\033\010\233\350\003\022\004HLSQ\032\017gradient_method\n \n\036\010\360\212\003\022\007LC_HLSQ\032\017gradient_method'
|
|
1236
1382
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['geometry_fixes']._options = None
|
|
1237
1383
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['geometry_fixes']._serialized_options = b'\202\262\031\004 \331\346\001\222\262\031\'\022%\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order'
|
|
1238
1384
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['geometry_fixes_mitigations']._options = None
|
|
1239
|
-
_SPATIALDISCRETIZATIONHEAT.fields_by_name['geometry_fixes_mitigations']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031)\n\'\010\331\346\001\022\021GEOMETRY_FIXES_ON\032\016geometry_fixes'
|
|
1385
|
+
_SPATIALDISCRETIZATIONHEAT.fields_by_name['geometry_fixes_mitigations']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031)\n\'\010\331\346\001\022\021GEOMETRY_FIXES_ON\032\016geometry_fixes'
|
|
1240
1386
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['discretization_preset_version']._options = None
|
|
1241
1387
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['discretization_preset_version']._serialized_options = b'\030\001\202\262\031\0020\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\002*\000'
|
|
1242
1388
|
_SPATIALDISCRETIZATIONHEAT.fields_by_name['spatial_discretization_heat_preset']._options = None
|
|
@@ -1250,7 +1396,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1250
1396
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['boundary_condition_interface_id']._options = None
|
|
1251
1397
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['boundary_condition_interface_id']._serialized_options = b'\222\262\031\002*\000'
|
|
1252
1398
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_bc']._options = None
|
|
1253
|
-
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_bc']._serialized_options = b'\222\262\031\
|
|
1399
|
+
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_bc']._serialized_options = b'\222\262\031\356\001\022\353\001\n\232\001\032\227\001\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior\ns\022q\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary\n<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary\nL\032J\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n&2$\n\"\n \010\231\257\001\022\nMACH_INLET\032\016inlet_momentum'
|
|
1254
1400
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_bc_data']._options = None
|
|
1255
1401
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_bc_data']._serialized_options = b'\222\262\031\006:\004\010\205\351\002\232\262\031\006\n\002\022\000 \001'
|
|
1256
1402
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['profile_type']._options = None
|
|
@@ -1258,25 +1404,25 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1258
1404
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_physical_boundary']._options = None
|
|
1259
1405
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_physical_boundary']._serialized_options = b'\202\262\031\004 \236\305\001'
|
|
1260
1406
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_heat_flux']._options = None
|
|
1261
|
-
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_heat_flux']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031Z\022X\n#\n!\010\256\006\022\017FIXED_HEAT_FLUX\032\013wall_energy\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1407
|
+
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_heat_flux']._serialized_options = b'\270\262\031\247`\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031Z\022X\n#\n!\010\256\006\022\017FIXED_HEAT_FLUX\032\013wall_energy\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1262
1408
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_integrated_heat_flux']._options = None
|
|
1263
|
-
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_integrated_heat_flux']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1409
|
+
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_integrated_heat_flux']._serialized_options = b'\270\262\031\230\367\003\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1264
1410
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_flux_col']._options = None
|
|
1265
1411
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_flux_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031\177\032}\ns\022q\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary\n<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary\n\006:\004\010\205\351\002'
|
|
1266
1412
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_temperature']._options = None
|
|
1267
|
-
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_temperature']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\223\001\022\220\001\n&\n$\010\247\254\001\022\021FIXED_TEMPERATURE\032\013wall_energy\n2\n0\010\236\305\001\022\022HEAT_BC_ISOTHERMAL\032\026heat_physical_boundary\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1413
|
+
_BOUNDARYCONDITIONSHEAT.fields_by_name['fixed_temperature']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\223\001\022\220\001\n&\n$\010\247\254\001\022\021FIXED_TEMPERATURE\032\013wall_energy\n2\n0\010\236\305\001\022\022HEAT_BC_ISOTHERMAL\032\026heat_physical_boundary\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1268
1414
|
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_transfer_coefficient']._options = None
|
|
1269
|
-
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_transfer_coefficient']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0316\0324\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1415
|
+
_BOUNDARYCONDITIONSHEAT.fields_by_name['heat_transfer_coefficient']._serialized_options = b'\270\262\031\301\367\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0316\0324\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1270
1416
|
_INITIALIZATIONHEAT.fields_by_name['initialization_type']._options = None
|
|
1271
1417
|
_INITIALIZATIONHEAT.fields_by_name['initialization_type']._serialized_options = b'\202\262\031\004 \242\276\001'
|
|
1272
1418
|
_INITIALIZATIONHEAT.fields_by_name['uniform_t']._options = None
|
|
1273
|
-
_INITIALIZATIONHEAT.fields_by_name['uniform_t']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\344\001\022\341\001\n\324\001\032\321\001\nk\022i\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n\010B\006\n\004heat'
|
|
1419
|
+
_INITIALIZATIONHEAT.fields_by_name['uniform_t']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\344\001\022\341\001\n\324\001\032\321\001\nk\022i\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n\010B\006\n\004heat'
|
|
1274
1420
|
_INITIALIZATIONHEAT.fields_by_name['existing_solution_url']._options = None
|
|
1275
1421
|
_INITIALIZATIONHEAT.fields_by_name['existing_solution_url']._serialized_options = b'\222\262\031.\n,\010\344\321\001\022\021EXISTING_SOLUTION\032\023initialization_type'
|
|
1276
1422
|
_INITIALIZATIONHEAT.fields_by_name['existing_solution_id']._options = None
|
|
1277
1423
|
_INITIALIZATIONHEAT.fields_by_name['existing_solution_id']._serialized_options = b'\222\262\031\002*\000'
|
|
1278
1424
|
_HEATSOURCE.fields_by_name['profile_source']._options = None
|
|
1279
|
-
_HEATSOURCE.fields_by_name['profile_source']._serialized_options = b'\222\262\031 \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior'
|
|
1425
|
+
_HEATSOURCE.fields_by_name['profile_source']._serialized_options = b'\222\262\031.\032,\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior\n\010B\006\n\004heat'
|
|
1280
1426
|
_HEATSOURCE.fields_by_name['profile_source_data']._options = None
|
|
1281
1427
|
_HEATSOURCE.fields_by_name['profile_source_data']._serialized_options = b'\222\262\031\006:\004\010\351\341\002\232\262\031\006\n\002\022\000 \001'
|
|
1282
1428
|
_HEATSOURCE.fields_by_name['profile_type']._options = None
|
|
@@ -1292,9 +1438,9 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1292
1438
|
_HEATSOURCE.fields_by_name['heat_source_type']._options = None
|
|
1293
1439
|
_HEATSOURCE.fields_by_name['heat_source_type']._serialized_options = b'\202\262\031\004 \302\342\001'
|
|
1294
1440
|
_HEATSOURCE.fields_by_name['heat_source_power']._options = None
|
|
1295
|
-
_HEATSOURCE.fields_by_name['heat_source_power']._serialized_options = b'\222\262\0314\0322\n0\n.\010\302\342\001\022\026HEAT_SOURCE_TYPE_POWER\032\020heat_source_type'
|
|
1441
|
+
_HEATSOURCE.fields_by_name['heat_source_power']._serialized_options = b'\270\262\031\230\367\003\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\222\262\0314\0322\n0\n.\010\302\342\001\022\026HEAT_SOURCE_TYPE_POWER\032\020heat_source_type'
|
|
1296
1442
|
_HEATSOURCE.fields_by_name['heat_source_power_per_unit_volume']._options = None
|
|
1297
|
-
_HEATSOURCE.fields_by_name['heat_source_power_per_unit_volume']._serialized_options = b'\222\262\031G\032E\nC\nA\010\277\336\003\022)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\032\020heat_source_type'
|
|
1443
|
+
_HEATSOURCE.fields_by_name['heat_source_power_per_unit_volume']._serialized_options = b'\270\262\0313\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\222\262\031G\032E\nC\nA\010\277\336\003\022)HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME\032\020heat_source_type'
|
|
1298
1444
|
_SLIDINGINTERFACES.fields_by_name['sliding_interface_id']._options = None
|
|
1299
1445
|
_SLIDINGINTERFACES.fields_by_name['sliding_interface_id']._serialized_options = b'\222\262\031\002*\000'
|
|
1300
1446
|
_SLIDINGINTERFACES.fields_by_name['sliding_interface_name']._options = None
|
|
@@ -1304,11 +1450,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1304
1450
|
_SLIDINGINTERFACES.fields_by_name['sliding_b']._options = None
|
|
1305
1451
|
_SLIDINGINTERFACES.fields_by_name['sliding_b']._serialized_options = b'\240\262\031\001\250\262\031\001\222\262\031\002*\000'
|
|
1306
1452
|
_SLIDINGINTERFACES.fields_by_name['sliding_matching_translation_transform']._options = None
|
|
1307
|
-
_SLIDINGINTERFACES.fields_by_name['sliding_matching_translation_transform']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1453
|
+
_SLIDINGINTERFACES.fields_by_name['sliding_matching_translation_transform']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1308
1454
|
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_rotation_angles']._options = None
|
|
1309
|
-
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_rotation_angles']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1455
|
+
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_rotation_angles']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1310
1456
|
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_center_of_rotation']._options = None
|
|
1311
|
-
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_center_of_rotation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1457
|
+
_SLIDINGINTERFACES.fields_by_name['sliding_matching_periodic_center_of_rotation']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1312
1458
|
_SLIDINGINTERFACES.fields_by_name['interface_type']._options = None
|
|
1313
1459
|
_SLIDINGINTERFACES.fields_by_name['interface_type']._serialized_options = b'\202\262\031\004 \302\243\003\222\262\031\002*\000'
|
|
1314
1460
|
_PERIODICPAIR.fields_by_name['periodic_pair_name']._options = None
|
|
@@ -1320,13 +1466,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1320
1466
|
_PERIODICPAIR.fields_by_name['periodic_bc_type']._options = None
|
|
1321
1467
|
_PERIODICPAIR.fields_by_name['periodic_bc_type']._serialized_options = b'\202\262\031\004 \331\235\001'
|
|
1322
1468
|
_PERIODICPAIR.fields_by_name['translational']._options = None
|
|
1323
|
-
_PERIODICPAIR.fields_by_name['translational']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\331\235\001\022\rTRANSLATIONAL\032\020periodic_bc_type'
|
|
1469
|
+
_PERIODICPAIR.fields_by_name['translational']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\331\235\001\022\rTRANSLATIONAL\032\020periodic_bc_type'
|
|
1324
1470
|
_PERIODICPAIR.fields_by_name['periodic_translation']._options = None
|
|
1325
|
-
_PERIODICPAIR.fields_by_name['periodic_translation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1471
|
+
_PERIODICPAIR.fields_by_name['periodic_translation']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1326
1472
|
_PERIODICPAIR.fields_by_name['periodic_center_of_rotation']._options = None
|
|
1327
|
-
_PERIODICPAIR.fields_by_name['periodic_center_of_rotation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1473
|
+
_PERIODICPAIR.fields_by_name['periodic_center_of_rotation']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1328
1474
|
_PERIODICPAIR.fields_by_name['periodic_rotation_angles']._options = None
|
|
1329
|
-
_PERIODICPAIR.fields_by_name['periodic_rotation_angles']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1475
|
+
_PERIODICPAIR.fields_by_name['periodic_rotation_angles']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000'
|
|
1330
1476
|
_BASICFLUID.fields_by_name['fluid_type']._options = None
|
|
1331
1477
|
_BASICFLUID.fields_by_name['fluid_type']._serialized_options = b'\202\262\031\004 \335\360\001\222\262\031\006\032\004\n\002*\000'
|
|
1332
1478
|
_BASICFLUID.fields_by_name['viscous_model']._options = None
|
|
@@ -1336,29 +1482,29 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1336
1482
|
_TURBULENCE.fields_by_name['rans_region']._options = None
|
|
1337
1483
|
_TURBULENCE.fields_by_name['rans_region']._serialized_options = b'\202\262\031\003 \331s\222\262\031\035\n\033\010\375\305\001\022\004ZDES\032\017des_formulation'
|
|
1338
1484
|
_TURBULENCE.fields_by_name['zdes_rmin']._options = None
|
|
1339
|
-
_TURBULENCE.fields_by_name['zdes_rmin']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\035\n\033\010\375\305\001\022\004ZDES\032\017des_formulation'
|
|
1485
|
+
_TURBULENCE.fields_by_name['zdes_rmin']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\035\n\033\010\375\305\001\022\004ZDES\032\017des_formulation'
|
|
1340
1486
|
_TURBULENCE.fields_by_name['zdes_rmax']._options = None
|
|
1341
|
-
_TURBULENCE.fields_by_name['zdes_rmax']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\035\n\033\010\375\305\001\022\004ZDES\032\017des_formulation'
|
|
1487
|
+
_TURBULENCE.fields_by_name['zdes_rmax']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\035\n\033\010\375\305\001\022\004ZDES\032\017des_formulation'
|
|
1342
1488
|
_TURBULENCE.fields_by_name['sub_grid_scale_model']._options = None
|
|
1343
1489
|
_TURBULENCE.fields_by_name['sub_grid_scale_model']._serialized_options = b'\202\262\031\004 \367\261\001\222\262\031\032\n\030\010\201\200\004\022\003LES\032\rviscous_model'
|
|
1344
1490
|
_TURBULENCE.fields_by_name['c_s']._options = None
|
|
1345
|
-
_TURBULENCE.fields_by_name['c_s']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031)\n\'\010\242\227\002\022\013SMAGORINSKY\032\024sub_grid_scale_model'
|
|
1491
|
+
_TURBULENCE.fields_by_name['c_s']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031)\n\'\010\242\227\002\022\013SMAGORINSKY\032\024sub_grid_scale_model'
|
|
1346
1492
|
_TURBULENCE.fields_by_name['c_vreman']._options = None
|
|
1347
|
-
_TURBULENCE.fields_by_name['c_vreman']._serialized_options = b'\202\262\031\013\n\t\t\345\320\"\333\371~\262?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\367\261\001\022\006VREMAN\032\024sub_grid_scale_model'
|
|
1493
|
+
_TURBULENCE.fields_by_name['c_vreman']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\345\320\"\333\371~\262?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\367\261\001\022\006VREMAN\032\024sub_grid_scale_model'
|
|
1348
1494
|
_TURBULENCE.fields_by_name['c_wale']._options = None
|
|
1349
|
-
_TURBULENCE.fields_by_name['c_wale']._serialized_options = b'\202\262\031\013\n\t\t\315\314\314\314\314\314\324?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\"\n \010\310\311\003\022\004WALE\032\024sub_grid_scale_model'
|
|
1495
|
+
_TURBULENCE.fields_by_name['c_wale']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\315\314\314\314\314\314\324?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\"\n \010\310\311\003\022\004WALE\032\024sub_grid_scale_model'
|
|
1350
1496
|
_TURBULENCE.fields_by_name['c_sigma']._options = None
|
|
1351
|
-
_TURBULENCE.fields_by_name['c_sigma']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\370?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\"\n \010\307g\022\005SIGMA\032\024sub_grid_scale_model'
|
|
1497
|
+
_TURBULENCE.fields_by_name['c_sigma']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\370?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\"\n \010\307g\022\005SIGMA\032\024sub_grid_scale_model'
|
|
1352
1498
|
_TURBULENCE.fields_by_name['c_amd']._options = None
|
|
1353
|
-
_TURBULENCE.fields_by_name['c_amd']._serialized_options = b'\202\262\031\013\n\t\tR\270\036\205\353Q\310?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031 \n\036\010\324\037\022\003AMD\032\024sub_grid_scale_model'
|
|
1499
|
+
_TURBULENCE.fields_by_name['c_amd']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tR\270\036\205\353Q\310?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031 \n\036\010\324\037\022\003AMD\032\024sub_grid_scale_model'
|
|
1354
1500
|
_TURBULENCE.fields_by_name['turbulent_thermal_conductivity_prandtl_constant']._options = None
|
|
1355
|
-
_TURBULENCE.fields_by_name['turbulent_thermal_conductivity_prandtl_constant']._serialized_options = b'\202\262\031\013\n\t\t333333\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\300\001\032\275\001\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\nW\022U\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model'
|
|
1501
|
+
_TURBULENCE.fields_by_name['turbulent_thermal_conductivity_prandtl_constant']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\300\001\032\275\001\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\nW\022U\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model'
|
|
1356
1502
|
_TURBULENCE.fields_by_name['transition_model']._options = None
|
|
1357
1503
|
_TURBULENCE.fields_by_name['transition_model']._serialized_options = b'\202\262\031\004 \241\350\003\222\262\031s\032q\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\nR\022P\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model'
|
|
1358
1504
|
_TURBULENCE.fields_by_name['transition_model_cross_flow']._options = None
|
|
1359
1505
|
_TURBULENCE.fields_by_name['transition_model_cross_flow']._serialized_options = b'\202\262\031\004 \216\345\001\222\262\031{\022y\n$\n\"\010\320\236\001\022\nGAMMA_2015\032\020transition_model\n-\n+\010\340\247\002\022\023GAMMA_RE_THETA_2009\032\020transition_model\n\"\n \010\355\226\003\022\010AFT_2019\032\020transition_model'
|
|
1360
1506
|
_TURBULENCE.fields_by_name['transition_free_stream_turbulence_intensity']._options = None
|
|
1361
|
-
_TURBULENCE.fields_by_name['transition_free_stream_turbulence_intensity']._serialized_options = b'\202\262\031\013\n\t\t\374\251\361\322Mb`?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\205\001\032\202\001\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\nU\022S\n-\n+\010\340\247\002\022\023GAMMA_RE_THETA_2009\032\020transition_model\n\"\n \010\355\226\003\022\010AFT_2019\032\020transition_model'
|
|
1507
|
+
_TURBULENCE.fields_by_name['transition_free_stream_turbulence_intensity']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\374\251\361\322Mb`?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\205\001\032\202\001\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\nU\022S\n-\n+\010\340\247\002\022\023GAMMA_RE_THETA_2009\032\020transition_model\n\"\n \010\355\226\003\022\010AFT_2019\032\020transition_model'
|
|
1362
1508
|
_TURBULENCE.fields_by_name['turbulence_model']._options = None
|
|
1363
1509
|
_TURBULENCE.fields_by_name['turbulence_model']._serialized_options = b'\202\262\031\003 \312\025\222\262\031;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1364
1510
|
_TURBULENCE.fields_by_name['qcr_sa']._options = None
|
|
@@ -1366,29 +1512,29 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1366
1512
|
_TURBULENCE.fields_by_name['rotation_correction_sa']._options = None
|
|
1367
1513
|
_TURBULENCE.fields_by_name['rotation_correction_sa']._serialized_options = b'\202\262\031\004 \372\222\002\222\262\031)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model'
|
|
1368
1514
|
_TURBULENCE.fields_by_name['c_rot']._options = None
|
|
1369
|
-
_TURBULENCE.fields_by_name['c_rot']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\240\001\032\235\001\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants\n5\n3\010\256#\022\026ROTATION_CORRECTION_ON\032\026rotation_correction_sa'
|
|
1515
|
+
_TURBULENCE.fields_by_name['c_rot']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\240\001\032\235\001\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants\n5\n3\010\256#\022\026ROTATION_CORRECTION_ON\032\026rotation_correction_sa'
|
|
1370
1516
|
_TURBULENCE.fields_by_name['C_sa_des']._options = None
|
|
1371
|
-
_TURBULENCE.fields_by_name['C_sa_des']._serialized_options = b'\202\262\031\013\n\t\t\315\314\314\314\314\314\344?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\205\001\032\202\001\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1517
|
+
_TURBULENCE.fields_by_name['C_sa_des']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\315\314\314\314\314\314\344?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\205\001\032\202\001\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1372
1518
|
_TURBULENCE.fields_by_name['c_b_1']._options = None
|
|
1373
|
-
_TURBULENCE.fields_by_name['c_b_1']._serialized_options = b'\202\262\031\013\n\t\t\362\322Mb\020X\301?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1519
|
+
_TURBULENCE.fields_by_name['c_b_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\362\322Mb\020X\301?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1374
1520
|
_TURBULENCE.fields_by_name['sigma']._options = None
|
|
1375
|
-
_TURBULENCE.fields_by_name['sigma']._serialized_options = b'\202\262\031\013\n\t\tUUUUUU\345?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1521
|
+
_TURBULENCE.fields_by_name['sigma']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tUUUUUU\345?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1376
1522
|
_TURBULENCE.fields_by_name['c_b_2']._options = None
|
|
1377
|
-
_TURBULENCE.fields_by_name['c_b_2']._serialized_options = b'\202\262\031\013\n\t\t\201\225C\213l\347\343?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1523
|
+
_TURBULENCE.fields_by_name['c_b_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\201\225C\213l\347\343?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1378
1524
|
_TURBULENCE.fields_by_name['kappa']._options = None
|
|
1379
|
-
_TURBULENCE.fields_by_name['kappa']._serialized_options = b'\202\262\031\013\n\t\t=\n\327\243p=\332?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1525
|
+
_TURBULENCE.fields_by_name['kappa']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t=\n\327\243p=\332?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1380
1526
|
_TURBULENCE.fields_by_name['c_w_2']._options = None
|
|
1381
|
-
_TURBULENCE.fields_by_name['c_w_2']._serialized_options = b'\202\262\031\013\n\t\t333333\323?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1527
|
+
_TURBULENCE.fields_by_name['c_w_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\323?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1382
1528
|
_TURBULENCE.fields_by_name['c_w_3']._options = None
|
|
1383
|
-
_TURBULENCE.fields_by_name['c_w_3']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1529
|
+
_TURBULENCE.fields_by_name['c_w_3']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1384
1530
|
_TURBULENCE.fields_by_name['c_v_1']._options = None
|
|
1385
|
-
_TURBULENCE.fields_by_name['c_v_1']._serialized_options = b'\202\262\031\013\n\t\tffffff\034@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1531
|
+
_TURBULENCE.fields_by_name['c_v_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tffffff\034@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1386
1532
|
_TURBULENCE.fields_by_name['c_t_3']._options = None
|
|
1387
|
-
_TURBULENCE.fields_by_name['c_t_3']._serialized_options = b'\202\262\031\013\n\t\t333333\363?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1533
|
+
_TURBULENCE.fields_by_name['c_t_3']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\363?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1388
1534
|
_TURBULENCE.fields_by_name['c_t_4']._options = None
|
|
1389
|
-
_TURBULENCE.fields_by_name['c_t_4']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1535
|
+
_TURBULENCE.fields_by_name['c_t_4']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1390
1536
|
_TURBULENCE.fields_by_name['c_r_1']._options = None
|
|
1391
|
-
_TURBULENCE.fields_by_name['c_r_1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1537
|
+
_TURBULENCE.fields_by_name['c_r_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1392
1538
|
_TURBULENCE.fields_by_name['qcr_sst']._options = None
|
|
1393
1539
|
_TURBULENCE.fields_by_name['qcr_sst']._serialized_options = b'\202\262\031\004 \371\353\001\222\262\031#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model'
|
|
1394
1540
|
_TURBULENCE.fields_by_name['kato_launder']._options = None
|
|
@@ -1396,39 +1542,39 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1396
1542
|
_TURBULENCE.fields_by_name['turbulence_model_constants']._options = None
|
|
1397
1543
|
_TURBULENCE.fields_by_name['turbulence_model_constants']._serialized_options = b'\202\262\031\004 \264\322\001\222\262\031;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1398
1544
|
_TURBULENCE.fields_by_name['C_sst_des1']._options = None
|
|
1399
|
-
_TURBULENCE.fields_by_name['C_sst_des1']._serialized_options = b'\202\262\031\013\n\t\t\366(\\\217\302\365\350?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031~\032|\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1545
|
+
_TURBULENCE.fields_by_name['C_sst_des1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\366(\\\217\302\365\350?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031~\032|\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1400
1546
|
_TURBULENCE.fields_by_name['C_sst_des2']._options = None
|
|
1401
|
-
_TURBULENCE.fields_by_name['C_sst_des2']._serialized_options = b'\202\262\031\013\n\t\t\205\353Q\270\036\205\343?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031~\032|\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1547
|
+
_TURBULENCE.fields_by_name['C_sst_des2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\205\353Q\270\036\205\343?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031~\032|\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1402
1548
|
_TURBULENCE.fields_by_name['sigma_k_1']._options = None
|
|
1403
|
-
_TURBULENCE.fields_by_name['sigma_k_1']._serialized_options = b'\202\262\031\013\n\t\t333333\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1549
|
+
_TURBULENCE.fields_by_name['sigma_k_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1404
1550
|
_TURBULENCE.fields_by_name['sigma_k_2']._options = None
|
|
1405
|
-
_TURBULENCE.fields_by_name['sigma_k_2']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1551
|
+
_TURBULENCE.fields_by_name['sigma_k_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1406
1552
|
_TURBULENCE.fields_by_name['sigma_w_1']._options = None
|
|
1407
|
-
_TURBULENCE.fields_by_name['sigma_w_1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1553
|
+
_TURBULENCE.fields_by_name['sigma_w_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1408
1554
|
_TURBULENCE.fields_by_name['sigma_w_2']._options = None
|
|
1409
|
-
_TURBULENCE.fields_by_name['sigma_w_2']._serialized_options = b'\202\262\031\013\n\t\t1\010\254\034Zd\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1555
|
+
_TURBULENCE.fields_by_name['sigma_w_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t1\010\254\034Zd\353?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1410
1556
|
_TURBULENCE.fields_by_name['beta_1']._options = None
|
|
1411
|
-
_TURBULENCE.fields_by_name['beta_1']._serialized_options = b'\202\262\031\013\n\t\t333333\263?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1557
|
+
_TURBULENCE.fields_by_name['beta_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\263?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1412
1558
|
_TURBULENCE.fields_by_name['beta_2']._options = None
|
|
1413
|
-
_TURBULENCE.fields_by_name['beta_2']._serialized_options = b'\202\262\031\013\n\t\tQ\332\033|a2\265?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1559
|
+
_TURBULENCE.fields_by_name['beta_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tQ\332\033|a2\265?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1414
1560
|
_TURBULENCE.fields_by_name['beta_star']._options = None
|
|
1415
|
-
_TURBULENCE.fields_by_name['beta_star']._serialized_options = b'\202\262\031\013\n\t\t\n\327\243p=\n\267?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1561
|
+
_TURBULENCE.fields_by_name['beta_star']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\n\327\243p=\n\267?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1416
1562
|
_TURBULENCE.fields_by_name['kappa_sst']._options = None
|
|
1417
|
-
_TURBULENCE.fields_by_name['kappa_sst']._serialized_options = b'\202\262\031\013\n\t\t=\n\327\243p=\332?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1563
|
+
_TURBULENCE.fields_by_name['kappa_sst']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t=\n\327\243p=\332?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1418
1564
|
_TURBULENCE.fields_by_name['a_1']._options = None
|
|
1419
|
-
_TURBULENCE.fields_by_name['a_1']._serialized_options = b'\202\262\031\013\n\t\t\327\243p=\n\327\323?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1565
|
+
_TURBULENCE.fields_by_name['a_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\327\243p=\n\327\323?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1420
1566
|
_TURBULENCE.fields_by_name['gamma_1']._options = None
|
|
1421
|
-
_TURBULENCE.fields_by_name['gamma_1']._serialized_options = b'\202\262\031\013\n\t\tr\034\307q\034\307\341?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1567
|
+
_TURBULENCE.fields_by_name['gamma_1']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tr\034\307q\034\307\341?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1422
1568
|
_TURBULENCE.fields_by_name['gamma_2']._options = None
|
|
1423
|
-
_TURBULENCE.fields_by_name['gamma_2']._serialized_options = b'\202\262\031\013\n\t\t)\\\217\302\365(\334?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1569
|
+
_TURBULENCE.fields_by_name['gamma_2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t)\\\217\302\365(\334?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n9\n7\010\307\244\003\022\025CUSTOM_TURB_CONSTANTS\032\032turbulence_model_constants'
|
|
1424
1570
|
_SOLUTIONCONTROLSFLUID.fields_by_name['pseudo_time_step_method']._options = None
|
|
1425
1571
|
_SOLUTIONCONTROLSFLUID.fields_by_name['pseudo_time_step_method']._serialized_options = b'\202\262\031\004 \340\332\003\222\262\031K\032I\nG\022E\n\035\n\033\010\200\371\003\022\006STEADY\032\rflow_behavior\n$\n\"\010\257\204\002\022\rTIME_IMPLICIT\032\rtime_marching'
|
|
1426
1572
|
_SOLUTIONCONTROLSFLUID.fields_by_name['cfl']._options = None
|
|
1427
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['cfl']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000I@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031*\n(\010\340\332\003\022\tCFL_BASED\032\027pseudo_time_step_method'
|
|
1573
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['cfl']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000I@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031*\n(\010\340\332\003\022\tCFL_BASED\032\027pseudo_time_step_method'
|
|
1428
1574
|
_SOLUTIONCONTROLSFLUID.fields_by_name['local_time_stepping']._options = None
|
|
1429
1575
|
_SOLUTIONCONTROLSFLUID.fields_by_name['local_time_stepping']._serialized_options = b'\202\262\031\004 \230\317\001\222\262\0312\0320\n*\n(\010\340\332\003\022\tCFL_BASED\032\027pseudo_time_step_method\n\002*\000'
|
|
1430
1576
|
_SOLUTIONCONTROLSFLUID.fields_by_name['pseudo_time_step_val']._options = None
|
|
1431
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['pseudo_time_step_val']._serialized_options = b'\202\262\031\013\n\t\t\215\355\265\240\367\306\260>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0317\n5\010\302\376\001\022\026FIXED_PSEUDO_TIME_STEP\032\027pseudo_time_step_method'
|
|
1577
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['pseudo_time_step_val']._serialized_options = b'\270\262\031\252\237\001\202\262\031\013\n\t\t\215\355\265\240\367\306\260>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\0317\n5\010\302\376\001\022\026FIXED_PSEUDO_TIME_STEP\032\027pseudo_time_step_method'
|
|
1432
1578
|
_SOLUTIONCONTROLSFLUID.fields_by_name['relaxation_method']._options = None
|
|
1433
1579
|
_SOLUTIONCONTROLSFLUID.fields_by_name['relaxation_method']._serialized_options = b'\202\262\031\004 \240\236\003\222\262\031G\022E\n\035\n\033\010\200\371\003\022\006STEADY\032\rflow_behavior\n$\n\"\010\257\204\002\022\rTIME_IMPLICIT\032\rtime_marching'
|
|
1434
1580
|
_SOLUTIONCONTROLSFLUID.fields_by_name['implicit_method']._options = None
|
|
@@ -1436,7 +1582,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1436
1582
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_iterations']._options = None
|
|
1437
1583
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_iterations']._serialized_options = b'\202\262\031\0020\017\212\262\031\t\t\000\000\000\000\000\000\000@\212\262\031\t\021\000\000\000\000\000@\217@\212\262\031\002\030\000\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1438
1584
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_tolerance']._options = None
|
|
1439
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_tolerance']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1585
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_tolerance']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1440
1586
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linear_solver_type']._options = None
|
|
1441
1587
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linear_solver_type']._serialized_options = b'\202\262\031\003 \321}\222\262\031#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1442
1588
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_pre_sweeps']._options = None
|
|
@@ -1448,7 +1594,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1448
1594
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_levels']._options = None
|
|
1449
1595
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_levels']._serialized_options = b'\202\262\031\0020\024\212\262\031\t\t\000\000\000\000\000\000$@\212\262\031\t\021\000\000\000\000\000\000D@\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1450
1596
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_relaxation']._options = None
|
|
1451
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_relaxation']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\350?\212\262\031\t\t\000\000\000\000\000\000\340?\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1597
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_relaxation']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\350?\212\262\031\t\t\000\000\000\000\000\000\340?\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1452
1598
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_cycle_type']._options = None
|
|
1453
1599
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_cycle_type']._serialized_options = b'\202\262\031\004 \375\324\001\222\262\031~\032|\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\nU\022S\n$\n\"\010\220\260\001\022\010AMG_AMGX\032\022linear_solver_type\n+\n)\010\251\216\002\022\017AMG_KRYLOV_AMGX\032\022linear_solver_type'
|
|
1454
1600
|
_SOLUTIONCONTROLSFLUID.fields_by_name['linsol_amg_freeze_levels_threshold']._options = None
|
|
@@ -1458,23 +1604,23 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1458
1604
|
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_update_method']._options = None
|
|
1459
1605
|
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_update_method']._serialized_options = b'\202\262\031\003 \366t\222\262\031\'\032%\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1460
1606
|
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_update_interval']._options = None
|
|
1461
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_update_interval']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031;\n9\010\366t\022\034EXPLICIT_INTERVAL_AND_WARMUP\032\026jacobian_update_method'
|
|
1607
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_update_interval']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031;\n9\010\366t\022\034EXPLICIT_INTERVAL_AND_WARMUP\032\026jacobian_update_method'
|
|
1462
1608
|
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_warmup_threshold']._options = None
|
|
1463
1609
|
_SOLUTIONCONTROLSFLUID.fields_by_name['jacobian_warmup_threshold']._serialized_options = b'\202\262\031\0030\254\002\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031;\n9\010\366t\022\034EXPLICIT_INTERVAL_AND_WARMUP\032\026jacobian_update_method'
|
|
1464
1610
|
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup']._options = None
|
|
1465
1611
|
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup']._serialized_options = b'\202\262\031\004 \230\376\001\222\262\031F\032D\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\n\035\n\033\010\200\371\003\022\006STEADY\032\rflow_behavior'
|
|
1466
1612
|
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup_initial_cfl']._options = None
|
|
1467
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup_initial_cfl']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031)\n\'\010\230\376\001\022\021ROBUST_STARTUP_ON\032\016robust_startup'
|
|
1613
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup_initial_cfl']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031)\n\'\010\230\376\001\022\021ROBUST_STARTUP_ON\032\016robust_startup'
|
|
1468
1614
|
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup_iterations']._options = None
|
|
1469
1615
|
_SOLUTIONCONTROLSFLUID.fields_by_name['robust_startup_iterations']._serialized_options = b'\202\262\031\0030\254\002\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031)\n\'\010\230\376\001\022\021ROBUST_STARTUP_ON\032\016robust_startup'
|
|
1470
1616
|
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_flow']._options = None
|
|
1471
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_flow']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\'\032%\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1617
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_flow']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\'\032%\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1472
1618
|
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_turb']._options = None
|
|
1473
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_turb']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031d\032b\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1619
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['relax_turb']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031d\032b\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1474
1620
|
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_flow']._options = None
|
|
1475
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_flow']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\'\032%\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1621
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_flow']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\'\032%\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method'
|
|
1476
1622
|
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_turb']._options = None
|
|
1477
|
-
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_turb']._serialized_options = b'\202\262\031\013\n\t\t\256G\341z\024\256\357?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031d\032b\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1623
|
+
_SOLUTIONCONTROLSFLUID.fields_by_name['update_limit_turb']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\256G\341z\024\256\357?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031d\032b\n#\n!\010\240\236\003\022\010IMPLICIT\032\021relaxation_method\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1478
1624
|
_SOLUTIONCONTROLSFLUID.fields_by_name['explicit_method']._options = None
|
|
1479
1625
|
_SOLUTIONCONTROLSFLUID.fields_by_name['explicit_method']._serialized_options = b'\202\262\031\004 \353\312\002\222\262\031M\022K\n#\n!\010\376\323\001\022\010EXPLICIT\032\021relaxation_method\n$\n\"\010\221\276\001\022\rTIME_EXPLICIT\032\rtime_marching'
|
|
1480
1626
|
_SOLUTIONCONTROLSFLUID.fields_by_name['controls_preset_version']._options = None
|
|
@@ -1486,7 +1632,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1486
1632
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_gmres_restart_iters']._options = None
|
|
1487
1633
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_gmres_restart_iters']._serialized_options = b'\202\262\031\00202\212\262\031\t\t\000\000\000\000\000\000>@\212\262\031\t\021\000\000\000\000\000\000Y@\212\262\031\002\030\000\222\262\0315\n3\010\367\335\002\022\024ADJOINT_METHOD_GMRES\032\027adjoint_solution_method'
|
|
1488
1634
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_second_order_damping']._options = None
|
|
1489
|
-
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_second_order_damping']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031/\032-\n\031\n\027\010\304\312\003\022\005ADA1D\032\nfloat_type\n\020\022\016\n\0142\n\n\010B\006\n\004heat'
|
|
1635
|
+
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_second_order_damping']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031/\032-\n\031\n\027\010\304\312\003\022\005ADA1D\032\nfloat_type\n\020\022\016\n\0142\n\n\010B\006\n\004heat'
|
|
1490
1636
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_frozen_turbulence']._options = None
|
|
1491
1637
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_frozen_turbulence']._serialized_options = b'\222\262\031P\032N\n/\032-\n\031\n\027\010\304\312\003\022\005ADA1D\032\nfloat_type\n\020\022\016\n\0142\n\n\010B\006\n\004heat\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model'
|
|
1492
1638
|
_ADJOINTCONTROLSFLUID.fields_by_name['adjoint_frozen_transition']._options = None
|
|
@@ -1494,21 +1640,21 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1494
1640
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['gradient_method']._options = None
|
|
1495
1641
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['gradient_method']._serialized_options = b'\202\262\031\003 \330v'
|
|
1496
1642
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['hlsq_blend']._options = None
|
|
1497
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['hlsq_blend']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\000@\212\262\031\002\030\000\222\262\031C\022A\n\035\n\033\010\233\350\003\022\004HLSQ\032\017gradient_method\n \n\036\010\360\212\003\022\007LC_HLSQ\032\017gradient_method'
|
|
1643
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['hlsq_blend']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000\000\000\000\000@\212\262\031\002\030\000\222\262\031C\022A\n\035\n\033\010\233\350\003\022\004HLSQ\032\017gradient_method\n \n\036\010\360\212\003\022\007LC_HLSQ\032\017gradient_method'
|
|
1498
1644
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['convective_schemes_density_based']._options = None
|
|
1499
1645
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['convective_schemes_density_based']._serialized_options = b'\202\262\031\004 \261\277\002'
|
|
1500
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['entropy_epsilon']._options = None
|
|
1501
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['entropy_epsilon']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based'
|
|
1502
1646
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['preconditioning']._options = None
|
|
1503
1647
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['preconditioning']._serialized_options = b'\202\262\031\004 \210\372\003\222\262\031\244\001\032\241\001\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\nG\022E\n$\n\"\010\257\204\002\022\rTIME_IMPLICIT\032\rtime_marching\n\035\n\033\010\200\371\003\022\006STEADY\032\rflow_behavior'
|
|
1504
1648
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['fds_min_low_dissipation']._options = None
|
|
1505
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['fds_min_low_dissipation']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031M\032K\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based'
|
|
1649
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['fds_min_low_dissipation']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031M\032K\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based'
|
|
1650
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['entropy_epsilon']._options = None
|
|
1651
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['entropy_epsilon']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\022^\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based'
|
|
1506
1652
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['skew_symmetric_formulation']._options = None
|
|
1507
1653
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['skew_symmetric_formulation']._serialized_options = b'\202\262\031\003 \276A\222\262\031-\n+\010\251\233\003\022\003EC2\032 convective_schemes_density_based'
|
|
1508
1654
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['artificial_viscosity_model']._options = None
|
|
1509
1655
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['artificial_viscosity_model']._serialized_options = b'\202\262\031\004 \212\216\001\222\262\031`\022^\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n-\n+\010\251\233\003\022\003EC2\032 convective_schemes_density_based'
|
|
1510
1656
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_hybrid']._options = None
|
|
1511
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_hybrid']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\207\001\022\204\001\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\nS\032Q\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1657
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_hybrid']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\207\001\022\204\001\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\nS\032Q\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1512
1658
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['upwind_scheme_order']._options = None
|
|
1513
1659
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['upwind_scheme_order']._serialized_options = b'\202\262\031\004 \365\210\002'
|
|
1514
1660
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['robust_dissipation']._options = None
|
|
@@ -1516,17 +1662,17 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1516
1662
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['limiter']._options = None
|
|
1517
1663
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['limiter']._serialized_options = b'\202\262\031\004 \350\332\001\222\262\031\301\001\032\276\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n\226\001\022\223\001\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1518
1664
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['limiter_kappa']._options = None
|
|
1519
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['limiter_kappa']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\
|
|
1665
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['limiter_kappa']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031V\022T\n#\n!\010\254\207\002\022\022VENKATAKRISHNAN_CV\032\007limiter\n-\n+\010\350\332\001\022\034INVARIANT_VENKATAKRISHNAN_CV\032\007limiter'
|
|
1520
1666
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['umuscl_chi']._options = None
|
|
1521
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['umuscl_chi']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\360\277\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\361\001\032\356\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n.2,\n*\n(\010\341\303\003\022\016ROBUST_DISS_ON\032\022robust_dissipation\n\226\001\022\223\001\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1667
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['umuscl_chi']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\360\277\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\361\001\032\356\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n.2,\n*\n(\010\341\303\003\022\016ROBUST_DISS_ON\032\022robust_dissipation\n\226\001\022\223\001\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1522
1668
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_ld2']._options = None
|
|
1523
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_ld2']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\212\001\032\207\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n`\022^\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n-\n+\010\251\233\003\022\003EC2\032 convective_schemes_density_based'
|
|
1669
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['alpha_ld2']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\212\001\032\207\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n`\022^\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n-\n+\010\251\233\003\022\003EC2\032 convective_schemes_density_based'
|
|
1524
1670
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['geometry_fixes']._options = None
|
|
1525
1671
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['geometry_fixes']._serialized_options = b'\202\262\031\004 \331\346\001\222\262\031\'\022%\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order'
|
|
1526
1672
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['geometry_fixes_mitigations']._options = None
|
|
1527
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['geometry_fixes_mitigations']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031)\n\'\010\331\346\001\022\021GEOMETRY_FIXES_ON\032\016geometry_fixes'
|
|
1673
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['geometry_fixes_mitigations']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031)\n\'\010\331\346\001\022\021GEOMETRY_FIXES_ON\032\016geometry_fixes'
|
|
1528
1674
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['order_blend']._options = None
|
|
1529
|
-
_SPATIALDISCRETIZATIONFLUID.fields_by_name['order_blend']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\301\001\032\276\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n\226\001\022\223\001\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1675
|
+
_SPATIALDISCRETIZATIONFLUID.fields_by_name['order_blend']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\301\001\032\276\001\n#\n!\010\365\210\002\022\006SECOND\032\023upwind_scheme_order\n\226\001\022\223\001\n-\n+\010\261\277\002\022\003ROE\032 convective_schemes_density_based\n-\n+\010\231\354\002\022\003LD2\032 convective_schemes_density_based\n3\n1\010\367\325\002\022\tRHIE_CHOW\032 convective_schemes_density_based'
|
|
1530
1676
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['discretization_preset_version']._options = None
|
|
1531
1677
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['discretization_preset_version']._serialized_options = b'\030\001\202\262\031\0020\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\002*\000'
|
|
1532
1678
|
_SPATIALDISCRETIZATIONFLUID.fields_by_name['spatial_discretization_fluid_preset']._options = None
|
|
@@ -1546,231 +1692,231 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1546
1692
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['roughness_control']._options = None
|
|
1547
1693
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['roughness_control']._serialized_options = b'\222\262\031\366\001\022\363\001\n\214\001\032\211\001\n\"2 \n\036\n\034\010\316\367\002\022\007LAMINAR\032\rviscous_model\n\"2 \n\036\n\034\010\307D\022\010INVISCID\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n\0362\034\n\032\n\030\010\243\033\022\004SLIP\032\rwall_momentum\nb\032`\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n!\n\037\010\311\241\003\022\nWALL_MODEL\032\rwall_momentum'
|
|
1548
1694
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['equivalent_sand_grain_roughness']._options = None
|
|
1549
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['equivalent_sand_grain_roughness']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021{\024\256G\341zt?\212\262\031\002\030\000\222\262\031\366\001\022\363\001\n\214\001\032\211\001\n\"2 \n\036\n\034\010\316\367\002\022\007LAMINAR\032\rviscous_model\n\"2 \n\036\n\034\010\307D\022\010INVISCID\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n\0362\034\n\032\n\030\010\243\033\022\004SLIP\032\rwall_momentum\nb\032`\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n!\n\037\010\311\241\003\022\nWALL_MODEL\032\rwall_momentum'
|
|
1695
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['equivalent_sand_grain_roughness']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021{\024\256G\341zt?\212\262\031\002\030\000\222\262\031\366\001\022\363\001\n\214\001\032\211\001\n\"2 \n\036\n\034\010\316\367\002\022\007LAMINAR\032\rviscous_model\n\"2 \n\036\n\034\010\307D\022\010INVISCID\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n\0362\034\n\032\n\030\010\243\033\022\004SLIP\032\rwall_momentum\nb\032`\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\n!\n\037\010\311\241\003\022\nWALL_MODEL\032\rwall_momentum'
|
|
1550
1696
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_integrated_heat_flux']._options = None
|
|
1551
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_integrated_heat_flux']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1697
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_integrated_heat_flux']._serialized_options = b'\270\262\031\230\367\003\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1552
1698
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['heat_transfer_coefficient']._options = None
|
|
1553
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['heat_transfer_coefficient']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0316\0324\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1699
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['heat_transfer_coefficient']._serialized_options = b'\270\262\031\301\367\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0316\0324\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1554
1700
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_energy']._options = None
|
|
1555
1701
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_energy']._serialized_options = b'\202\262\031\003 \256\006\222\262\031\201\002\032\376\001\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\nw\022u\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model\n\032\n\030\010\201\200\004\022\003LES\032\rviscous_model\n\036\n\034\010\316\367\002\022\007LAMINAR\032\rviscous_model'
|
|
1556
1702
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_heat_flux']._options = None
|
|
1557
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_heat_flux']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031Z\022X\n#\n!\010\256\006\022\017FIXED_HEAT_FLUX\032\013wall_energy\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1703
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_heat_flux']._serialized_options = b'\270\262\031\247`\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031Z\022X\n#\n!\010\256\006\022\017FIXED_HEAT_FLUX\032\013wall_energy\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary'
|
|
1558
1704
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_temperature']._options = None
|
|
1559
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_temperature']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\223\001\022\220\001\n&\n$\010\247\254\001\022\021FIXED_TEMPERATURE\032\013wall_energy\n2\n0\010\236\305\001\022\022HEAT_BC_ISOTHERMAL\032\026heat_physical_boundary\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1705
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['fixed_temperature']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\223\001\022\220\001\n&\n$\010\247\254\001\022\021FIXED_TEMPERATURE\032\013wall_energy\n2\n0\010\236\305\001\022\022HEAT_BC_ISOTHERMAL\032\026heat_physical_boundary\n2\n0\010\223\303\003\022\022HEAT_BC_CONVECTION\032\026heat_physical_boundary'
|
|
1560
1706
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_translation']._options = None
|
|
1561
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_translation']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1707
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_translation']._serialized_options = b'\270\262\031\005\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1562
1708
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_rotation_center']._options = None
|
|
1563
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_rotation_center']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1709
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_rotation_center']._serialized_options = b'\270\262\031\200P\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1564
1710
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_angular_velocity']._options = None
|
|
1565
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_angular_velocity']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1711
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['wall_movement_angular_velocity']._serialized_options = b'\270\262\031\372\306\003\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\'\032%\n\002*\000\n\037\n\035\010\333\371\003\022\004WALL\032\021physical_boundary'
|
|
1566
1712
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_momentum']._options = None
|
|
1567
1713
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_momentum']._serialized_options = b'\202\262\031\004 \212\262\003\222\262\031 \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1568
1714
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_magnitude']._options = None
|
|
1569
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_magnitude']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031L\032J\n&\n$\010\236\314\003\022\016VELOCITY_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1715
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_magnitude']._serialized_options = b'\270\262\031\005\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031L\032J\n&\n$\010\236\314\003\022\016VELOCITY_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1570
1716
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_magnitude_col']._options = None
|
|
1571
1717
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_magnitude_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\0312\0320\n&\n$\010\236\314\003\022\016VELOCITY_INLET\032\016inlet_momentum\n\006:\004\010\205\351\002'
|
|
1572
1718
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_components']._options = None
|
|
1573
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_components']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031W\032U\n1\n/\010\343\203\004\022\031VELOCITY_COMPONENTS_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1719
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_velocity_components']._serialized_options = b'\270\262\031\005\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031W\032U\n1\n/\010\343\203\004\022\031VELOCITY_COMPONENTS_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1574
1720
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_pressure_col']._options = None
|
|
1575
1721
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_pressure_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\0318\0326\n,\n*\010\212\262\003\022\024TOTAL_PRESSURE_INLET\032\016inlet_momentum\n\006:\004\010\205\351\002'
|
|
1576
1722
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['mass_flow_rate']._options = None
|
|
1577
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['mass_flow_rate']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031M\032K\n\'\n%\010\237\207\001\022\017MASS_FLOW_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1723
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['mass_flow_rate']._serialized_options = b'\270\262\031\013\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031M\032K\n\'\n%\010\237\207\001\022\017MASS_FLOW_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1578
1724
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_pressure']._options = None
|
|
1579
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_pressure']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\177\022}\nR\032P\n,\n*\010\212\262\003\022\024TOTAL_PRESSURE_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum'
|
|
1725
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_pressure']._serialized_options = b'\270\262\031\034\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\177\022}\nR\032P\n,\n*\010\212\262\003\022\024TOTAL_PRESSURE_INLET\032\016inlet_momentum\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum'
|
|
1580
1726
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['direction_specification']._options = None
|
|
1581
1727
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['direction_specification']._serialized_options = b'\202\262\031\004 \346\247\003\222\262\031[\032Y\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n523\n1\n/\010\343\203\004\022\031VELOCITY_COMPONENTS_INLET\032\016inlet_momentum'
|
|
1582
1728
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['flow_direction']._options = None
|
|
1583
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['flow_direction']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031W\032U\n1\n/\010\257\324\001\022\020DIRECTION_VECTOR\032\027direction_specification\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1729
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['flow_direction']._serialized_options = b'\270\262\031\324\232\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031W\032U\n1\n/\010\257\324\001\022\020DIRECTION_VECTOR\032\027direction_specification\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary'
|
|
1584
1730
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_bc']._options = None
|
|
1585
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_bc']._serialized_options = b'\222\262\031\
|
|
1731
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_bc']._serialized_options = b'\222\262\031\356\001\022\353\001\n\232\001\032\227\001\n \n\036\010\376\235\002\022\tTRANSIENT\032\rflow_behavior\ns\022q\n1\n/\010\244\354\003\022\021HEAT_BC_HEAT_FLUX\032\026heat_physical_boundary\n<\n:\010\347\341\003\022\034HEAT_BC_INTEGRATED_HEAT_FLUX\032\026heat_physical_boundary\nL\032J\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n&2$\n\"\n \010\231\257\001\022\nMACH_INLET\032\016inlet_momentum'
|
|
1586
1732
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_bc_data']._options = None
|
|
1587
1733
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_bc_data']._serialized_options = b'\222\262\031\006:\004\010\205\351\002\232\262\031\006\n\002\022\000 \001'
|
|
1588
1734
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_type']._options = None
|
|
1589
1735
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['profile_type']._serialized_options = b'\202\262\031\004 \207\207\004\222\262\031\022\022\020\n\006:\004\010\205\351\002\n\006:\004\010\351\341\002'
|
|
1590
1736
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_energy']._options = None
|
|
1591
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_energy']._serialized_options = b'\202\262\031\004 \236\361\003\222\262\031\
|
|
1737
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['inlet_energy']._serialized_options = b'\202\262\031\004 \236\361\003\222\262\031\211\001\032\206\001\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1592
1738
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_temperature']._options = None
|
|
1593
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_temperature']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\300r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\270\001\032\265\001\n-\n+\010\236\361\003\022\027TOTAL_TEMPERATURE_INLET\032\014inlet_energy\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1739
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_temperature']._serialized_options = b'\270\262\031\035\202\262\031\013\n\t\t\000\000\000\000\000\300r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\270\001\032\265\001\n-\n+\010\236\361\003\022\027TOTAL_TEMPERATURE_INLET\032\014inlet_energy\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1594
1740
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_temperature_col']._options = None
|
|
1595
1741
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['total_temperature_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031\236\001\032\233\001\n-\n+\010\236\361\003\022\027TOTAL_TEMPERATURE_INLET\032\014inlet_energy\n\006:\004\010\205\351\002\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1596
1742
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_strategy']._options = None
|
|
1597
1743
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_strategy']._serialized_options = b'\202\262\031\004 \360\267\003\222\262\031!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary'
|
|
1598
1744
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_target_mass_flow_rate']._options = None
|
|
1599
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_target_mass_flow_rate']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\241\001\032\236\001\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\ny\022w\n5\n3\010\333\252\001\022\034OUTLET_TARGET_MASS_FLOW_RATE\032\017outlet_strategy\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1745
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_target_mass_flow_rate']._serialized_options = b'\270\262\031\013\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\241\001\032\236\001\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\ny\022w\n5\n3\010\333\252\001\022\034OUTLET_TARGET_MASS_FLOW_RATE\032\017outlet_strategy\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1600
1746
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_pressure']._options = None
|
|
1601
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_pressure']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031e\032c\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1747
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_pressure']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031e\032c\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1602
1748
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_temperature']._options = None
|
|
1603
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_temperature']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031e\032c\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1749
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_reference_temperature']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031e\032c\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\n>\n<\010\202p\022&OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE\032\017outlet_strategy'
|
|
1604
1750
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_pressure']._options = None
|
|
1605
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_pressure']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031%\032#\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary'
|
|
1751
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_pressure']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031%\032#\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary'
|
|
1606
1752
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['fan_curve_table_data']._options = None
|
|
1607
1753
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['fan_curve_table_data']._serialized_options = b'\222\262\031\210\001\022\205\001\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model\232\262\031\n\n\003\010\332\004\022\003\010\331\004'
|
|
1608
1754
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['head_loss_coefficient']._options = None
|
|
1609
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['head_loss_coefficient']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\210\001\022\205\001\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model'
|
|
1755
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['head_loss_coefficient']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\210\001\022\205\001\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model'
|
|
1610
1756
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_pressure_constraint']._options = None
|
|
1611
1757
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['outlet_pressure_constraint']._serialized_options = b'\202\262\031\004 \206\250\002\222\262\031T\032R\n!\n\037\010\342\257\003\022\006OUTLET\032\021physical_boundary\n-2+\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy'
|
|
1612
1758
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_momentum']._options = None
|
|
1613
1759
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_momentum']._serialized_options = b'\202\262\031\004 \231\331\002\222\262\031#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1614
1760
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_mach_number']._options = None
|
|
1615
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_mach_number']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031\224\001\032\221\001\n\200\001\022~\nX\032V\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n/\n-\010\231\331\002\022\024FARFIELD_MACH_NUMBER\032\021farfield_momentum\n\"\n \010\231\257\001\022\nMACH_INLET\032\016inlet_momentum\n\0142\n\n\010B\006\n\004heat'
|
|
1761
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_mach_number']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031\224\001\032\221\001\n\200\001\022~\nX\032V\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n/\n-\010\231\331\002\022\024FARFIELD_MACH_NUMBER\032\021farfield_momentum\n\"\n \010\231\257\001\022\nMACH_INLET\032\016inlet_momentum\n\0142\n\n\010B\006\n\004heat'
|
|
1616
1762
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_velocity_magnitude']._options = None
|
|
1617
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_velocity_magnitude']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031_\032]\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n6\n4\010\313\257\002\022\033FARFIELD_VELOCITY_MAGNITUDE\032\021farfield_momentum'
|
|
1763
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_velocity_magnitude']._serialized_options = b'\270\262\031\005\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031_\032]\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n6\n4\010\313\257\002\022\033FARFIELD_VELOCITY_MAGNITUDE\032\021farfield_momentum'
|
|
1618
1764
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_pressure']._options = None
|
|
1619
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_pressure']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031
|
|
1765
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_pressure']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\356\001\032\353\001\n\332\001\022\327\001\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n\"\n \010\231\257\001\022\nMACH_INLET\032\016inlet_momentum\n\213\001\032\210\001\n]\022[\n&\n$\010\236\314\003\022\016VELOCITY_INLET\032\016inlet_momentum\n1\n/\010\343\203\004\022\031VELOCITY_COMPONENTS_INLET\032\016inlet_momentum\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n\0142\n\n\010B\006\n\004heat'
|
|
1620
1766
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_temperature']._options = None
|
|
1621
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_temperature']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\
|
|
1767
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_temperature']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\240\001\032\235\001\n\214\001\032\211\001\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n\0142\n\n\010B\006\n\004heat'
|
|
1622
1768
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['far_field_flow_direction_specification']._options = None
|
|
1623
1769
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['far_field_flow_direction_specification']._serialized_options = b'\202\262\031\004 \206\355\001\222\262\031#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1624
1770
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_flow_direction']._options = None
|
|
1625
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_flow_direction']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031k\032i\nB\n@\010\206\355\001\022\022FARFIELD_DIRECTION\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1771
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_flow_direction']._serialized_options = b'\270\262\031\324\232\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031k\032i\nB\n@\010\206\355\001\022\022FARFIELD_DIRECTION\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1626
1772
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_alpha']._options = None
|
|
1627
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_alpha']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n?\n=\010\201\351\003\022\017FARFIELD_ANGLES\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1773
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_alpha']._serialized_options = b'\270\262\031\306\316\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n?\n=\010\201\351\003\022\017FARFIELD_ANGLES\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1628
1774
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_beta']._options = None
|
|
1629
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_beta']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n?\n=\010\201\351\003\022\017FARFIELD_ANGLES\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1775
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['farfield_angle_beta']._serialized_options = b'\270\262\031\306\316\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031h\032f\n?\n=\010\201\351\003\022\017FARFIELD_ANGLES\032&far_field_flow_direction_specification\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary'
|
|
1630
1776
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_specification_spalart_allmaras']._options = None
|
|
1631
1777
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_specification_spalart_allmaras']._serialized_options = b'\202\262\031\004 \337\213\003\222\262\031\266\001\032\263\001\nI\022G\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1632
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_nu_tilde']._options = None
|
|
1633
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_nu_tilde']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031D\032B\n@\n>\010\3444\022\016BC_SA_VARIABLE\032)turbulence_specification_spalart_allmaras'
|
|
1634
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_nu_tilde_col']._options = None
|
|
1635
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_nu_tilde_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031L\032J\n@\n>\010\3444\022\016BC_SA_VARIABLE\032)turbulence_specification_spalart_allmaras\n\006:\004\010\205\351\002'
|
|
1636
1778
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_specification_komega']._options = None
|
|
1637
1779
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_specification_komega']._serialized_options = b'\202\262\031\004 \216\215\002\222\262\031\260\001\032\255\001\nI\022G\n#\n!\010\240\373\001\022\010FARFIELD\032\021physical_boundary\n \n\036\010\321\354\002\022\005INLET\032\021physical_boundary\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1638
1780
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity_ratio']._options = None
|
|
1639
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity_ratio']._serialized_options = b'\202\262\031\013\n\t\t\306\270\'\014\244\357\312?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\260\001\022\255\001\nO\nM\010\337\213\003\022\034TURBULENT_VISCOSITY_RATIO_SA\032)turbulence_specification_spalart_allmaras\nZ\nX\010\216\215\002\0221BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1781
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity_ratio']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\306\270\'\014\244\357\312?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\260\001\022\255\001\nO\nM\010\337\213\003\022\034TURBULENT_VISCOSITY_RATIO_SA\032)turbulence_specification_spalart_allmaras\nZ\nX\010\216\215\002\0221BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1640
1782
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity']._options = None
|
|
1641
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity']._serialized_options = b'\202\262\031\013\n\t\t\271\300L\261\206\226\317>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\244\001\022\241\001\nI\nG\010\225\232\003\022\026TURBULENT_VISCOSITY_SA\032)turbulence_specification_spalart_allmaras\nT\nR\010\257\204\004\022+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1783
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulent_viscosity']._serialized_options = b'\270\262\031\220\013\202\262\031\013\n\t\t\271\300L\261\206\226\317>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\244\001\022\241\001\nI\nG\010\225\232\003\022\026TURBULENT_VISCOSITY_SA\032)turbulence_specification_spalart_allmaras\nT\nR\010\257\204\004\022+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1642
1784
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_intensity']._options = None
|
|
1643
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_intensity']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\265\001\022\262\001\nT\nR\010\257\204\004\022+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega\nZ\nX\010\216\215\002\0221BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1785
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['turbulence_intensity']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\265\001\022\262\001\nT\nR\010\257\204\004\022+BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega\nZ\nX\010\216\215\002\0221BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032\037turbulence_specification_komega'
|
|
1786
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_nu_tilde']._options = None
|
|
1787
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_nu_tilde']._serialized_options = b'\270\262\031\007\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031D\032B\n@\n>\010\3444\022\016BC_SA_VARIABLE\032)turbulence_specification_spalart_allmaras'
|
|
1788
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_nu_tilde_col']._options = None
|
|
1789
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_nu_tilde_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031L\032J\n@\n>\010\3444\022\016BC_SA_VARIABLE\032)turbulence_specification_spalart_allmaras\n\006:\004\010\205\351\002'
|
|
1644
1790
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_tke']._options = None
|
|
1645
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_tke']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1646
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_omega']._options = None
|
|
1647
|
-
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_omega']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1791
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_tke']._serialized_options = b'\270\262\031\271\254\002\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1648
1792
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_tke_col']._options = None
|
|
1649
1793
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_tke_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031\260\001\032\255\001\n\006:\004\010\205\351\002\n\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1794
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_omega']._options = None
|
|
1795
|
+
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_uniform_omega']._serialized_options = b'\270\262\031\217x\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1650
1796
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_omega_col']._options = None
|
|
1651
1797
|
_BOUNDARYCONDITIONSFLUID.fields_by_name['bc_omega_col']._serialized_options = b'\202\262\031\0020\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000j\370@\212\262\031\002\030\000\222\262\031\260\001\032\255\001\n\006:\004\010\205\351\002\n\242\001\032\237\001\n;\n9\010\354R\022\023BC_KOMEGA_VARIABLES\032\037turbulence_specification_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1652
1798
|
_INITIALIZATIONFLUID.fields_by_name['initialization_type']._options = None
|
|
1653
1799
|
_INITIALIZATIONFLUID.fields_by_name['initialization_type']._serialized_options = b'\202\262\031\004 \242\276\001'
|
|
1654
1800
|
_INITIALIZATIONFLUID.fields_by_name['uniform_v']._options = None
|
|
1655
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_v']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type'
|
|
1801
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_v']._serialized_options = b'\270\262\031\005\202\262\031#\022!\n\t\t\000\000\000\000\000\000\360?\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type'
|
|
1656
1802
|
_INITIALIZATIONFLUID.fields_by_name['uniform_t']._options = None
|
|
1657
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_t']._serialized_options = b'\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\344\001\022\341\001\n\324\001\032\321\001\nk\022i\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n\010B\006\n\004heat'
|
|
1803
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_t']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\tfffff\002r@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\344\001\022\341\001\n\324\001\032\321\001\nk\022i\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\nb\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n\010B\006\n\004heat'
|
|
1658
1804
|
_INITIALIZATIONFLUID.fields_by_name['potential_flow_pressure_initialization']._options = None
|
|
1659
1805
|
_INITIALIZATIONFLUID.fields_by_name['potential_flow_pressure_initialization']._serialized_options = b'\202\262\031\003 \3417\222\262\031\252\001\032\247\001\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\ni\022g\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1660
1806
|
_INITIALIZATIONFLUID.fields_by_name['uniform_p']._options = None
|
|
1661
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_p']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\320\001\022\315\001\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n\235\001\032\232\001\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\n\\2Z\nX\nV\010\365B\022)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\032&potential_flow_pressure_initialization'
|
|
1807
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_p']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\320\274\370@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\320\001\022\315\001\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n\235\001\032\232\001\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\n\\2Z\nX\nV\010\365B\022)INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON\032&potential_flow_pressure_initialization'
|
|
1662
1808
|
_INITIALIZATIONFLUID.fields_by_name['turbulent_variable_initialization_type_sa']._options = None
|
|
1663
1809
|
_INITIALIZATIONFLUID.fields_by_name['turbulent_variable_initialization_type_sa']._serialized_options = b'\202\262\031\004 \353\303\001\222\262\031\312\001\032\307\001\n\231\001\022\226\001\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n+\n)\010\322\034\022\017FARFIELD_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model'
|
|
1664
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_nu_tilde']._options = None
|
|
1665
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_nu_tilde']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\260\001\032\255\001\nC\nA\010\263\200\004\022\020INIT_SA_VARIABLE\032)turbulent_variable_initialization_type_sa\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1666
1810
|
_INITIALIZATIONFLUID.fields_by_name['turbulent_variable_initialization_type_komega']._options = None
|
|
1667
1811
|
_INITIALIZATIONFLUID.fields_by_name['turbulent_variable_initialization_type_komega']._serialized_options = b'\202\262\031\003 \235\023\222\262\031\304\001\032\301\001\n\231\001\022\226\001\n+\n)\010\242\276\001\022\016UNIFORM_VALUES\032\023initialization_type\n+\n)\010\322\034\022\017FARFIELD_VALUES\032\023initialization_type\n:\n8\010\277\272\002\022\035INITIALIZATION_POTENTIAL_FLOW\032\023initialization_type\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model'
|
|
1668
1812
|
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity_ratio']._options = None
|
|
1669
|
-
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity_ratio']._serialized_options = b'\202\262\031\013\n\t\t\306\270\'\014\244\357\312?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\304\001\022\301\001\ni\ng\010\235\023\0223INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\nT\nR\010\353\303\001\022!INIT_TURBULENT_VISCOSITY_RATIO_SA\032)turbulent_variable_initialization_type_sa'
|
|
1813
|
+
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity_ratio']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\306\270\'\014\244\357\312?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\304\001\022\301\001\ni\ng\010\235\023\0223INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\nT\nR\010\353\303\001\022!INIT_TURBULENT_VISCOSITY_RATIO_SA\032)turbulent_variable_initialization_type_sa'
|
|
1670
1814
|
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity']._options = None
|
|
1671
|
-
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity']._serialized_options = b'\202\262\031\013\n\t\t\271\300L\261\206\226\317>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\270\001\022\265\001\nc\na\010\245R\022-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\nN\nL\010\363\275\003\022\033INIT_TURBULENT_VISCOSITY_SA\032)turbulent_variable_initialization_type_sa'
|
|
1815
|
+
_INITIALIZATIONFLUID.fields_by_name['init_turbulent_viscosity']._serialized_options = b'\270\262\031\220\013\202\262\031\013\n\t\t\271\300L\261\206\226\317>\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\270\001\022\265\001\nc\na\010\245R\022-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\nN\nL\010\363\275\003\022\033INIT_TURBULENT_VISCOSITY_SA\032)turbulent_variable_initialization_type_sa'
|
|
1672
1816
|
_INITIALIZATIONFLUID.fields_by_name['init_turbulence_intensity']._options = None
|
|
1673
|
-
_INITIALIZATIONFLUID.fields_by_name['init_turbulence_intensity']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\323\001\022\320\001\nc\na\010\245R\022-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\ni\ng\010\235\023\0223INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega'
|
|
1817
|
+
_INITIALIZATIONFLUID.fields_by_name['init_turbulence_intensity']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\323\001\022\320\001\nc\na\010\245R\022-INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega\ni\ng\010\235\023\0223INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA\032-turbulent_variable_initialization_type_komega'
|
|
1818
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_nu_tilde']._options = None
|
|
1819
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_nu_tilde']._serialized_options = b'\270\262\031\007\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\260\001\032\255\001\nC\nA\010\263\200\004\022\020INIT_SA_VARIABLE\032)turbulent_variable_initialization_type_sa\n)\n\'\010\312\025\022\020SPALART_ALLMARAS\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1674
1820
|
_INITIALIZATIONFLUID.fields_by_name['uniform_tke']._options = None
|
|
1675
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_tke']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\263\001\032\260\001\nL\nJ\010\205\262\001\022\025INIT_KOMEGA_VARIABLES\032-turbulent_variable_initialization_type_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1821
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_tke']._serialized_options = b'\270\262\031\271\254\002\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\263\001\032\260\001\nL\nJ\010\205\262\001\022\025INIT_KOMEGA_VARIABLES\032-turbulent_variable_initialization_type_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1676
1822
|
_INITIALIZATIONFLUID.fields_by_name['uniform_omega']._options = None
|
|
1677
|
-
_INITIALIZATIONFLUID.fields_by_name['uniform_omega']._serialized_options = b'\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\263\001\032\260\001\nL\nJ\010\205\262\001\022\025INIT_KOMEGA_VARIABLES\032-turbulent_variable_initialization_type_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1823
|
+
_INITIALIZATIONFLUID.fields_by_name['uniform_omega']._serialized_options = b'\270\262\031\217x\202\262\031\013\n\t\tu|e\037u\330\005?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\263\001\032\260\001\nL\nJ\010\205\262\001\022\025INIT_KOMEGA_VARIABLES\032-turbulent_variable_initialization_type_komega\n#\n!\010\226p\022\nKOMEGA_SST\032\020turbulence_model\n;\0229\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model\n\032\n\030\010\307\263\003\022\003DES\032\rviscous_model'
|
|
1678
1824
|
_INITIALIZATIONFLUID.fields_by_name['verification_solutions']._options = None
|
|
1679
1825
|
_INITIALIZATIONFLUID.fields_by_name['verification_solutions']._serialized_options = b'\202\262\031\004 \362\304\003\222\262\0319\0327\n\002*\000\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type'
|
|
1680
1826
|
_INITIALIZATIONFLUID.fields_by_name['tgv_rho']._options = None
|
|
1681
|
-
_INITIALIZATIONFLUID.fields_by_name['tgv_rho']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1827
|
+
_INITIALIZATIONFLUID.fields_by_name['tgv_rho']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1682
1828
|
_INITIALIZATIONFLUID.fields_by_name['tgv_p']._options = None
|
|
1683
|
-
_INITIALIZATIONFLUID.fields_by_name['tgv_p']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000Y@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1829
|
+
_INITIALIZATIONFLUID.fields_by_name['tgv_p']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\000Y@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1684
1830
|
_INITIALIZATIONFLUID.fields_by_name['tgv_v']._options = None
|
|
1685
|
-
_INITIALIZATIONFLUID.fields_by_name['tgv_v']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1831
|
+
_INITIALIZATIONFLUID.fields_by_name['tgv_v']._serialized_options = b'\270\262\031\005\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031j\032h\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n3\n1\010\362\304\003\022\023TAYLOR_GREEN_VORTEX\032\026verification_solutions'
|
|
1686
1832
|
_INITIALIZATIONFLUID.fields_by_name['shocktube_p1']._options = None
|
|
1687
|
-
_INITIALIZATIONFLUID.fields_by_name['shocktube_p1']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1833
|
+
_INITIALIZATIONFLUID.fields_by_name['shocktube_p1']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\232\231\231\231\231\231\271?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1688
1834
|
_INITIALIZATIONFLUID.fields_by_name['shocktube_p4']._options = None
|
|
1689
|
-
_INITIALIZATIONFLUID.fields_by_name['shocktube_p4']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1835
|
+
_INITIALIZATIONFLUID.fields_by_name['shocktube_p4']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1690
1836
|
_INITIALIZATIONFLUID.fields_by_name['shocktube_t1']._options = None
|
|
1691
|
-
_INITIALIZATIONFLUID.fields_by_name['shocktube_t1']._serialized_options = b'\202\262\031\013\n\t\t\365\363\246\"\025\306f?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1837
|
+
_INITIALIZATIONFLUID.fields_by_name['shocktube_t1']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t\365\363\246\"\025\306f?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1692
1838
|
_INITIALIZATIONFLUID.fields_by_name['shocktube_t4']._options = None
|
|
1693
|
-
_INITIALIZATIONFLUID.fields_by_name['shocktube_t4']._serialized_options = b'\202\262\031\013\n\t\t\247\"\025\306\026\202l?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1839
|
+
_INITIALIZATIONFLUID.fields_by_name['shocktube_t4']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t\247\"\025\306\026\202l?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031`\032^\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n)\n\'\010\222<\022\nSHOCK_TUBE\032\026verification_solutions'
|
|
1694
1840
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_p1']._options = None
|
|
1695
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_p1']._serialized_options = b'\202\262\031\013\n\t\t{\203/L\246\252$@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1841
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_p1']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t{\203/L\246\252$@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1696
1842
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho1']._options = None
|
|
1697
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho1']._serialized_options = b'\202\262\031\013\n\t\to\366\007\312m\333\016@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1843
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho1']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\to\366\007\312m\333\016@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1698
1844
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_m1']._options = None
|
|
1699
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_m1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\010@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1845
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_m1']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\000\000\000\000\000\000\010@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1700
1846
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_p2']._options = None
|
|
1701
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_p2']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1847
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_p2']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1702
1848
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho2']._options = None
|
|
1703
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho2']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1849
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_rho2']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1704
1850
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_m2']._options = None
|
|
1705
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_m2']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1851
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_m2']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1706
1852
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_amp']._options = None
|
|
1707
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_amp']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1853
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_amp']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1708
1854
|
_INITIALIZATIONFLUID.fields_by_name['shuosher_kx']._options = None
|
|
1709
|
-
_INITIALIZATIONFLUID.fields_by_name['shuosher_kx']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\024@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1855
|
+
_INITIALIZATIONFLUID.fields_by_name['shuosher_kx']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\024@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031_\032]\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n(\n&\010\370Q\022\tSHU_OSHER\032\026verification_solutions'
|
|
1710
1856
|
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_p']._options = None
|
|
1711
|
-
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_p']._serialized_options = b'\202\262\031\013\n\t\t\263\014q\254\213\333\346?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1857
|
+
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_p']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\263\014q\254\213\333\346?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1712
1858
|
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_t']._options = None
|
|
1713
|
-
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_t']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341zd?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1859
|
+
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_t']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t{\024\256G\341zd?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1714
1860
|
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_m']._options = None
|
|
1715
|
-
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_m']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1861
|
+
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_m']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1716
1862
|
_INITIALIZATIONFLUID.fields_by_name['acousticwave_amp']._options = None
|
|
1717
|
-
_INITIALIZATIONFLUID.fields_by_name['acousticwave_amp']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1863
|
+
_INITIALIZATIONFLUID.fields_by_name['acousticwave_amp']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1718
1864
|
_INITIALIZATIONFLUID.fields_by_name['vorticitywave_amp']._options = None
|
|
1719
|
-
_INITIALIZATIONFLUID.fields_by_name['vorticitywave_amp']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1865
|
+
_INITIALIZATIONFLUID.fields_by_name['vorticitywave_amp']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1720
1866
|
_INITIALIZATIONFLUID.fields_by_name['entropywave_amp']._options = None
|
|
1721
|
-
_INITIALIZATIONFLUID.fields_by_name['entropywave_amp']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1867
|
+
_INITIALIZATIONFLUID.fields_by_name['entropywave_amp']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t{\024\256G\341z\204?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1722
1868
|
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_kx']._options = None
|
|
1723
|
-
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_kx']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\024@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1869
|
+
_INITIALIZATIONFLUID.fields_by_name['disturbancewave_kx']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\024@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031g\032e\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n0\n.\010\260\221\002\022\020DISTURBANCE_WAVE\032\026verification_solutions'
|
|
1724
1870
|
_INITIALIZATIONFLUID.fields_by_name['normalshock_p1']._options = None
|
|
1725
|
-
_INITIALIZATIONFLUID.fields_by_name['normalshock_p1']._serialized_options = b'\202\262\031\013\n\t\t\263\014q\254\213\333\346?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1871
|
+
_INITIALIZATIONFLUID.fields_by_name['normalshock_p1']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\263\014q\254\213\333\346?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1726
1872
|
_INITIALIZATIONFLUID.fields_by_name['normalshock_t1']._options = None
|
|
1727
|
-
_INITIALIZATIONFLUID.fields_by_name['normalshock_t1']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341zd?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1873
|
+
_INITIALIZATIONFLUID.fields_by_name['normalshock_t1']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t{\024\256G\341zd?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1728
1874
|
_INITIALIZATIONFLUID.fields_by_name['normalshock_m1']._options = None
|
|
1729
|
-
_INITIALIZATIONFLUID.fields_by_name['normalshock_m1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1875
|
+
_INITIALIZATIONFLUID.fields_by_name['normalshock_m1']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\000\000\000\000\000\000\000@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031b\032`\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n+\n)\010\233b\022\014NORMAL_SHOCK\032\026verification_solutions'
|
|
1730
1876
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_p1']._options = None
|
|
1731
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_p1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1877
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_p1']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1732
1878
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_t1']._options = None
|
|
1733
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_t1']._serialized_options = b'\202\262\031\013\n\t\ty\351&1\010\254l?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1879
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_t1']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\ty\351&1\010\254l?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1734
1880
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_m1']._options = None
|
|
1735
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_m1']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\370?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1881
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_m1']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\000\000\000\000\000\000\370?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1736
1882
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_mv']._options = None
|
|
1737
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_mv']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1883
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_mv']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\232\231\231\231\231\231\311?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1738
1884
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_xv']._options = None
|
|
1739
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_xv']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1885
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_xv']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\320?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1740
1886
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_zv']._options = None
|
|
1741
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_zv']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1887
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_zv']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1742
1888
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_av']._options = None
|
|
1743
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_av']._serialized_options = b'\202\262\031\013\n\t\t333333\263?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1889
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_av']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t333333\263?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1744
1890
|
_INITIALIZATIONFLUID.fields_by_name['shockvortex_bv']._options = None
|
|
1745
|
-
_INITIALIZATIONFLUID.fields_by_name['shockvortex_bv']._serialized_options = b'\202\262\031\013\n\t\tffffff\306?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1891
|
+
_INITIALIZATIONFLUID.fields_by_name['shockvortex_bv']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\tffffff\306?\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031c\032a\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n,\n*\010\353\315\003\022\014SHOCK_VORTEX\032\026verification_solutions'
|
|
1746
1892
|
_INITIALIZATIONFLUID.fields_by_name['mms_k']._options = None
|
|
1747
|
-
_INITIALIZATIONFLUID.fields_by_name['mms_k']._serialized_options = b'\202\262\031\013\n\t\t\030-DT\373!\t@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\214\001\032\211\001\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\nT\022R\n)\n\'\010\342\326\002\022\tEULER_MMS\032\026verification_solutions\n%\n#\010\357\030\022\006NS_MMS\032\026verification_solutions'
|
|
1893
|
+
_INITIALIZATIONFLUID.fields_by_name['mms_k']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\030-DT\373!\t@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\214\001\032\211\001\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\nT\022R\n)\n\'\010\342\326\002\022\tEULER_MMS\032\026verification_solutions\n%\n#\010\357\030\022\006NS_MMS\032\026verification_solutions'
|
|
1748
1894
|
_INITIALIZATIONFLUID.fields_by_name['mms_a']._options = None
|
|
1749
|
-
_INITIALIZATIONFLUID.fields_by_name['mms_a']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000$@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\214\001\032\211\001\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\nT\022R\n)\n\'\010\342\326\002\022\tEULER_MMS\032\026verification_solutions\n%\n#\010\357\030\022\006NS_MMS\032\026verification_solutions'
|
|
1895
|
+
_INITIALIZATIONFLUID.fields_by_name['mms_a']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000$@\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\214\001\032\211\001\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\nT\022R\n)\n\'\010\342\326\002\022\tEULER_MMS\032\026verification_solutions\n%\n#\010\357\030\022\006NS_MMS\032\026verification_solutions'
|
|
1750
1896
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_minfty']._options = None
|
|
1751
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_minfty']._serialized_options = b'\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t{\024\256G\341z\204?\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1897
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_minfty']._serialized_options = b'\270\262\031\006\202\262\031\013\n\t\t\232\231\231\231\231\231\251?\212\262\031\t\t{\024\256G\341z\204?\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1752
1898
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_pinfty']._options = None
|
|
1753
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_pinfty']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000j\370@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1899
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_pinfty']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000j\370@\212\262\031\t\t\000\000\000\000\000\000\360?\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1754
1900
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_tinfty']._options = None
|
|
1755
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_tinfty']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\300r@\212\262\031\t\t\000\000\000\000\000\000$@\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1901
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_tinfty']._serialized_options = b'\270\262\031\003\202\262\031\013\n\t\t\000\000\000\000\000\300r@\212\262\031\t\t\000\000\000\000\000\000$@\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1756
1902
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xv']._options = None
|
|
1757
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xv']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1903
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xv']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1758
1904
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yv']._options = None
|
|
1759
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yv']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1905
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yv']._serialized_options = b'\270\262\031\200P\202\262\031\013\n\t\t\000\000\000\000\000\000\340?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1760
1906
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xflowdir']._options = None
|
|
1761
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xflowdir']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1907
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_xflowdir']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\360?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1762
1908
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yflowdir']._options = None
|
|
1763
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yflowdir']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1909
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_yflowdir']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1764
1910
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_rvortex']._options = None
|
|
1765
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_rvortex']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341zt?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1911
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_rvortex']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t{\024\256G\341zt?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1766
1912
|
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_betavortex']._options = None
|
|
1767
|
-
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_betavortex']._serialized_options = b'\202\262\031\013\n\t\t{\024\256G\341z\224?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1913
|
+
_INITIALIZATIONFLUID.fields_by_name['inviscid_vortex_betavortex']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t{\024\256G\341z\224?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031f\032d\n1\n/\010\207Y\022\025VERIFICATION_SOLUTION\032\023initialization_type\n/\n-\010\301\211\002\022\017INVISCID_VORTEX\032\026verification_solutions'
|
|
1768
1914
|
_INITIALIZATIONFLUID.fields_by_name['existing_solution_url']._options = None
|
|
1769
1915
|
_INITIALIZATIONFLUID.fields_by_name['existing_solution_url']._serialized_options = b'\222\262\031.\n,\010\344\321\001\022\021EXISTING_SOLUTION\032\023initialization_type'
|
|
1770
1916
|
_INITIALIZATIONFLUID.fields_by_name['existing_solution_id']._options = None
|
|
1771
1917
|
_INITIALIZATIONFLUID.fields_by_name['existing_solution_id']._serialized_options = b'\222\262\031\002*\000'
|
|
1772
1918
|
_BLADEELEMENTAIRFOILDATA.fields_by_name['airfoil_radial_station']._options = None
|
|
1773
|
-
_BLADEELEMENTAIRFOILDATA.fields_by_name['airfoil_radial_station']._serialized_options = b'\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000'
|
|
1919
|
+
_BLADEELEMENTAIRFOILDATA.fields_by_name['airfoil_radial_station']._serialized_options = b'\270\262\031*\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000'
|
|
1774
1920
|
_BLADEELEMENTAIRFOILDATA.fields_by_name['airfoil_performance_data']._options = None
|
|
1775
1921
|
_BLADEELEMENTAIRFOILDATA.fields_by_name['airfoil_performance_data']._serialized_options = b'\232\262\031\026\n\004\010\306\316\002\n\002\010\006\022\002\010\022\022\002\010\023\022\002\010#'
|
|
1776
1922
|
_PHYSICALBEHAVIOR.fields_by_name['physical_behavior_id']._options = None
|
|
@@ -1782,51 +1928,51 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1782
1928
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_model']._options = None
|
|
1783
1929
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_model']._serialized_options = b'\202\262\031\004 \310\262\003\222\262\0314\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model'
|
|
1784
1930
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_thrust']._options = None
|
|
1785
|
-
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_thrust']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\342\002\022\337\002\n9\n7\010\310\262\003\022\034ACTUATOR_DISK_UNIFORM_THRUST\032\023actuator_disk_model\n=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model\n\342\001\032\337\001\nm\022k\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\n4\n2\010\214\034\022\021BEM_TARGET_THRUST\032\032actuator_disk_bem_strategy'
|
|
1931
|
+
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_thrust']._serialized_options = b'\270\262\0310\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\342\002\022\337\002\n9\n7\010\310\262\003\022\034ACTUATOR_DISK_UNIFORM_THRUST\032\023actuator_disk_model\n=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model\n\342\001\032\337\001\nm\022k\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\n4\n2\010\214\034\022\021BEM_TARGET_THRUST\032\032actuator_disk_bem_strategy'
|
|
1786
1932
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_torque']._options = None
|
|
1787
|
-
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_torque']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model'
|
|
1933
|
+
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_torque']._serialized_options = b'\270\262\031/\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model'
|
|
1788
1934
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_radial_force']._options = None
|
|
1789
|
-
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_radial_force']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model'
|
|
1935
|
+
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_radial_force']._serialized_options = b'\270\262\031\231\222\001\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model'
|
|
1790
1936
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_radial_table_data']._options = None
|
|
1791
1937
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_radial_table_data']._serialized_options = b'\222\262\031=\n;\010\246#\022!ACTUATOR_DISK_RADIAL_DISTRIBUTION\032\023actuator_disk_model\232\262\031\020\n\002\010*\022\002\010\'\022\002\010(\022\002\010)'
|
|
1792
1938
|
_PHYSICALBEHAVIOR.fields_by_name['fan_curve_table_data']._options = None
|
|
1793
1939
|
_PHYSICALBEHAVIOR.fields_by_name['fan_curve_table_data']._serialized_options = b'\222\262\031\210\001\022\205\001\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model\232\262\031\n\n\003\010\332\004\022\003\010\331\004'
|
|
1794
1940
|
_PHYSICALBEHAVIOR.fields_by_name['head_loss_coefficient']._options = None
|
|
1795
|
-
_PHYSICALBEHAVIOR.fields_by_name['head_loss_coefficient']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\210\001\022\205\001\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model'
|
|
1941
|
+
_PHYSICALBEHAVIOR.fields_by_name['head_loss_coefficient']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000\000\000\000\360?\212\262\031\002\030\000\222\262\031\210\001\022\205\001\n)\n\'\010\370\336\002\022\020FAN_CURVE_OUTLET\032\017outlet_strategy\n\'\n%\010\311\267\003\022\017FAN_CURVE_INLET\032\016inlet_momentum\n/\n-\010\357\221\003\022\022FAN_CURVE_INTERNAL\032\023actuator_disk_model'
|
|
1796
1942
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_line_model']._options = None
|
|
1797
1943
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_line_model']._serialized_options = b'\202\262\031\004 \341\373\002\222\262\0313\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model'
|
|
1798
1944
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_rotation_rate']._options = None
|
|
1799
|
-
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_rotation_rate']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000Y@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1945
|
+
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_rotation_rate']._serialized_options = b'\270\262\031\372\306\003\202\262\031\013\n\t\t\000\000\000\000\000\000Y@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1800
1946
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_bem_strategy']._options = None
|
|
1801
1947
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_bem_strategy']._serialized_options = b'\202\262\031\004 \223\223\001\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1802
1948
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_blade_count']._options = None
|
|
1803
1949
|
_PHYSICALBEHAVIOR.fields_by_name['actuator_disk_blade_count']._serialized_options = b'\202\262\031\0020\002\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1804
1950
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_pitch_schedule']._options = None
|
|
1805
|
-
_PHYSICALBEHAVIOR.fields_by_name['blade_element_pitch_schedule']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1951
|
+
_PHYSICALBEHAVIOR.fields_by_name['blade_element_pitch_schedule']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1806
1952
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_flap_schedule']._options = None
|
|
1807
|
-
_PHYSICALBEHAVIOR.fields_by_name['blade_element_flap_schedule']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1953
|
+
_PHYSICALBEHAVIOR.fields_by_name['blade_element_flap_schedule']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1808
1954
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_lag_schedule']._options = None
|
|
1809
|
-
_PHYSICALBEHAVIOR.fields_by_name['blade_element_lag_schedule']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1955
|
+
_PHYSICALBEHAVIOR.fields_by_name['blade_element_lag_schedule']._serialized_options = b'\270\262\031\306\316\002\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\222\262\031\002*\000'
|
|
1810
1956
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_geometry_data']._options = None
|
|
1811
1957
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_geometry_data']._serialized_options = b'\222\262\031\352\001\022\347\001\nr\032p\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\nq\032o\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model\232\262\031\024\n\002\010*\022\002\010+\022\002\010,\022\002\010-\022\002\010.'
|
|
1812
1958
|
_PHYSICALBEHAVIOR.fields_by_name['blade_element_reference_sound_speed']._options = None
|
|
1813
|
-
_PHYSICALBEHAVIOR.fields_by_name['blade_element_reference_sound_speed']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000@u@\212\262\031\t\t\273\275\327\331\337|\333=\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\304\003\022\301\003\n\336\001\032\333\001\ni\022g\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\n\335\001\032\332\001\ni\022g\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1959
|
+
_PHYSICALBEHAVIOR.fields_by_name['blade_element_reference_sound_speed']._serialized_options = b'\270\262\031\005\202\262\031\013\n\t\t\000\000\000\000\000@u@\212\262\031\t\t\273\275\327\331\337|\333=\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\304\003\022\301\003\n\336\001\032\333\001\ni\022g\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n4\n2\010\332\367\002\022\023ACTUATOR_DISK_MODEL\032\027physical_behavior_model\n8\n6\010\373\374\001\022\033ACTUATOR_DISK_BLADE_ELEMENT\032\023actuator_disk_model\n\335\001\032\332\001\ni\022g\n.\n,\010\221\341\001\022\020CONSTANT_DENSITY\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship\n3\n1\010\327\017\022\023ACTUATOR_LINE_MODEL\032\027physical_behavior_model\n8\n6\010\341\373\002\022\033ACTUATOR_LINE_BLADE_ELEMENT\032\023actuator_line_model'
|
|
1814
1960
|
_PHYSICALBEHAVIOR.fields_by_name['particle_source_model']._options = None
|
|
1815
1961
|
_PHYSICALBEHAVIOR.fields_by_name['particle_source_model']._serialized_options = b'\202\262\031\004 \240\234\002\222\262\0314\n2\010\273\237\002\022\023SOURCE_POINTS_MODEL\032\027physical_behavior_model'
|
|
1816
1962
|
_PHYSICALBEHAVIOR.fields_by_name['source_particle_mass_injection_rate']._options = None
|
|
1817
|
-
_PHYSICALBEHAVIOR.fields_by_name['source_particle_mass_injection_rate']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0312\n0\010\240\234\002\022\023GENERAL_MASS_SOURCE\032\025particle_source_model'
|
|
1963
|
+
_PHYSICALBEHAVIOR.fields_by_name['source_particle_mass_injection_rate']._serialized_options = b'\270\262\031\013\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\0312\n0\010\240\234\002\022\023GENERAL_MASS_SOURCE\032\025particle_source_model'
|
|
1818
1964
|
_PHYSICALBEHAVIOR.fields_by_name['source_particle_acceleration_vector']._options = None
|
|
1819
|
-
_PHYSICALBEHAVIOR.fields_by_name['source_particle_acceleration_vector']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\037\205\353Q\270\236#\300\222\262\031:\n8\010\200\311\001\022\033GENERAL_ACCELERATION_SOURCE\032\025particle_source_model'
|
|
1965
|
+
_PHYSICALBEHAVIOR.fields_by_name['source_particle_acceleration_vector']._serialized_options = b'\270\262\031\347\036\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\037\205\353Q\270\236#\300\222\262\031:\n8\010\200\311\001\022\033GENERAL_ACCELERATION_SOURCE\032\025particle_source_model'
|
|
1820
1966
|
_CAVITATION.fields_by_name['cavitation_model']._options = None
|
|
1821
1967
|
_CAVITATION.fields_by_name['cavitation_model']._serialized_options = b'\202\262\031\004 \262\351\001\222\262\031$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1822
1968
|
_CAVITATION.fields_by_name['density_vapor_phase_cavitation']._options = None
|
|
1823
|
-
_CAVITATION.fields_by_name['density_vapor_phase_cavitation']._serialized_options = b'\202\262\031\013\n\t\t7\032\300[ A\347?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1969
|
+
_CAVITATION.fields_by_name['density_vapor_phase_cavitation']._serialized_options = b'\270\262\031\001\202\262\031\013\n\t\t7\032\300[ A\347?\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1824
1970
|
_CAVITATION.fields_by_name['saturation_pressure_cavitation']._options = None
|
|
1825
|
-
_CAVITATION.fields_by_name['saturation_pressure_cavitation']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\304\250@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1971
|
+
_CAVITATION.fields_by_name['saturation_pressure_cavitation']._serialized_options = b'\270\262\031\002\202\262\031\013\n\t\t\000\000\000\000\000\304\250@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type'
|
|
1826
1972
|
_CAVITATION.fields_by_name['n0_sauer_schnerr']._options = None
|
|
1827
|
-
_CAVITATION.fields_by_name['n0_sauer_schnerr']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\204\327\227A\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\262\351\001\022\rSAUER_SCHNERR\032\020cavitation_model'
|
|
1973
|
+
_CAVITATION.fields_by_name['n0_sauer_schnerr']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\204\327\227A\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031\'\n%\010\262\351\001\022\rSAUER_SCHNERR\032\020cavitation_model'
|
|
1828
1974
|
_CAVITATION.fields_by_name['n_reboud']._options = None
|
|
1829
|
-
_CAVITATION.fields_by_name['n_reboud']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000$@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031E\032C\n$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model'
|
|
1975
|
+
_CAVITATION.fields_by_name['n_reboud']._serialized_options = b'\270\262\031\324\232\002\202\262\031\013\n\t\t\000\000\000\000\000\000$@\212\262\031\t\t\000\000\000 _\240\002\302\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\001\222\262\031E\032C\n$\n\"\010\251\272\003\022\020CAVITATING_FLUID\032\nfluid_type\n\033\n\031\010\222\225\002\022\004RANS\032\rviscous_model'
|
|
1830
1976
|
_POROUSBEHAVIOR.fields_by_name['porous_behavior_id']._options = None
|
|
1831
1977
|
_POROUSBEHAVIOR.fields_by_name['porous_behavior_id']._serialized_options = b'\222\262\031\002*\000'
|
|
1832
1978
|
_POROUSBEHAVIOR.fields_by_name['porous_behavior_name']._options = None
|
|
@@ -1836,13 +1982,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1836
1982
|
_POROUSBEHAVIOR.fields_by_name['porous_model_type']._options = None
|
|
1837
1983
|
_POROUSBEHAVIOR.fields_by_name['porous_model_type']._serialized_options = b'\202\262\031\004 \253\262\003\222\262\031\002*\000'
|
|
1838
1984
|
_POROUSBEHAVIOR.fields_by_name['darcy_coeff']._options = None
|
|
1839
|
-
_POROUSBEHAVIOR.fields_by_name['darcy_coeff']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031,\n*\010\253\262\003\022\021DARCY_FORCHHEIMER\032\021porous_model_type'
|
|
1985
|
+
_POROUSBEHAVIOR.fields_by_name['darcy_coeff']._serialized_options = b'\270\262\031\374_\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031,\n*\010\253\262\003\022\021DARCY_FORCHHEIMER\032\021porous_model_type'
|
|
1840
1986
|
_POROUSBEHAVIOR.fields_by_name['forchheimer_coeff']._options = None
|
|
1841
|
-
_POROUSBEHAVIOR.fields_by_name['forchheimer_coeff']._serialized_options = b'\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031,\n*\010\253\262\003\022\021DARCY_FORCHHEIMER\032\021porous_model_type'
|
|
1987
|
+
_POROUSBEHAVIOR.fields_by_name['forchheimer_coeff']._serialized_options = b'\270\262\031\253\266\001\202\262\031#\022!\n\t\t\000\000\000\000\000\000\000\000\022\t\t\000\000\000\000\000\000\000\000\032\t\t\000\000\000\000\000\000\000\000\212\262\031\t\t\000\000\000\000\000\000\000\000\212\262\031\t\021\000\000\000 _\240\002B\212\262\031\002\030\000\222\262\031,\n*\010\253\262\003\022\021DARCY_FORCHHEIMER\032\021porous_model_type'
|
|
1842
1988
|
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power']._options = None
|
|
1843
|
-
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power']._serialized_options = b'\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1989
|
+
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power']._serialized_options = b'\270\262\031\230\367\003\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1844
1990
|
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power_per_unit_volume']._options = None
|
|
1845
|
-
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power_per_unit_volume']._serialized_options = b'\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1991
|
+
_POROUSBEHAVIOR.fields_by_name['porous_heat_source_power_per_unit_volume']._serialized_options = b'\270\262\0313\202\262\031\013\n\t\t\000\000\000\000\000\000\000\000\222\262\031b\022`\n\'\n%\010\354\244\002\022\tIDEAL_GAS\032\024density_relationship\n5\n3\010\261\306\002\022\027CONSTANT_DENSITY_ENERGY\032\024density_relationship'
|
|
1846
1992
|
_POROUSBEHAVIOR.fields_by_name['ref_frame_id']._options = None
|
|
1847
1993
|
_POROUSBEHAVIOR.fields_by_name['ref_frame_id']._serialized_options = b'\030\001\222\262\031,\n*\010\253\262\003\022\021DARCY_FORCHHEIMER\032\021porous_model_type'
|
|
1848
1994
|
_MULTIPHYSICSCOUPLINGOPTIONS.fields_by_name['mp_coupling_lin_sol_coupling']._options = None
|
|
@@ -1857,286 +2003,324 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
1857
2003
|
_SIMULATIONPARAM_TABLEREFERENCESENTRY._serialized_options = b'8\001'
|
|
1858
2004
|
_SIMULATIONPARAM.fields_by_name['surface_name']._options = None
|
|
1859
2005
|
_SIMULATIONPARAM.fields_by_name['surface_name']._serialized_options = b'\240\262\031\001'
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2006
|
+
_UNITSYSTEM._serialized_start=81499
|
|
2007
|
+
_UNITSYSTEM._serialized_end=81604
|
|
2008
|
+
_TEMPERATUREUNIT._serialized_start=81607
|
|
2009
|
+
_TEMPERATUREUNIT._serialized_end=81735
|
|
2010
|
+
_MASSUNIT._serialized_start=81737
|
|
2011
|
+
_MASSUNIT._serialized_end=81824
|
|
2012
|
+
_LENGTHUNIT._serialized_start=81826
|
|
2013
|
+
_LENGTHUNIT._serialized_end=81936
|
|
2014
|
+
_ANGLEUNIT._serialized_start=81938
|
|
2015
|
+
_ANGLEUNIT._serialized_end=82010
|
|
2016
|
+
_TIMEUNIT._serialized_start=82012
|
|
2017
|
+
_TIMEUNIT._serialized_end=82064
|
|
2018
|
+
_VELOCITYUNIT._serialized_start=82067
|
|
2019
|
+
_VELOCITYUNIT._serialized_end=82215
|
|
2020
|
+
_ANGULARVELOCITYUNIT._serialized_start=82217
|
|
2021
|
+
_ANGULARVELOCITYUNIT._serialized_end=82319
|
|
2022
|
+
_FORCEUNIT._serialized_start=82321
|
|
2023
|
+
_FORCEUNIT._serialized_end=82398
|
|
2024
|
+
_MOMENTUNIT._serialized_start=82400
|
|
2025
|
+
_MOMENTUNIT._serialized_end=82484
|
|
2026
|
+
_PRESSUREUNIT._serialized_start=82486
|
|
2027
|
+
_PRESSUREUNIT._serialized_end=82577
|
|
2028
|
+
_ENERGYUNIT._serialized_start=82579
|
|
2029
|
+
_ENERGYUNIT._serialized_end=82650
|
|
2030
|
+
_POWERUNIT._serialized_start=82652
|
|
2031
|
+
_POWERUNIT._serialized_end=82727
|
|
2032
|
+
_VOLUMEUNIT._serialized_start=82730
|
|
2033
|
+
_VOLUMEUNIT._serialized_end=82871
|
|
2034
|
+
_VOLUMETRICFLOWUNIT._serialized_start=82873
|
|
2035
|
+
_VOLUMETRICFLOWUNIT._serialized_end=82978
|
|
2036
|
+
_VISCOSITYUNIT._serialized_start=82981
|
|
2037
|
+
_VISCOSITYUNIT._serialized_end=83113
|
|
2038
|
+
_CONDUCTIVITYUNIT._serialized_start=83115
|
|
2039
|
+
_CONDUCTIVITYUNIT._serialized_end=83238
|
|
2040
|
+
_MOLECULARWEIGHTUNIT._serialized_start=83240
|
|
2041
|
+
_MOLECULARWEIGHTUNIT._serialized_end=83355
|
|
2042
|
+
_DENSITYRELATIONSHIP._serialized_start=83357
|
|
2043
|
+
_DENSITYRELATIONSHIP._serialized_end=83484
|
|
2044
|
+
_LAMINARTHERMALCONDUCTIVITY._serialized_start=83487
|
|
2045
|
+
_LAMINARTHERMALCONDUCTIVITY._serialized_end=83692
|
|
2046
|
+
_BOUSSINESQAPPROXIMATION._serialized_start=83694
|
|
2047
|
+
_BOUSSINESQAPPROXIMATION._serialized_end=83799
|
|
2048
|
+
_MATERIALFLUIDPRESET._serialized_start=83802
|
|
2049
|
+
_MATERIALFLUIDPRESET._serialized_end=83959
|
|
2050
|
+
_LAMINARVISCOSITYMODELNEWTONIAN._serialized_start=83962
|
|
2051
|
+
_LAMINARVISCOSITYMODELNEWTONIAN._serialized_end=84139
|
|
2052
|
+
_MATERIALSOLIDPRESET._serialized_start=84142
|
|
2053
|
+
_MATERIALSOLIDPRESET._serialized_end=84299
|
|
2054
|
+
_FLOATTYPE._serialized_start=84301
|
|
2055
|
+
_FLOATTYPE._serialized_end=84376
|
|
2056
|
+
_GRAVITY._serialized_start=84378
|
|
2057
|
+
_GRAVITY._serialized_end=84445
|
|
2058
|
+
_FLOWBEHAVIOR._serialized_start=84447
|
|
2059
|
+
_FLOWBEHAVIOR._serialized_end=84519
|
|
2060
|
+
_TIMEMARCHING._serialized_start=84521
|
|
2061
|
+
_TIMEMARCHING._serialized_end=84604
|
|
2062
|
+
_TIMEIMPLICITORDER._serialized_start=84606
|
|
2063
|
+
_TIMEIMPLICITORDER._serialized_end=84695
|
|
2064
|
+
_PHYSICALTIMESTEPMETHOD._serialized_start=84697
|
|
2065
|
+
_PHYSICALTIMESTEPMETHOD._serialized_end=84783
|
|
2066
|
+
_TIMESTEPRAMP._serialized_start=84785
|
|
2067
|
+
_TIMESTEPRAMP._serialized_end=84878
|
|
2068
|
+
_COMPUTESTATISTICS._serialized_start=84880
|
|
2069
|
+
_COMPUTESTATISTICS._serialized_end=84989
|
|
2070
|
+
_MOTIONTYPE._serialized_start=84992
|
|
2071
|
+
_MOTIONTYPE._serialized_end=85148
|
|
2072
|
+
_MOTIONFORMULATION._serialized_start=85150
|
|
2073
|
+
_MOTIONFORMULATION._serialized_end=85267
|
|
2074
|
+
_MOTIONSPECIFICATION._serialized_start=85270
|
|
2075
|
+
_MOTIONSPECIFICATION._serialized_end=85399
|
|
2076
|
+
_TRANSFORMTYPE._serialized_start=85401
|
|
2077
|
+
_TRANSFORMTYPE._serialized_end=85523
|
|
2078
|
+
_PARTICLEGROUPTYPE._serialized_start=85526
|
|
2079
|
+
_PARTICLEGROUPTYPE._serialized_end=85660
|
|
2080
|
+
_ACTUATORDISKORIENTATIONSELECTION._serialized_start=85663
|
|
2081
|
+
_ACTUATORDISKORIENTATIONSELECTION._serialized_end=85833
|
|
2082
|
+
_DEBUGOUTPUT._serialized_start=85835
|
|
2083
|
+
_DEBUGOUTPUT._serialized_end=85930
|
|
2084
|
+
_DEBUGOUTPUTINTERIORSURFACEDATA._serialized_start=85933
|
|
2085
|
+
_DEBUGOUTPUTINTERIORSURFACEDATA._serialized_end=86098
|
|
2086
|
+
_MESHINGMETHOD._serialized_start=86100
|
|
2087
|
+
_MESHINGMETHOD._serialized_end=86192
|
|
2088
|
+
_ALLTET._serialized_start=86194
|
|
2089
|
+
_ALLTET._serialized_end=86280
|
|
2090
|
+
_RELAXATIONMETHOD._serialized_start=86282
|
|
2091
|
+
_RELAXATIONMETHOD._serialized_end=86363
|
|
2092
|
+
_IMPLICITMETHOD._serialized_start=86365
|
|
2093
|
+
_IMPLICITMETHOD._serialized_end=86432
|
|
2094
|
+
_LINEARSOLVERTYPE._serialized_start=86434
|
|
2095
|
+
_LINEARSOLVERTYPE._serialized_end=86546
|
|
2096
|
+
_LINSOLAMGCYCLETYPE._serialized_start=86549
|
|
2097
|
+
_LINSOLAMGCYCLETYPE._serialized_end=86697
|
|
2098
|
+
_LINSOLAMGSMOOTHER._serialized_start=86700
|
|
2099
|
+
_LINSOLAMGSMOOTHER._serialized_end=86850
|
|
2100
|
+
_EXPLICITMETHOD._serialized_start=86852
|
|
2101
|
+
_EXPLICITMETHOD._serialized_end=86945
|
|
2102
|
+
_SOLUTIONCONTROLSHEATPRESET._serialized_start=86948
|
|
2103
|
+
_SOLUTIONCONTROLSHEATPRESET._serialized_end=87220
|
|
2104
|
+
_ADJOINTSOLUTIONMETHOD._serialized_start=87223
|
|
2105
|
+
_ADJOINTSOLUTIONMETHOD._serialized_end=87377
|
|
2106
|
+
_GRADIENTMETHOD._serialized_start=87380
|
|
2107
|
+
_GRADIENTMETHOD._serialized_end=87522
|
|
2108
|
+
_GEOMETRYFIXES._serialized_start=87524
|
|
2109
|
+
_GEOMETRYFIXES._serialized_end=87618
|
|
2110
|
+
_SPATIALDISCRETIZATIONHEATPRESET._serialized_start=87621
|
|
2111
|
+
_SPATIALDISCRETIZATIONHEATPRESET._serialized_end=87929
|
|
2112
|
+
_PROFILETYPE._serialized_start=87932
|
|
2113
|
+
_PROFILETYPE._serialized_end=88086
|
|
2114
|
+
_HEATPHYSICALBOUNDARY._serialized_start=88089
|
|
2115
|
+
_HEATPHYSICALBOUNDARY._serialized_end=88284
|
|
2116
|
+
_INITIALIZATIONTYPE._serialized_start=88287
|
|
2117
|
+
_INITIALIZATIONTYPE._serialized_end=88474
|
|
2118
|
+
_HEATSOURCETYPE._serialized_start=88476
|
|
2119
|
+
_HEATSOURCETYPE._serialized_end=88601
|
|
2120
|
+
_INTERFACETYPE._serialized_start=88603
|
|
2121
|
+
_INTERFACETYPE._serialized_end=88701
|
|
2122
|
+
_PERIODICBCTYPE._serialized_start=88703
|
|
2123
|
+
_PERIODICBCTYPE._serialized_end=88788
|
|
2124
|
+
_FLUIDTYPE._serialized_start=88790
|
|
2125
|
+
_FLUIDTYPE._serialized_end=88886
|
|
2126
|
+
_VISCOUSMODEL._serialized_start=88888
|
|
2127
|
+
_VISCOUSMODEL._serialized_end=88993
|
|
2128
|
+
_DESFORMULATION._serialized_start=88996
|
|
2129
|
+
_DESFORMULATION._serialized_end=89128
|
|
2130
|
+
_RANSREGION._serialized_start=89130
|
|
2131
|
+
_RANSREGION._serialized_end=89194
|
|
2132
|
+
_SUBGRIDSCALEMODEL._serialized_start=89197
|
|
2133
|
+
_SUBGRIDSCALEMODEL._serialized_end=89329
|
|
2134
|
+
_TRANSITIONMODEL._serialized_start=89332
|
|
2135
|
+
_TRANSITIONMODEL._serialized_end=89461
|
|
2136
|
+
_TRANSITIONMODELCROSSFLOW._serialized_start=89464
|
|
2137
|
+
_TRANSITIONMODELCROSSFLOW._serialized_end=89608
|
|
2138
|
+
_TURBULENCEMODEL._serialized_start=89610
|
|
2139
|
+
_TURBULENCEMODEL._serialized_end=89697
|
|
2140
|
+
_QCRSA._serialized_start=89699
|
|
2141
|
+
_QCRSA._serialized_end=89754
|
|
2142
|
+
_ROTATIONCORRECTIONSA._serialized_start=89756
|
|
2143
|
+
_ROTATIONCORRECTIONSA._serialized_end=89874
|
|
2144
|
+
_QCRSST._serialized_start=89876
|
|
2145
|
+
_QCRSST._serialized_end=89943
|
|
2146
|
+
_TURBULENCEMODELCONSTANTS._serialized_start=89945
|
|
2147
|
+
_TURBULENCEMODELCONSTANTS._serialized_end=90070
|
|
2148
|
+
_PSEUDOTIMESTEPMETHOD._serialized_start=90072
|
|
2149
|
+
_PSEUDOTIMESTEPMETHOD._serialized_end=90178
|
|
2150
|
+
_LOCALTIMESTEPPING._serialized_start=90180
|
|
2151
|
+
_LOCALTIMESTEPPING._serialized_end=90293
|
|
2152
|
+
_JACOBIANUPDATEMETHOD._serialized_start=90295
|
|
2153
|
+
_JACOBIANUPDATEMETHOD._serialized_end=90388
|
|
2154
|
+
_ROBUSTSTARTUP._serialized_start=90390
|
|
2155
|
+
_ROBUSTSTARTUP._serialized_end=90483
|
|
2156
|
+
_SOLUTIONCONTROLSFLUIDPRESET._serialized_start=90486
|
|
2157
|
+
_SOLUTIONCONTROLSFLUIDPRESET._serialized_end=90764
|
|
2158
|
+
_CONVECTIVESCHEMESDENSITYBASED._serialized_start=90766
|
|
2159
|
+
_CONVECTIVESCHEMESDENSITYBASED._serialized_end=90893
|
|
2160
|
+
_PRECONDITIONING._serialized_start=90895
|
|
2161
|
+
_PRECONDITIONING._serialized_end=90994
|
|
2162
|
+
_SKEWSYMMETRICFORMULATION._serialized_start=90996
|
|
2163
|
+
_SKEWSYMMETRICFORMULATION._serialized_end=91121
|
|
2164
|
+
_ARTIFICIALVISCOSITYMODEL._serialized_start=91123
|
|
2165
|
+
_ARTIFICIALVISCOSITYMODEL._serialized_end=91216
|
|
2166
|
+
_UPWINDSCHEMEORDER._serialized_start=91218
|
|
2167
|
+
_UPWINDSCHEMEORDER._serialized_end=91296
|
|
2168
|
+
_ROBUSTDISSIPATION._serialized_start=91298
|
|
2169
|
+
_ROBUSTDISSIPATION._serialized_end=91394
|
|
2170
|
+
_LIMITER._serialized_start=91397
|
|
2171
|
+
_LIMITER._serialized_end=91530
|
|
2172
|
+
_SPATIALDISCRETIZATIONFLUIDPRESET._serialized_start=91533
|
|
2173
|
+
_SPATIALDISCRETIZATIONFLUIDPRESET._serialized_end=91849
|
|
2174
|
+
_PHYSICALBOUNDARY._serialized_start=91852
|
|
2175
|
+
_PHYSICALBOUNDARY._serialized_end=91986
|
|
2176
|
+
_WALLMOMENTUM._serialized_start=91988
|
|
2177
|
+
_WALLMOMENTUM._serialized_end=92072
|
|
2178
|
+
_WALLENERGY._serialized_start=92074
|
|
2179
|
+
_WALLENERGY._serialized_end=92158
|
|
2180
|
+
_INLETMOMENTUM._serialized_start=92161
|
|
2181
|
+
_INLETMOMENTUM._serialized_end=92351
|
|
2182
|
+
_DIRECTIONSPECIFICATION._serialized_start=92353
|
|
2183
|
+
_DIRECTIONSPECIFICATION._serialized_end=92464
|
|
2184
|
+
_INLETENERGY._serialized_start=92466
|
|
2185
|
+
_INLETENERGY._serialized_end=92536
|
|
2186
|
+
_OUTLETSTRATEGY._serialized_start=92539
|
|
2187
|
+
_OUTLETSTRATEGY._serialized_end=92712
|
|
2188
|
+
_OUTLETPRESSURECONSTRAINT._serialized_start=92715
|
|
2189
|
+
_OUTLETPRESSURECONSTRAINT._serialized_end=92845
|
|
2190
|
+
_FARFIELDMOMENTUM._serialized_start=92847
|
|
2191
|
+
_FARFIELDMOMENTUM._serialized_end=92959
|
|
2192
|
+
_FARFIELDFLOWDIRECTIONSPECIFICATION._serialized_start=92962
|
|
2193
|
+
_FARFIELDFLOWDIRECTIONSPECIFICATION._serialized_end=93099
|
|
2194
|
+
_TURBULENCESPECIFICATIONSPALARTALLMARAS._serialized_start=93102
|
|
2195
|
+
_TURBULENCESPECIFICATIONSPALARTALLMARAS._serialized_end=93284
|
|
2196
|
+
_TURBULENCESPECIFICATIONKOMEGA._serialized_start=93287
|
|
2197
|
+
_TURBULENCESPECIFICATIONKOMEGA._serialized_end=93497
|
|
2198
|
+
_POTENTIALFLOWPRESSUREINITIALIZATION._serialized_start=93500
|
|
2199
|
+
_POTENTIALFLOWPRESSUREINITIALIZATION._serialized_end=93686
|
|
2200
|
+
_TURBULENTVARIABLEINITIALIZATIONTYPESA._serialized_start=93689
|
|
2201
|
+
_TURBULENTVARIABLEINITIALIZATIONTYPESA._serialized_end=93913
|
|
2202
|
+
_TURBULENTVARIABLEINITIALIZATIONTYPEKOMEGA._serialized_start=93916
|
|
2203
|
+
_TURBULENTVARIABLEINITIALIZATIONTYPEKOMEGA._serialized_end=94192
|
|
2204
|
+
_VERIFICATIONSOLUTIONS._serialized_start=94195
|
|
2205
|
+
_VERIFICATIONSOLUTIONS._serialized_end=94482
|
|
2206
|
+
_PHYSICALBEHAVIORMODEL._serialized_start=94485
|
|
2207
|
+
_PHYSICALBEHAVIORMODEL._serialized_end=94625
|
|
2208
|
+
_ACTUATORDISKMODEL._serialized_start=94628
|
|
2209
|
+
_ACTUATORDISKMODEL._serialized_end=94817
|
|
2210
|
+
_ACTUATORLINEMODEL._serialized_start=94819
|
|
2211
|
+
_ACTUATORLINEMODEL._serialized_end=94906
|
|
2212
|
+
_ACTUATORDISKBEMSTRATEGY._serialized_start=94908
|
|
2213
|
+
_ACTUATORDISKBEMSTRATEGY._serialized_end=95022
|
|
2214
|
+
_PARTICLESOURCEMODEL._serialized_start=95024
|
|
2215
|
+
_PARTICLESOURCEMODEL._serialized_end=95142
|
|
2216
|
+
_CAVITATIONMODEL._serialized_start=95144
|
|
2217
|
+
_CAVITATIONMODEL._serialized_end=95212
|
|
2218
|
+
_POROUSMODELTYPE._serialized_start=95214
|
|
2219
|
+
_POROUSMODELTYPE._serialized_end=95287
|
|
2220
|
+
_MPCOUPLINGLINSOLCOUPLING._serialized_start=95290
|
|
2221
|
+
_MPCOUPLINGLINSOLCOUPLING._serialized_end=95437
|
|
2222
|
+
_UNITS._serialized_start=225
|
|
2223
|
+
_UNITS._serialized_end=1522
|
|
2224
|
+
_INPUT._serialized_start=1524
|
|
2225
|
+
_INPUT._serialized_end=1639
|
|
2226
|
+
_MATERIALFLUID._serialized_start=1642
|
|
2227
|
+
_MATERIALFLUID._serialized_end=4938
|
|
2228
|
+
_MATERIALSOLID._serialized_start=4941
|
|
2229
|
+
_MATERIALSOLID._serialized_end=5573
|
|
2230
|
+
_MATERIALENTITY._serialized_start=5576
|
|
2231
|
+
_MATERIALENTITY._serialized_end=5808
|
|
2232
|
+
_VOLUMEENTITY._serialized_start=5810
|
|
2233
|
+
_VOLUMEENTITY._serialized_end=5904
|
|
2234
|
+
_GENERAL._serialized_start=5907
|
|
2235
|
+
_GENERAL._serialized_end=6281
|
|
2236
|
+
_ADJOINT._serialized_start=6284
|
|
2237
|
+
_ADJOINT._serialized_end=6510
|
|
2238
|
+
_TIME._serialized_start=6513
|
|
2239
|
+
_TIME._serialized_end=8183
|
|
2240
|
+
_FRAMETRANSFORMS._serialized_start=8186
|
|
2241
|
+
_FRAMETRANSFORMS._serialized_end=8631
|
|
2242
|
+
_MOTIONDATA._serialized_start=8634
|
|
2243
|
+
_MOTIONDATA._serialized_end=9835
|
|
2244
|
+
_PARTICLEGROUP._serialized_start=9838
|
|
2245
|
+
_PARTICLEGROUP._serialized_end=11935
|
|
2246
|
+
_MONITORPLANE._serialized_start=11938
|
|
2247
|
+
_MONITORPLANE._serialized_end=12768
|
|
2248
|
+
_BODYFRAME._serialized_start=12770
|
|
2249
|
+
_BODYFRAME._serialized_end=12814
|
|
2250
|
+
_SURFACENAME._serialized_start=12816
|
|
2251
|
+
_SURFACENAME._serialized_end=12861
|
|
2252
|
+
_OUTPUT._serialized_start=12864
|
|
2253
|
+
_OUTPUT._serialized_end=13227
|
|
2254
|
+
_CONVERGENCECRITERIA._serialized_start=13230
|
|
2255
|
+
_CONVERGENCECRITERIA._serialized_end=13581
|
|
2256
|
+
_CONVERGENCECRITERIA_ENTITYGROUPENTRY._serialized_start=13490
|
|
2257
|
+
_CONVERGENCECRITERIA_ENTITYGROUPENTRY._serialized_end=13581
|
|
2258
|
+
_VOLUMEMATERIALRELATIONSHIP._serialized_start=13584
|
|
2259
|
+
_VOLUMEMATERIALRELATIONSHIP._serialized_end=13764
|
|
2260
|
+
_VOLUMEPHYSICSRELATIONSHIP._serialized_start=13767
|
|
2261
|
+
_VOLUMEPHYSICSRELATIONSHIP._serialized_end=13944
|
|
2262
|
+
_ENTITYRELATIONSHIPS._serialized_start=13947
|
|
2263
|
+
_ENTITYRELATIONSHIPS._serialized_end=14148
|
|
2264
|
+
_REFERENCEVALUES._serialized_start=14151
|
|
2265
|
+
_REFERENCEVALUES._serialized_end=15228
|
|
2266
|
+
_BOUNDARYLAYERPROFILE._serialized_start=15231
|
|
2267
|
+
_BOUNDARYLAYERPROFILE._serialized_end=15729
|
|
2268
|
+
_ADAPTIVEMESHREFINEMENT._serialized_start=15732
|
|
2269
|
+
_ADAPTIVEMESHREFINEMENT._serialized_end=16868
|
|
2270
|
+
_SOLUTIONCONTROLSHEAT._serialized_start=16871
|
|
2271
|
+
_SOLUTIONCONTROLSHEAT._serialized_end=19830
|
|
2272
|
+
_ADJOINTCONTROLSHEAT._serialized_start=19833
|
|
2273
|
+
_ADJOINTCONTROLSHEAT._serialized_end=20135
|
|
2274
|
+
_SPATIALDISCRETIZATIONHEAT._serialized_start=20138
|
|
2275
|
+
_SPATIALDISCRETIZATIONHEAT._serialized_end=20938
|
|
2276
|
+
_BOUNDARYCONDITIONSHEAT._serialized_start=20941
|
|
2277
|
+
_BOUNDARYCONDITIONSHEAT._serialized_end=22723
|
|
2278
|
+
_INITIALIZATIONHEAT._serialized_start=22726
|
|
2279
|
+
_INITIALIZATIONHEAT._serialized_end=23297
|
|
2280
|
+
_HEATSOURCE._serialized_start=23300
|
|
2281
|
+
_HEATSOURCE._serialized_end=24149
|
|
2282
|
+
_SLIDINGINTERFACES._serialized_start=24152
|
|
2283
|
+
_SLIDINGINTERFACES._serialized_end=24820
|
|
2284
|
+
_PERIODICPAIR._serialized_start=24823
|
|
2285
|
+
_PERIODICPAIR._serialized_end=25505
|
|
2286
|
+
_HEAT._serialized_start=25508
|
|
2287
|
+
_HEAT._serialized_end=26107
|
|
2288
|
+
_BASICFLUID._serialized_start=26110
|
|
2289
|
+
_BASICFLUID._serialized_end=26270
|
|
2290
|
+
_TURBULENCE._serialized_start=26273
|
|
2291
|
+
_TURBULENCE._serialized_end=34905
|
|
2292
|
+
_SOLUTIONCONTROLSFLUID._serialized_start=34908
|
|
2293
|
+
_SOLUTIONCONTROLSFLUID._serialized_end=40226
|
|
2294
|
+
_ADJOINTCONTROLSFLUID._serialized_start=40229
|
|
2295
|
+
_ADJOINTCONTROLSFLUID._serialized_end=41102
|
|
2296
|
+
_SPATIALDISCRETIZATIONFLUID._serialized_start=41105
|
|
2297
|
+
_SPATIALDISCRETIZATIONFLUID._serialized_end=45090
|
|
2298
|
+
_BOUNDARYCONDITIONSFLUID._serialized_start=45093
|
|
2299
|
+
_BOUNDARYCONDITIONSFLUID._serialized_end=57452
|
|
2300
|
+
_INITIALIZATIONFLUID._serialized_start=57455
|
|
2301
|
+
_INITIALIZATIONFLUID._serialized_end=71243
|
|
2302
|
+
_BLADEELEMENTAIRFOILDATA._serialized_start=71246
|
|
2303
|
+
_BLADEELEMENTAIRFOILDATA._serialized_end=71500
|
|
2304
|
+
_PHYSICALBEHAVIOR._serialized_start=71503
|
|
2305
|
+
_PHYSICALBEHAVIOR._serialized_end=76569
|
|
2306
|
+
_CAVITATION._serialized_start=76572
|
|
2307
|
+
_CAVITATION._serialized_end=77385
|
|
2308
|
+
_POROUSBEHAVIOR._serialized_start=77388
|
|
2309
|
+
_POROUSBEHAVIOR._serialized_end=78453
|
|
2310
|
+
_FLUID._serialized_start=78456
|
|
2311
|
+
_FLUID._serialized_end=79313
|
|
2312
|
+
_PHYSICS._serialized_start=79316
|
|
2313
|
+
_PHYSICS._serialized_end=79501
|
|
2314
|
+
_MULTIPHYSICSCOUPLINGOPTIONS._serialized_start=79503
|
|
2315
|
+
_MULTIPHYSICSCOUPLINGOPTIONS._serialized_end=79630
|
|
2316
|
+
_SIMULATIONPARAM._serialized_start=79633
|
|
2317
|
+
_SIMULATIONPARAM._serialized_end=81497
|
|
2318
|
+
_SIMULATIONPARAM_NAMEDVARIABLEENTRY._serialized_start=81149
|
|
2319
|
+
_SIMULATIONPARAM_NAMEDVARIABLEENTRY._serialized_end=81235
|
|
2320
|
+
_SIMULATIONPARAM_SURFACENAMEENTRY._serialized_start=81237
|
|
2321
|
+
_SIMULATIONPARAM_SURFACENAMEENTRY._serialized_end=81323
|
|
2322
|
+
_SIMULATIONPARAM_TABLEENTRY._serialized_start=81325
|
|
2323
|
+
_SIMULATIONPARAM_TABLEENTRY._serialized_end=81409
|
|
2324
|
+
_SIMULATIONPARAM_TABLEREFERENCESENTRY._serialized_start=81411
|
|
2325
|
+
_SIMULATIONPARAM_TABLEREFERENCESENTRY._serialized_end=81497
|
|
2142
2326
|
# @@protoc_insertion_point(module_scope)
|