luminarycloud 0.13.1__py3-none-any.whl → 0.14.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/__init__.py +3 -0
- luminarycloud/_client/client.py +4 -0
- luminarycloud/_client/logging_interceptor.py +25 -0
- luminarycloud/_client/tracing.py +13 -8
- luminarycloud/_helpers/__init__.py +1 -0
- luminarycloud/_helpers/download.py +28 -1
- luminarycloud/_helpers/named_variables.py +25 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +40 -40
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -2
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +182 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +260 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +204 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +75 -0
- luminarycloud/_proto/api/v0/luminarycloud/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 +36 -14
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +37 -1
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +156 -132
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +65 -7
- luminarycloud/_proto/assistant/assistant_pb2.py +172 -23
- luminarycloud/_proto/assistant/assistant_pb2.pyi +358 -4
- luminarycloud/_proto/client/simulation_pb2.py +284 -283
- luminarycloud/_proto/client/simulation_pb2.pyi +37 -32
- luminarycloud/_proto/geometry/geometry_pb2.py +46 -46
- luminarycloud/_proto/geometry/geometry_pb2.pyi +6 -1
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +138 -37
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +218 -37
- luminarycloud/_proto/quantity/quantity_pb2.py +4 -4
- luminarycloud/enum/vis_enums.py +26 -11
- luminarycloud/named_variable_set.py +121 -0
- luminarycloud/params/__init__.py +1 -2
- luminarycloud/params/enum/_enum_wrappers.py +861 -4
- luminarycloud/params/outputs/output.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/__init__.py +1 -0
- 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 +0 -1
- 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 +1 -0
- 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 +0 -1
- 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 +10 -5
- 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 +10 -5
- 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/{param_wrappers/simulation_param → simulation}/physics/fluid_.py +60 -78
- 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 +16 -11
- 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 +32 -40
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +4 -6
- 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 +83 -20
- luminarycloud/reference_values.py +1 -1
- luminarycloud/simulation.py +13 -2
- luminarycloud/simulation_param.py +94 -10
- luminarycloud/solution.py +24 -3
- luminarycloud/types/__init__.py +1 -0
- luminarycloud/types/adfloat.py +49 -19
- luminarycloud/types/ids.py +1 -0
- luminarycloud/types/vector3.py +28 -2
- luminarycloud/vis/__init__.py +2 -1
- luminarycloud/vis/display.py +57 -67
- luminarycloud/vis/filters.py +97 -16
- luminarycloud/vis/interactive_scene.py +40 -3
- luminarycloud/vis/visualization.py +84 -58
- luminarycloud/volume_selection.py +27 -15
- {luminarycloud-0.13.1.dist-info → luminarycloud-0.14.1.dist-info}/METADATA +1 -1
- luminarycloud-0.14.1.dist-info/RECORD +472 -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-0.13.1.dist-info/RECORD +0 -489
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/__init__.py +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/__init__.py +0 -0
- /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 +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/__init__.py +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/__init__.py +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/__init__.py +0 -0
- /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 +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/__init__.py +0 -0
- /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 +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/__init__.py +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/__init__.py +0 -0
- /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 +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/__init__.py +0 -0
- /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 +0 -0
- /luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/__init__.py +0 -0
- {luminarycloud-0.13.1.dist-info → luminarycloud-0.14.1.dist-info}/WHEEL +0 -0
|
@@ -17,6 +17,14 @@ class UnitSystem(_IntEnum):
|
|
|
17
17
|
International System of Units (SI).
|
|
18
18
|
UNIT_SYSTEM_US
|
|
19
19
|
US Customary Units.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Examples
|
|
23
|
+
--------
|
|
24
|
+
>>> from luminarycloud.params.enum import UnitSystem
|
|
25
|
+
>>> UnitSystem.UNIT_SYSTEM_CUSTOM
|
|
26
|
+
>>> UnitSystem.UNIT_SYSTEM_SI
|
|
27
|
+
>>> UnitSystem.UNIT_SYSTEM_US
|
|
20
28
|
"""
|
|
21
29
|
|
|
22
30
|
UNIT_SYSTEM_CUSTOM = _clientpb.UNIT_SYSTEM_CUSTOM
|
|
@@ -31,13 +39,22 @@ class TemperatureUnit(_IntEnum):
|
|
|
31
39
|
Attributes
|
|
32
40
|
----------
|
|
33
41
|
UNIT_KELVIN
|
|
34
|
-
|
|
42
|
+
Kelvin scale.
|
|
35
43
|
UNIT_CELSIUS
|
|
36
44
|
Degree Celsius.
|
|
37
45
|
UNIT_RANKINE
|
|
38
46
|
Degree Rankine.
|
|
39
47
|
UNIT_FAHRENHEIT
|
|
40
48
|
Degree Fahrenheit.
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
Examples
|
|
52
|
+
--------
|
|
53
|
+
>>> from luminarycloud.params.enum import TemperatureUnit
|
|
54
|
+
>>> TemperatureUnit.UNIT_KELVIN
|
|
55
|
+
>>> TemperatureUnit.UNIT_CELSIUS
|
|
56
|
+
>>> TemperatureUnit.UNIT_RANKINE
|
|
57
|
+
>>> TemperatureUnit.UNIT_FAHRENHEIT
|
|
41
58
|
"""
|
|
42
59
|
|
|
43
60
|
UNIT_KELVIN = _clientpb.UNIT_KELVIN
|
|
@@ -58,6 +75,14 @@ class MassUnit(_IntEnum):
|
|
|
58
75
|
Gram.
|
|
59
76
|
UNIT_POUND
|
|
60
77
|
Pound.
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
Examples
|
|
81
|
+
--------
|
|
82
|
+
>>> from luminarycloud.params.enum import MassUnit
|
|
83
|
+
>>> MassUnit.UNIT_KILOGRAM
|
|
84
|
+
>>> MassUnit.UNIT_GRAM
|
|
85
|
+
>>> MassUnit.UNIT_POUND
|
|
61
86
|
"""
|
|
62
87
|
|
|
63
88
|
UNIT_KILOGRAM = _clientpb.UNIT_KILOGRAM
|
|
@@ -79,6 +104,15 @@ class LengthUnit(_IntEnum):
|
|
|
79
104
|
Foot.
|
|
80
105
|
UNIT_INCH
|
|
81
106
|
Inch.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
Examples
|
|
110
|
+
--------
|
|
111
|
+
>>> from luminarycloud.params.enum import LengthUnit
|
|
112
|
+
>>> LengthUnit.UNIT_METER
|
|
113
|
+
>>> LengthUnit.UNIT_MILLIMETER
|
|
114
|
+
>>> LengthUnit.UNIT_FOOT
|
|
115
|
+
>>> LengthUnit.UNIT_INCH
|
|
82
116
|
"""
|
|
83
117
|
|
|
84
118
|
UNIT_METER = _clientpb.UNIT_METER
|
|
@@ -97,6 +131,13 @@ class AngleUnit(_IntEnum):
|
|
|
97
131
|
Degree.
|
|
98
132
|
UNIT_RADIAN
|
|
99
133
|
Radian.
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
Examples
|
|
137
|
+
--------
|
|
138
|
+
>>> from luminarycloud.params.enum import AngleUnit
|
|
139
|
+
>>> AngleUnit.UNIT_DEGREE
|
|
140
|
+
>>> AngleUnit.UNIT_RADIAN
|
|
100
141
|
"""
|
|
101
142
|
|
|
102
143
|
UNIT_DEGREE = _clientpb.UNIT_DEGREE
|
|
@@ -111,6 +152,12 @@ class TimeUnit(_IntEnum):
|
|
|
111
152
|
----------
|
|
112
153
|
UNIT_SECOND
|
|
113
154
|
Second.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
Examples
|
|
158
|
+
--------
|
|
159
|
+
>>> from luminarycloud.params.enum import TimeUnit
|
|
160
|
+
>>> TimeUnit.UNIT_SECOND
|
|
114
161
|
"""
|
|
115
162
|
|
|
116
163
|
UNIT_SECOND = _clientpb.UNIT_SECOND
|
|
@@ -130,6 +177,15 @@ class VelocityUnit(_IntEnum):
|
|
|
130
177
|
Feet per second.
|
|
131
178
|
UNIT_MILES_PER_HOUR
|
|
132
179
|
Miles per hour.
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Examples
|
|
183
|
+
--------
|
|
184
|
+
>>> from luminarycloud.params.enum import VelocityUnit
|
|
185
|
+
>>> VelocityUnit.UNIT_METER_PER_SECOND
|
|
186
|
+
>>> VelocityUnit.UNIT_KM_PER_HOUR
|
|
187
|
+
>>> VelocityUnit.UNIT_FEET_PER_SECOND
|
|
188
|
+
>>> VelocityUnit.UNIT_MILES_PER_HOUR
|
|
133
189
|
"""
|
|
134
190
|
|
|
135
191
|
UNIT_METER_PER_SECOND = _clientpb.UNIT_METER_PER_SECOND
|
|
@@ -148,6 +204,13 @@ class AngularVelocityUnit(_IntEnum):
|
|
|
148
204
|
Radian per second.
|
|
149
205
|
UNIT_RPM
|
|
150
206
|
Revolutions per minute.
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
Examples
|
|
210
|
+
--------
|
|
211
|
+
>>> from luminarycloud.params.enum import AngularVelocityUnit
|
|
212
|
+
>>> AngularVelocityUnit.UNIT_RADIAN_PER_SECOND
|
|
213
|
+
>>> AngularVelocityUnit.UNIT_RPM
|
|
151
214
|
"""
|
|
152
215
|
|
|
153
216
|
UNIT_RADIAN_PER_SECOND = _clientpb.UNIT_RADIAN_PER_SECOND
|
|
@@ -164,6 +227,13 @@ class ForceUnit(_IntEnum):
|
|
|
164
227
|
Newton.
|
|
165
228
|
UNIT_POUND_FORCE
|
|
166
229
|
Pound-force.
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Examples
|
|
233
|
+
--------
|
|
234
|
+
>>> from luminarycloud.params.enum import ForceUnit
|
|
235
|
+
>>> ForceUnit.UNIT_NEWTON
|
|
236
|
+
>>> ForceUnit.UNIT_POUND_FORCE
|
|
167
237
|
"""
|
|
168
238
|
|
|
169
239
|
UNIT_NEWTON = _clientpb.UNIT_NEWTON
|
|
@@ -180,6 +250,13 @@ class MomentUnit(_IntEnum):
|
|
|
180
250
|
Newton-meter.
|
|
181
251
|
UNIT_POUND_FOOT
|
|
182
252
|
Pound-foot.
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
Examples
|
|
256
|
+
--------
|
|
257
|
+
>>> from luminarycloud.params.enum import MomentUnit
|
|
258
|
+
>>> MomentUnit.UNIT_NEWTON_METER
|
|
259
|
+
>>> MomentUnit.UNIT_POUND_FOOT
|
|
183
260
|
"""
|
|
184
261
|
|
|
185
262
|
UNIT_NEWTON_METER = _clientpb.UNIT_NEWTON_METER
|
|
@@ -198,6 +275,14 @@ class PressureUnit(_IntEnum):
|
|
|
198
275
|
Bar.
|
|
199
276
|
UNIT_PSI
|
|
200
277
|
Pound per square inch.
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
Examples
|
|
281
|
+
--------
|
|
282
|
+
>>> from luminarycloud.params.enum import PressureUnit
|
|
283
|
+
>>> PressureUnit.UNIT_PASCAL
|
|
284
|
+
>>> PressureUnit.UNIT_BAR
|
|
285
|
+
>>> PressureUnit.UNIT_PSI
|
|
201
286
|
"""
|
|
202
287
|
|
|
203
288
|
UNIT_PASCAL = _clientpb.UNIT_PASCAL
|
|
@@ -215,6 +300,13 @@ class EnergyUnit(_IntEnum):
|
|
|
215
300
|
Joule.
|
|
216
301
|
UNIT_BTU
|
|
217
302
|
British thermal unit.
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
Examples
|
|
306
|
+
--------
|
|
307
|
+
>>> from luminarycloud.params.enum import EnergyUnit
|
|
308
|
+
>>> EnergyUnit.UNIT_JOULE
|
|
309
|
+
>>> EnergyUnit.UNIT_BTU
|
|
218
310
|
"""
|
|
219
311
|
|
|
220
312
|
UNIT_JOULE = _clientpb.UNIT_JOULE
|
|
@@ -231,6 +323,13 @@ class PowerUnit(_IntEnum):
|
|
|
231
323
|
Watt.
|
|
232
324
|
UNIT_HORSEPOWER
|
|
233
325
|
Horsepower.
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
Examples
|
|
329
|
+
--------
|
|
330
|
+
>>> from luminarycloud.params.enum import PowerUnit
|
|
331
|
+
>>> PowerUnit.UNIT_WATT
|
|
332
|
+
>>> PowerUnit.UNIT_HORSEPOWER
|
|
234
333
|
"""
|
|
235
334
|
|
|
236
335
|
UNIT_WATT = _clientpb.UNIT_WATT
|
|
@@ -253,6 +352,16 @@ class VolumeUnit(_IntEnum):
|
|
|
253
352
|
Cubic inch.
|
|
254
353
|
UNIT_CUBIC_FOOT
|
|
255
354
|
Cubic foot.
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
Examples
|
|
358
|
+
--------
|
|
359
|
+
>>> from luminarycloud.params.enum import VolumeUnit
|
|
360
|
+
>>> VolumeUnit.UNIT_CUBIC_METER
|
|
361
|
+
>>> VolumeUnit.UNIT_LITER
|
|
362
|
+
>>> VolumeUnit.UNIT_GALLON
|
|
363
|
+
>>> VolumeUnit.UNIT_CUBIC_INCH
|
|
364
|
+
>>> VolumeUnit.UNIT_CUBIC_FOOT
|
|
256
365
|
"""
|
|
257
366
|
|
|
258
367
|
UNIT_CUBIC_METER = _clientpb.UNIT_CUBIC_METER
|
|
@@ -272,6 +381,13 @@ class VolumetricFlowUnit(_IntEnum):
|
|
|
272
381
|
Cubic meter per second.
|
|
273
382
|
UNIT_CFM
|
|
274
383
|
Cubic feet per minute.
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
Examples
|
|
387
|
+
--------
|
|
388
|
+
>>> from luminarycloud.params.enum import VolumetricFlowUnit
|
|
389
|
+
>>> VolumetricFlowUnit.UNIT_CUBIC_METER_PER_SECOND
|
|
390
|
+
>>> VolumetricFlowUnit.UNIT_CFM
|
|
275
391
|
"""
|
|
276
392
|
|
|
277
393
|
UNIT_CUBIC_METER_PER_SECOND = _clientpb.UNIT_CUBIC_METER_PER_SECOND
|
|
@@ -290,6 +406,14 @@ class ViscosityUnit(_IntEnum):
|
|
|
290
406
|
Centipoise.
|
|
291
407
|
UNIT_POUND_SECOND_PER_SQUARE_FOOT
|
|
292
408
|
Pound-seconds per square foot.
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
Examples
|
|
412
|
+
--------
|
|
413
|
+
>>> from luminarycloud.params.enum import ViscosityUnit
|
|
414
|
+
>>> ViscosityUnit.UNIT_PASCAL_SECOND
|
|
415
|
+
>>> ViscosityUnit.UNIT_CENTIPOISE
|
|
416
|
+
>>> ViscosityUnit.UNIT_POUND_SECOND_PER_SQUARE_FOOT
|
|
293
417
|
"""
|
|
294
418
|
|
|
295
419
|
UNIT_PASCAL_SECOND = _clientpb.UNIT_PASCAL_SECOND
|
|
@@ -307,6 +431,13 @@ class ConductivityUnit(_IntEnum):
|
|
|
307
431
|
Watt per meter-Kelvin.
|
|
308
432
|
UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT
|
|
309
433
|
BTU per hour-foot-Fahrenheit.
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
Examples
|
|
437
|
+
--------
|
|
438
|
+
>>> from luminarycloud.params.enum import ConductivityUnit
|
|
439
|
+
>>> ConductivityUnit.UNIT_WATT_PER_METER_KELVIN
|
|
440
|
+
>>> ConductivityUnit.UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT
|
|
310
441
|
"""
|
|
311
442
|
|
|
312
443
|
UNIT_WATT_PER_METER_KELVIN = _clientpb.UNIT_WATT_PER_METER_KELVIN
|
|
@@ -323,6 +454,13 @@ class MolecularWeightUnit(_IntEnum):
|
|
|
323
454
|
Grams per mole.
|
|
324
455
|
UNIT_POUND_PER_POUND_MOLE
|
|
325
456
|
Pounds per pound-mole.
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
Examples
|
|
460
|
+
--------
|
|
461
|
+
>>> from luminarycloud.params.enum import MolecularWeightUnit
|
|
462
|
+
>>> MolecularWeightUnit.UNIT_GRAM_PER_MOLE
|
|
463
|
+
>>> MolecularWeightUnit.UNIT_POUND_PER_POUND_MOLE
|
|
326
464
|
"""
|
|
327
465
|
|
|
328
466
|
UNIT_GRAM_PER_MOLE = _clientpb.UNIT_GRAM_PER_MOLE
|
|
@@ -341,6 +479,14 @@ class DensityRelationship(_IntEnum):
|
|
|
341
479
|
Constant density fluid (heat transfer is not simulated).
|
|
342
480
|
CONSTANT_DENSITY_ENERGY
|
|
343
481
|
Constant density fluid with energy equation.
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
Examples
|
|
485
|
+
--------
|
|
486
|
+
>>> from luminarycloud.params.enum import DensityRelationship
|
|
487
|
+
>>> DensityRelationship.IDEAL_GAS
|
|
488
|
+
>>> DensityRelationship.CONSTANT_DENSITY
|
|
489
|
+
>>> DensityRelationship.CONSTANT_DENSITY_ENERGY
|
|
344
490
|
"""
|
|
345
491
|
|
|
346
492
|
IDEAL_GAS = _clientpb.IDEAL_GAS
|
|
@@ -360,6 +506,14 @@ class LaminarThermalConductivity(_IntEnum):
|
|
|
360
506
|
Constant laminar thermal conductivity or tabulated values vs temperature.
|
|
361
507
|
TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY
|
|
362
508
|
Tabulated thermal conductivity values vs temperature.
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
Examples
|
|
512
|
+
--------
|
|
513
|
+
>>> from luminarycloud.params.enum import LaminarThermalConductivity
|
|
514
|
+
>>> LaminarThermalConductivity.LAMINAR_CONSTANT_THERMAL_PRANDTL
|
|
515
|
+
>>> LaminarThermalConductivity.LAMINAR_CONSTANT_THERMAL_CONDUCTIVITY
|
|
516
|
+
>>> LaminarThermalConductivity.TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY
|
|
363
517
|
"""
|
|
364
518
|
|
|
365
519
|
LAMINAR_CONSTANT_THERMAL_PRANDTL = _clientpb.LAMINAR_CONSTANT_THERMAL_PRANDTL
|
|
@@ -379,6 +533,13 @@ class BoussinesqApproximation(_IntEnum):
|
|
|
379
533
|
Disable Boussinesq approximation.
|
|
380
534
|
BOUSSINESQ_ON
|
|
381
535
|
Enable Boussinesq approximation.
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Examples
|
|
539
|
+
--------
|
|
540
|
+
>>> from luminarycloud.params.enum import BoussinesqApproximation
|
|
541
|
+
>>> BoussinesqApproximation.BOUSSINESQ_OFF
|
|
542
|
+
>>> BoussinesqApproximation.BOUSSINESQ_ON
|
|
382
543
|
"""
|
|
383
544
|
|
|
384
545
|
BOUSSINESQ_OFF = _clientpb.BOUSSINESQ_OFF
|
|
@@ -399,6 +560,15 @@ class MaterialFluidPreset(_IntEnum):
|
|
|
399
560
|
Properties of water at 1 atmosphere and 20° Celsius
|
|
400
561
|
CUSTOM_MATERIAL_FLUID
|
|
401
562
|
A custom set of material properties.
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Examples
|
|
566
|
+
--------
|
|
567
|
+
>>> from luminarycloud.params.enum import MaterialFluidPreset
|
|
568
|
+
>>> MaterialFluidPreset.UNSET_MATERIAL_FLUID_PRESET
|
|
569
|
+
>>> MaterialFluidPreset.STANDARD_AIR
|
|
570
|
+
>>> MaterialFluidPreset.WATER_NTP
|
|
571
|
+
>>> MaterialFluidPreset.CUSTOM_MATERIAL_FLUID
|
|
402
572
|
"""
|
|
403
573
|
|
|
404
574
|
UNSET_MATERIAL_FLUID_PRESET = _clientpb.UNSET_MATERIAL_FLUID_PRESET
|
|
@@ -419,6 +589,14 @@ class LaminarViscosityModelNewtonian(_IntEnum):
|
|
|
419
589
|
Constant dynamic viscosity or tabulated values vs temperature.
|
|
420
590
|
TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY
|
|
421
591
|
Tabulated dynamic viscosity values vs temperature.
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
Examples
|
|
595
|
+
--------
|
|
596
|
+
>>> from luminarycloud.params.enum import LaminarViscosityModelNewtonian
|
|
597
|
+
>>> LaminarViscosityModelNewtonian.SUTHERLAND
|
|
598
|
+
>>> LaminarViscosityModelNewtonian.LAMINAR_CONSTANT_VISCOSITY
|
|
599
|
+
>>> LaminarViscosityModelNewtonian.TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY
|
|
422
600
|
"""
|
|
423
601
|
|
|
424
602
|
SUTHERLAND = _clientpb.SUTHERLAND
|
|
@@ -444,6 +622,17 @@ class MaterialSolidPreset(_IntEnum):
|
|
|
444
622
|
Properties of pure titanium.
|
|
445
623
|
CUSTOM_MATERIAL_SOLID
|
|
446
624
|
A custom set of material properties.
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
Examples
|
|
628
|
+
--------
|
|
629
|
+
>>> from luminarycloud.params.enum import MaterialSolidPreset
|
|
630
|
+
>>> MaterialSolidPreset.ALUMINUM
|
|
631
|
+
>>> MaterialSolidPreset.COPPER
|
|
632
|
+
>>> MaterialSolidPreset.IRON
|
|
633
|
+
>>> MaterialSolidPreset.NICKEL
|
|
634
|
+
>>> MaterialSolidPreset.TITANIUM
|
|
635
|
+
>>> MaterialSolidPreset.CUSTOM_MATERIAL_SOLID
|
|
447
636
|
"""
|
|
448
637
|
|
|
449
638
|
ALUMINUM = _clientpb.ALUMINUM
|
|
@@ -467,6 +656,14 @@ class FloatType(_IntEnum):
|
|
|
467
656
|
ADA1D
|
|
468
657
|
Solve the discrete adjoint equations to obtain geometric
|
|
469
658
|
sensitivities with respect to an output of interest.
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Examples
|
|
662
|
+
--------
|
|
663
|
+
>>> from luminarycloud.params.enum import FloatType
|
|
664
|
+
>>> FloatType.DOUBLE
|
|
665
|
+
>>> FloatType.ADT1D
|
|
666
|
+
>>> FloatType.ADA1D
|
|
470
667
|
"""
|
|
471
668
|
|
|
472
669
|
DOUBLE = _clientpb.DOUBLE
|
|
@@ -484,6 +681,13 @@ class Gravity(_IntEnum):
|
|
|
484
681
|
Disable gravity or other body force.
|
|
485
682
|
GRAVITY_ON
|
|
486
683
|
Enable gravity or other body force.
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
Examples
|
|
687
|
+
--------
|
|
688
|
+
>>> from luminarycloud.params.enum import Gravity
|
|
689
|
+
>>> Gravity.GRAVITY_OFF
|
|
690
|
+
>>> Gravity.GRAVITY_ON
|
|
487
691
|
"""
|
|
488
692
|
|
|
489
693
|
GRAVITY_OFF = _clientpb.GRAVITY_OFF
|
|
@@ -500,6 +704,13 @@ class FlowBehavior(_IntEnum):
|
|
|
500
704
|
Solve for a steady-state solution of the governing equations.
|
|
501
705
|
TRANSIENT
|
|
502
706
|
Solve for a time-accurate solution of the governing equations.
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Examples
|
|
710
|
+
--------
|
|
711
|
+
>>> from luminarycloud.params.enum import FlowBehavior
|
|
712
|
+
>>> FlowBehavior.STEADY
|
|
713
|
+
>>> FlowBehavior.TRANSIENT
|
|
503
714
|
"""
|
|
504
715
|
|
|
505
716
|
STEADY = _clientpb.STEADY
|
|
@@ -516,6 +727,13 @@ class TimeMarching(_IntEnum):
|
|
|
516
727
|
Implicit scheme (dual time stepping) for time-accurate integration.
|
|
517
728
|
TIME_EXPLICIT
|
|
518
729
|
Explicit scheme for time-accurate integration.
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
Examples
|
|
733
|
+
--------
|
|
734
|
+
>>> from luminarycloud.params.enum import TimeMarching
|
|
735
|
+
>>> TimeMarching.TIME_IMPLICIT
|
|
736
|
+
>>> TimeMarching.TIME_EXPLICIT
|
|
519
737
|
"""
|
|
520
738
|
|
|
521
739
|
TIME_IMPLICIT = _clientpb.TIME_IMPLICIT
|
|
@@ -532,6 +750,13 @@ class TimeImplicitOrder(_IntEnum):
|
|
|
532
750
|
Second-order backward Euler integration.
|
|
533
751
|
TIME_FIRST
|
|
534
752
|
First-order backward Euler integration.
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
Examples
|
|
756
|
+
--------
|
|
757
|
+
>>> from luminarycloud.params.enum import TimeImplicitOrder
|
|
758
|
+
>>> TimeImplicitOrder.TIME_SECOND
|
|
759
|
+
>>> TimeImplicitOrder.TIME_FIRST
|
|
535
760
|
"""
|
|
536
761
|
|
|
537
762
|
TIME_SECOND = _clientpb.TIME_SECOND
|
|
@@ -546,6 +771,12 @@ class PhysicalTimeStepMethod(_IntEnum):
|
|
|
546
771
|
----------
|
|
547
772
|
FIXED_TIME_STEP
|
|
548
773
|
Apply a fixed physical time step.
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
Examples
|
|
777
|
+
--------
|
|
778
|
+
>>> from luminarycloud.params.enum import PhysicalTimeStepMethod
|
|
779
|
+
>>> PhysicalTimeStepMethod.FIXED_TIME_STEP
|
|
549
780
|
"""
|
|
550
781
|
|
|
551
782
|
FIXED_TIME_STEP = _clientpb.FIXED_TIME_STEP
|
|
@@ -563,6 +794,13 @@ class TimeStepRamp(_IntEnum):
|
|
|
563
794
|
Disable physical time step ramping.
|
|
564
795
|
TIME_STEP_RAMP_ON
|
|
565
796
|
Enable physical time step ramping.
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
Examples
|
|
800
|
+
--------
|
|
801
|
+
>>> from luminarycloud.params.enum import TimeStepRamp
|
|
802
|
+
>>> TimeStepRamp.TIME_STEP_RAMP_OFF
|
|
803
|
+
>>> TimeStepRamp.TIME_STEP_RAMP_ON
|
|
566
804
|
"""
|
|
567
805
|
|
|
568
806
|
TIME_STEP_RAMP_OFF = _clientpb.TIME_STEP_RAMP_OFF
|
|
@@ -579,6 +817,13 @@ class ComputeStatistics(_IntEnum):
|
|
|
579
817
|
Disable computation of transient statistics.
|
|
580
818
|
COMPUTE_STATISTICS_ON
|
|
581
819
|
Enable computation of transient statistics.
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
Examples
|
|
823
|
+
--------
|
|
824
|
+
>>> from luminarycloud.params.enum import ComputeStatistics
|
|
825
|
+
>>> ComputeStatistics.COMPUTE_STATISTICS_OFF
|
|
826
|
+
>>> ComputeStatistics.COMPUTE_STATISTICS_ON
|
|
582
827
|
"""
|
|
583
828
|
|
|
584
829
|
COMPUTE_STATISTICS_OFF = _clientpb.COMPUTE_STATISTICS_OFF
|
|
@@ -599,6 +844,15 @@ class MotionType(_IntEnum):
|
|
|
599
844
|
Motion is defined by specifying an initial rotation and constant angular velocity.
|
|
600
845
|
CONSTANT_VELOCITY_MOTION
|
|
601
846
|
Motion is defined by specifying constant translational and angular velocities.
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
Examples
|
|
850
|
+
--------
|
|
851
|
+
>>> from luminarycloud.params.enum import MotionType
|
|
852
|
+
>>> MotionType.NO_MOTION
|
|
853
|
+
>>> MotionType.CONSTANT_TRANSLATION_MOTION
|
|
854
|
+
>>> MotionType.CONSTANT_ANGULAR_MOTION
|
|
855
|
+
>>> MotionType.CONSTANT_VELOCITY_MOTION
|
|
602
856
|
"""
|
|
603
857
|
|
|
604
858
|
NO_MOTION = _clientpb.NO_MOTION
|
|
@@ -618,6 +872,13 @@ class MotionFormulation(_IntEnum):
|
|
|
618
872
|
MRF_MOTION_FORMULATION
|
|
619
873
|
The equations are solved in a moving reference frame without
|
|
620
874
|
moving the mesh. This choice affects the child frames of this frame.
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
Examples
|
|
878
|
+
--------
|
|
879
|
+
>>> from luminarycloud.params.enum import MotionFormulation
|
|
880
|
+
>>> MotionFormulation.AUTOMATIC_MOTION_FORMULATION
|
|
881
|
+
>>> MotionFormulation.MRF_MOTION_FORMULATION
|
|
621
882
|
"""
|
|
622
883
|
|
|
623
884
|
AUTOMATIC_MOTION_FORMULATION = _clientpb.AUTOMATIC_MOTION_FORMULATION
|
|
@@ -634,6 +895,13 @@ class MotionSpecification(_IntEnum):
|
|
|
634
895
|
The mesh is repositioned at simulation start time using the initial displacement or rotation
|
|
635
896
|
MOTION_SPECIFICATION_NORMAL
|
|
636
897
|
Specify both initial translation or rotation and angular or translational velocities
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
Examples
|
|
901
|
+
--------
|
|
902
|
+
>>> from luminarycloud.params.enum import MotionSpecification
|
|
903
|
+
>>> MotionSpecification.MOTION_SPECIFICATION_REPOSITION
|
|
904
|
+
>>> MotionSpecification.MOTION_SPECIFICATION_NORMAL
|
|
637
905
|
"""
|
|
638
906
|
|
|
639
907
|
MOTION_SPECIFICATION_REPOSITION = _clientpb.MOTION_SPECIFICATION_REPOSITION
|
|
@@ -652,6 +920,14 @@ class TransformType(_IntEnum):
|
|
|
652
920
|
Rotational Transformation
|
|
653
921
|
TRANSLATIONAL_TRANSFORM
|
|
654
922
|
Translational Transformation
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
Examples
|
|
926
|
+
--------
|
|
927
|
+
>>> from luminarycloud.params.enum import TransformType
|
|
928
|
+
>>> TransformType.NO_TRANSFORM
|
|
929
|
+
>>> TransformType.ROTATIONAL_TRANSFORM
|
|
930
|
+
>>> TransformType.TRANSLATIONAL_TRANSFORM
|
|
655
931
|
"""
|
|
656
932
|
|
|
657
933
|
NO_TRANSFORM = _clientpb.NO_TRANSFORM
|
|
@@ -673,6 +949,15 @@ class ParticleGroupType(_IntEnum):
|
|
|
673
949
|
Injects material into the solver at particle locations
|
|
674
950
|
PROBE_POINTS
|
|
675
951
|
Reports solver variables at probe locations.
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
Examples
|
|
955
|
+
--------
|
|
956
|
+
>>> from luminarycloud.params.enum import ParticleGroupType
|
|
957
|
+
>>> ParticleGroupType.ACTUATOR_DISK
|
|
958
|
+
>>> ParticleGroupType.ACTUATOR_LINE
|
|
959
|
+
>>> ParticleGroupType.SOURCE_POINTS
|
|
960
|
+
>>> ParticleGroupType.PROBE_POINTS
|
|
676
961
|
"""
|
|
677
962
|
|
|
678
963
|
ACTUATOR_DISK = _clientpb.ACTUATOR_DISK
|
|
@@ -691,6 +976,13 @@ class ActuatorDiskOrientationSelection(_IntEnum):
|
|
|
691
976
|
Specify rotation about x-, y-, and z- axes
|
|
692
977
|
ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR
|
|
693
978
|
Specify the normal direction to the plane of the actuator disk.
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
Examples
|
|
982
|
+
--------
|
|
983
|
+
>>> from luminarycloud.params.enum import ActuatorDiskOrientationSelection
|
|
984
|
+
>>> ActuatorDiskOrientationSelection.ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES
|
|
985
|
+
>>> ActuatorDiskOrientationSelection.ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR
|
|
694
986
|
"""
|
|
695
987
|
|
|
696
988
|
ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES = _clientpb.ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES
|
|
@@ -707,6 +999,13 @@ class DebugOutput(_IntEnum):
|
|
|
707
999
|
Disable debug output.
|
|
708
1000
|
SOLN_DEBUG_OUTPUT_ON
|
|
709
1001
|
Enable debug output.
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Examples
|
|
1005
|
+
--------
|
|
1006
|
+
>>> from luminarycloud.params.enum import DebugOutput
|
|
1007
|
+
>>> DebugOutput.SOLN_DEBUG_OUTPUT_OFF
|
|
1008
|
+
>>> DebugOutput.SOLN_DEBUG_OUTPUT_ON
|
|
710
1009
|
"""
|
|
711
1010
|
|
|
712
1011
|
SOLN_DEBUG_OUTPUT_OFF = _clientpb.SOLN_DEBUG_OUTPUT_OFF
|
|
@@ -723,6 +1022,13 @@ class DebugOutputInteriorSurfaceData(_IntEnum):
|
|
|
723
1022
|
Disable debug output.
|
|
724
1023
|
SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON
|
|
725
1024
|
Enable debug output.
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
Examples
|
|
1028
|
+
--------
|
|
1029
|
+
>>> from luminarycloud.params.enum import DebugOutputInteriorSurfaceData
|
|
1030
|
+
>>> DebugOutputInteriorSurfaceData.SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF
|
|
1031
|
+
>>> DebugOutputInteriorSurfaceData.SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON
|
|
726
1032
|
"""
|
|
727
1033
|
|
|
728
1034
|
SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF = _clientpb.SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF
|
|
@@ -739,6 +1045,13 @@ class MeshingMethod(_IntEnum):
|
|
|
739
1045
|
Using user inputs to guide single, manual mesh generation.
|
|
740
1046
|
MESH_METHOD_AUTO
|
|
741
1047
|
Using solution-based adaptive mesh refinement.
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
Examples
|
|
1051
|
+
--------
|
|
1052
|
+
>>> from luminarycloud.params.enum import MeshingMethod
|
|
1053
|
+
>>> MeshingMethod.MESH_METHOD_MANUAL
|
|
1054
|
+
>>> MeshingMethod.MESH_METHOD_AUTO
|
|
742
1055
|
"""
|
|
743
1056
|
|
|
744
1057
|
MESH_METHOD_MANUAL = _clientpb.MESH_METHOD_MANUAL
|
|
@@ -758,6 +1071,14 @@ class AllTet(_IntEnum):
|
|
|
758
1071
|
|
|
759
1072
|
ALL_TET_ON
|
|
760
1073
|
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
Examples
|
|
1077
|
+
--------
|
|
1078
|
+
>>> from luminarycloud.params.enum import AllTet
|
|
1079
|
+
>>> AllTet.ALL_TET_UNSET
|
|
1080
|
+
>>> AllTet.ALL_TET_OFF
|
|
1081
|
+
>>> AllTet.ALL_TET_ON
|
|
761
1082
|
"""
|
|
762
1083
|
|
|
763
1084
|
ALL_TET_UNSET = _clientpb.ALL_TET_UNSET
|
|
@@ -775,6 +1096,13 @@ class RelaxationMethod(_IntEnum):
|
|
|
775
1096
|
Apply an implicit relaxation scheme.
|
|
776
1097
|
EXPLICIT
|
|
777
1098
|
Apply an explicit relaxation scheme.
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Examples
|
|
1102
|
+
--------
|
|
1103
|
+
>>> from luminarycloud.params.enum import RelaxationMethod
|
|
1104
|
+
>>> RelaxationMethod.IMPLICIT
|
|
1105
|
+
>>> RelaxationMethod.EXPLICIT
|
|
778
1106
|
"""
|
|
779
1107
|
|
|
780
1108
|
IMPLICIT = _clientpb.IMPLICIT
|
|
@@ -789,6 +1117,12 @@ class ImplicitMethod(_IntEnum):
|
|
|
789
1117
|
----------
|
|
790
1118
|
BACKWARD_EULER
|
|
791
1119
|
First-order backward Euler scheme.
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
Examples
|
|
1123
|
+
--------
|
|
1124
|
+
>>> from luminarycloud.params.enum import ImplicitMethod
|
|
1125
|
+
>>> ImplicitMethod.BACKWARD_EULER
|
|
792
1126
|
"""
|
|
793
1127
|
|
|
794
1128
|
BACKWARD_EULER = _clientpb.BACKWARD_EULER
|
|
@@ -808,6 +1142,15 @@ class LinearSolverType(_IntEnum):
|
|
|
808
1142
|
AMG + Krylov iterative method.
|
|
809
1143
|
AMG_AMGX
|
|
810
1144
|
AMG iterative method.
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
Examples
|
|
1148
|
+
--------
|
|
1149
|
+
>>> from luminarycloud.params.enum import LinearSolverType
|
|
1150
|
+
>>> LinearSolverType.GS
|
|
1151
|
+
>>> LinearSolverType.GS_AMGX
|
|
1152
|
+
>>> LinearSolverType.AMG_KRYLOV_AMGX
|
|
1153
|
+
>>> LinearSolverType.AMG_AMGX
|
|
811
1154
|
"""
|
|
812
1155
|
|
|
813
1156
|
GS = _clientpb.GS
|
|
@@ -828,6 +1171,14 @@ class LinsolAmgCycleType(_IntEnum):
|
|
|
828
1171
|
W cycle
|
|
829
1172
|
LINSOL_AMG_CYCLE_TYPE_F
|
|
830
1173
|
F cycle
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
Examples
|
|
1177
|
+
--------
|
|
1178
|
+
>>> from luminarycloud.params.enum import LinsolAmgCycleType
|
|
1179
|
+
>>> LinsolAmgCycleType.LINSOL_AMG_CYCLE_TYPE_V
|
|
1180
|
+
>>> LinsolAmgCycleType.LINSOL_AMG_CYCLE_TYPE_W
|
|
1181
|
+
>>> LinsolAmgCycleType.LINSOL_AMG_CYCLE_TYPE_F
|
|
831
1182
|
"""
|
|
832
1183
|
|
|
833
1184
|
LINSOL_AMG_CYCLE_TYPE_V = _clientpb.LINSOL_AMG_CYCLE_TYPE_V
|
|
@@ -847,6 +1198,14 @@ class LinsolAmgSmoother(_IntEnum):
|
|
|
847
1198
|
Gauss-Seidel
|
|
848
1199
|
LINSOL_AMG_SMOOTHER_SYM_GS
|
|
849
1200
|
Symmetric Gauss-Seidel
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
Examples
|
|
1204
|
+
--------
|
|
1205
|
+
>>> from luminarycloud.params.enum import LinsolAmgSmoother
|
|
1206
|
+
>>> LinsolAmgSmoother.LINSOL_AMG_SMOOTHER_JACOBI
|
|
1207
|
+
>>> LinsolAmgSmoother.LINSOL_AMG_SMOOTHER_GS
|
|
1208
|
+
>>> LinsolAmgSmoother.LINSOL_AMG_SMOOTHER_SYM_GS
|
|
850
1209
|
"""
|
|
851
1210
|
|
|
852
1211
|
LINSOL_AMG_SMOOTHER_JACOBI = _clientpb.LINSOL_AMG_SMOOTHER_JACOBI
|
|
@@ -866,6 +1225,14 @@ class ExplicitMethod(_IntEnum):
|
|
|
866
1225
|
Total Variation Diminishing Runge-Kutta third-order scheme.
|
|
867
1226
|
FORWARD_EULER
|
|
868
1227
|
First-order forward Euler scheme.
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Examples
|
|
1231
|
+
--------
|
|
1232
|
+
>>> from luminarycloud.params.enum import ExplicitMethod
|
|
1233
|
+
>>> ExplicitMethod.RK_4
|
|
1234
|
+
>>> ExplicitMethod.TVD_RK_3
|
|
1235
|
+
>>> ExplicitMethod.FORWARD_EULER
|
|
869
1236
|
"""
|
|
870
1237
|
|
|
871
1238
|
RK_4 = _clientpb.RK_4
|
|
@@ -889,6 +1256,16 @@ class SolutionControlsHeatPreset(_IntEnum):
|
|
|
889
1256
|
Aggressive settings further biased towards speed.
|
|
890
1257
|
CUSTOM_SOLUTION_CONTROLS_HEAT
|
|
891
1258
|
Custom solution controls.
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
Examples
|
|
1262
|
+
--------
|
|
1263
|
+
>>> from luminarycloud.params.enum import SolutionControlsHeatPreset
|
|
1264
|
+
>>> SolutionControlsHeatPreset.UNSET_SOLUTION_CONTROLS_HEAT_PRESET
|
|
1265
|
+
>>> SolutionControlsHeatPreset.DEFAULT_SOLUTION_CONTROLS_HEAT
|
|
1266
|
+
>>> SolutionControlsHeatPreset.INTERMEDIATE_SOLUTION_CONTROLS_HEAT
|
|
1267
|
+
>>> SolutionControlsHeatPreset.AGGRESSIVE_SOLUTION_CONTROLS_HEAT
|
|
1268
|
+
>>> SolutionControlsHeatPreset.CUSTOM_SOLUTION_CONTROLS_HEAT
|
|
892
1269
|
"""
|
|
893
1270
|
|
|
894
1271
|
UNSET_SOLUTION_CONTROLS_HEAT_PRESET = _clientpb.UNSET_SOLUTION_CONTROLS_HEAT_PRESET
|
|
@@ -910,6 +1287,14 @@ class AdjointSolutionMethod(_IntEnum):
|
|
|
910
1287
|
Use a preconditioned Richardson iteration to solve the equations.
|
|
911
1288
|
ADJOINT_METHOD_ALGORITHMIC
|
|
912
1289
|
Use a fully consistent algorithmic differentiation approach.
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
Examples
|
|
1293
|
+
--------
|
|
1294
|
+
>>> from luminarycloud.params.enum import AdjointSolutionMethod
|
|
1295
|
+
>>> AdjointSolutionMethod.ADJOINT_METHOD_GMRES
|
|
1296
|
+
>>> AdjointSolutionMethod.ADJOINT_METHOD_RICHARDSON
|
|
1297
|
+
>>> AdjointSolutionMethod.ADJOINT_METHOD_ALGORITHMIC
|
|
913
1298
|
"""
|
|
914
1299
|
|
|
915
1300
|
ADJOINT_METHOD_GMRES = _clientpb.ADJOINT_METHOD_GMRES
|
|
@@ -934,6 +1319,16 @@ class GradientMethod(_IntEnum):
|
|
|
934
1319
|
NODAL_GRADIENT
|
|
935
1320
|
Gradients computed using nodal values interpolated from the
|
|
936
1321
|
cell-centered solution.
|
|
1322
|
+
|
|
1323
|
+
|
|
1324
|
+
Examples
|
|
1325
|
+
--------
|
|
1326
|
+
>>> from luminarycloud.params.enum import GradientMethod
|
|
1327
|
+
>>> GradientMethod.HLSQ
|
|
1328
|
+
>>> GradientMethod.WEIGHTED_LEAST_SQUARES
|
|
1329
|
+
>>> GradientMethod.GREEN_GAUSS
|
|
1330
|
+
>>> GradientMethod.LC_HLSQ
|
|
1331
|
+
>>> GradientMethod.NODAL_GRADIENT
|
|
937
1332
|
"""
|
|
938
1333
|
|
|
939
1334
|
HLSQ = _clientpb.HLSQ
|
|
@@ -953,6 +1348,13 @@ class GeometryFixes(_IntEnum):
|
|
|
953
1348
|
Enable geometry fixes.
|
|
954
1349
|
GEOMETRY_FIXES_OFF
|
|
955
1350
|
Disable geometry fixes.
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
Examples
|
|
1354
|
+
--------
|
|
1355
|
+
>>> from luminarycloud.params.enum import GeometryFixes
|
|
1356
|
+
>>> GeometryFixes.GEOMETRY_FIXES_ON
|
|
1357
|
+
>>> GeometryFixes.GEOMETRY_FIXES_OFF
|
|
956
1358
|
"""
|
|
957
1359
|
|
|
958
1360
|
GEOMETRY_FIXES_ON = _clientpb.GEOMETRY_FIXES_ON
|
|
@@ -975,6 +1377,16 @@ class SpatialDiscretizationHeatPreset(_IntEnum):
|
|
|
975
1377
|
Settings that emphasize accuracy (relative to default).
|
|
976
1378
|
CUSTOM_SPATIAL_DISCRETIZATION_HEAT
|
|
977
1379
|
Custom discretization settings.
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
Examples
|
|
1383
|
+
--------
|
|
1384
|
+
>>> from luminarycloud.params.enum import SpatialDiscretizationHeatPreset
|
|
1385
|
+
>>> SpatialDiscretizationHeatPreset.UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET
|
|
1386
|
+
>>> SpatialDiscretizationHeatPreset.DEFAULT_SPATIAL_DISCRETIZATION_HEAT
|
|
1387
|
+
>>> SpatialDiscretizationHeatPreset.CONSERVATIVE_SPATIAL_DISCRETIZATION_HEAT
|
|
1388
|
+
>>> SpatialDiscretizationHeatPreset.HIGH_ACCURACY_SPATIAL_DISCRETIZATION_HEAT
|
|
1389
|
+
>>> SpatialDiscretizationHeatPreset.CUSTOM_SPATIAL_DISCRETIZATION_HEAT
|
|
978
1390
|
"""
|
|
979
1391
|
|
|
980
1392
|
UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET = _clientpb.UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET
|
|
@@ -1004,6 +1416,18 @@ class ProfileType(_IntEnum):
|
|
|
1004
1416
|
1D radial profile normal to the Z direction.
|
|
1005
1417
|
TIME
|
|
1006
1418
|
Time varying profile.
|
|
1419
|
+
|
|
1420
|
+
|
|
1421
|
+
Examples
|
|
1422
|
+
--------
|
|
1423
|
+
>>> from luminarycloud.params.enum import ProfileType
|
|
1424
|
+
>>> ProfileType.CARTESIAN_X
|
|
1425
|
+
>>> ProfileType.CARTESIAN_Y
|
|
1426
|
+
>>> ProfileType.CARTESIAN_Z
|
|
1427
|
+
>>> ProfileType.RADIAL_X
|
|
1428
|
+
>>> ProfileType.RADIAL_Y
|
|
1429
|
+
>>> ProfileType.RADIAL_Z
|
|
1430
|
+
>>> ProfileType.TIME
|
|
1007
1431
|
"""
|
|
1008
1432
|
|
|
1009
1433
|
CARTESIAN_X = _clientpb.CARTESIAN_X
|
|
@@ -1031,6 +1455,16 @@ class HeatPhysicalBoundary(_IntEnum):
|
|
|
1031
1455
|
Symmetry.
|
|
1032
1456
|
HEAT_BC_CONVECTION
|
|
1033
1457
|
Convective heat transfer.
|
|
1458
|
+
|
|
1459
|
+
|
|
1460
|
+
Examples
|
|
1461
|
+
--------
|
|
1462
|
+
>>> from luminarycloud.params.enum import HeatPhysicalBoundary
|
|
1463
|
+
>>> HeatPhysicalBoundary.HEAT_BC_ISOTHERMAL
|
|
1464
|
+
>>> HeatPhysicalBoundary.HEAT_BC_HEAT_FLUX
|
|
1465
|
+
>>> HeatPhysicalBoundary.HEAT_BC_INTEGRATED_HEAT_FLUX
|
|
1466
|
+
>>> HeatPhysicalBoundary.HEAT_BC_SYMMETRY
|
|
1467
|
+
>>> HeatPhysicalBoundary.HEAT_BC_CONVECTION
|
|
1034
1468
|
"""
|
|
1035
1469
|
|
|
1036
1470
|
HEAT_BC_ISOTHERMAL = _clientpb.HEAT_BC_ISOTHERMAL
|
|
@@ -1056,6 +1490,16 @@ class InitializationType(_IntEnum):
|
|
|
1056
1490
|
Apply an initial condition corresponding to a predefined problem.
|
|
1057
1491
|
EXISTING_SOLUTION
|
|
1058
1492
|
Apply the starting values from an existing solution for the same mesh.
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
Examples
|
|
1496
|
+
--------
|
|
1497
|
+
>>> from luminarycloud.params.enum import InitializationType
|
|
1498
|
+
>>> InitializationType.UNIFORM_VALUES
|
|
1499
|
+
>>> InitializationType.FARFIELD_VALUES
|
|
1500
|
+
>>> InitializationType.INITIALIZATION_POTENTIAL_FLOW
|
|
1501
|
+
>>> InitializationType.VERIFICATION_SOLUTION
|
|
1502
|
+
>>> InitializationType.EXISTING_SOLUTION
|
|
1059
1503
|
"""
|
|
1060
1504
|
|
|
1061
1505
|
UNIFORM_VALUES = _clientpb.UNIFORM_VALUES
|
|
@@ -1075,6 +1519,13 @@ class HeatSourceType(_IntEnum):
|
|
|
1075
1519
|
Specify heat source power in Watts.
|
|
1076
1520
|
HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME
|
|
1077
1521
|
Specify heat source power in Watts per unit volume.
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
Examples
|
|
1525
|
+
--------
|
|
1526
|
+
>>> from luminarycloud.params.enum import HeatSourceType
|
|
1527
|
+
>>> HeatSourceType.HEAT_SOURCE_TYPE_POWER
|
|
1528
|
+
>>> HeatSourceType.HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME
|
|
1078
1529
|
"""
|
|
1079
1530
|
|
|
1080
1531
|
HEAT_SOURCE_TYPE_POWER = _clientpb.HEAT_SOURCE_TYPE_POWER
|
|
@@ -1092,6 +1543,13 @@ class InterfaceType(_IntEnum):
|
|
|
1092
1543
|
interface, or frozen rotor, or sliding interface).
|
|
1093
1544
|
MIXING_PLANE_INTERFACE
|
|
1094
1545
|
Imposes a pitchwise average of the variables on either side of the interface.
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
Examples
|
|
1549
|
+
--------
|
|
1550
|
+
>>> from luminarycloud.params.enum import InterfaceType
|
|
1551
|
+
>>> InterfaceType.GENERAL_INTERFACE
|
|
1552
|
+
>>> InterfaceType.MIXING_PLANE_INTERFACE
|
|
1095
1553
|
"""
|
|
1096
1554
|
|
|
1097
1555
|
GENERAL_INTERFACE = _clientpb.GENERAL_INTERFACE
|
|
@@ -1108,6 +1566,13 @@ class PeriodicBcType(_IntEnum):
|
|
|
1108
1566
|
|
|
1109
1567
|
ROTATIONAL
|
|
1110
1568
|
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
Examples
|
|
1572
|
+
--------
|
|
1573
|
+
>>> from luminarycloud.params.enum import PeriodicBcType
|
|
1574
|
+
>>> PeriodicBcType.TRANSLATIONAL
|
|
1575
|
+
>>> PeriodicBcType.ROTATIONAL
|
|
1111
1576
|
"""
|
|
1112
1577
|
|
|
1113
1578
|
TRANSLATIONAL = _clientpb.TRANSLATIONAL
|
|
@@ -1126,6 +1591,14 @@ class FluidType(_IntEnum):
|
|
|
1126
1591
|
Single phase approximation for cavitation with a cavitation model
|
|
1127
1592
|
VOF_FLUID
|
|
1128
1593
|
VOF multiphase model for simulating flows with multiple fluids and immiscible interfaces.
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
Examples
|
|
1597
|
+
--------
|
|
1598
|
+
>>> from luminarycloud.params.enum import FluidType
|
|
1599
|
+
>>> FluidType.SINGLE_PHASE
|
|
1600
|
+
>>> FluidType.CAVITATING_FLUID
|
|
1601
|
+
>>> FluidType.VOF_FLUID
|
|
1129
1602
|
"""
|
|
1130
1603
|
|
|
1131
1604
|
SINGLE_PHASE = _clientpb.SINGLE_PHASE
|
|
@@ -1149,6 +1622,16 @@ class ViscousModel(_IntEnum):
|
|
|
1149
1622
|
Laminar flow governed by the Navier-Stokes equations.
|
|
1150
1623
|
INVISCID
|
|
1151
1624
|
Inviscid flow governed by the Euler equations.
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
Examples
|
|
1628
|
+
--------
|
|
1629
|
+
>>> from luminarycloud.params.enum import ViscousModel
|
|
1630
|
+
>>> ViscousModel.RANS
|
|
1631
|
+
>>> ViscousModel.DES
|
|
1632
|
+
>>> ViscousModel.LES
|
|
1633
|
+
>>> ViscousModel.LAMINAR
|
|
1634
|
+
>>> ViscousModel.INVISCID
|
|
1152
1635
|
"""
|
|
1153
1636
|
|
|
1154
1637
|
RANS = _clientpb.RANS
|
|
@@ -1176,6 +1659,17 @@ class DesFormulation(_IntEnum):
|
|
|
1176
1659
|
Use the original Detached Eddy Simulation (DES) formulation.
|
|
1177
1660
|
ZDES
|
|
1178
1661
|
Use the Zonal Detached Eddy Simulation (ZDES) formulation.
|
|
1662
|
+
|
|
1663
|
+
|
|
1664
|
+
Examples
|
|
1665
|
+
--------
|
|
1666
|
+
>>> from luminarycloud.params.enum import DesFormulation
|
|
1667
|
+
>>> DesFormulation.DDES_VTM
|
|
1668
|
+
>>> DesFormulation.DDES_VTM_SIGMA
|
|
1669
|
+
>>> DesFormulation.IDDES
|
|
1670
|
+
>>> DesFormulation.DDES
|
|
1671
|
+
>>> DesFormulation.DES97
|
|
1672
|
+
>>> DesFormulation.ZDES
|
|
1179
1673
|
"""
|
|
1180
1674
|
|
|
1181
1675
|
DDES_VTM = _clientpb.DDES_VTM
|
|
@@ -1196,6 +1690,13 @@ class RansRegion(_IntEnum):
|
|
|
1196
1690
|
Force RANS behavior inside a prescribed bounding box.
|
|
1197
1691
|
OUTSIDE
|
|
1198
1692
|
Force RANS behavior outside a prescribed bounding box.
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
Examples
|
|
1696
|
+
--------
|
|
1697
|
+
>>> from luminarycloud.params.enum import RansRegion
|
|
1698
|
+
>>> RansRegion.INSIDE
|
|
1699
|
+
>>> RansRegion.OUTSIDE
|
|
1199
1700
|
"""
|
|
1200
1701
|
|
|
1201
1702
|
INSIDE = _clientpb.INSIDE
|
|
@@ -1220,6 +1721,17 @@ class SubGridScaleModel(_IntEnum):
|
|
|
1220
1721
|
Sigma eddy viscosity model.
|
|
1221
1722
|
AMD
|
|
1222
1723
|
AMD eddy viscosity model.
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
Examples
|
|
1727
|
+
--------
|
|
1728
|
+
>>> from luminarycloud.params.enum import SubGridScaleModel
|
|
1729
|
+
>>> SubGridScaleModel.NONE
|
|
1730
|
+
>>> SubGridScaleModel.SMAGORINSKY
|
|
1731
|
+
>>> SubGridScaleModel.VREMAN
|
|
1732
|
+
>>> SubGridScaleModel.WALE
|
|
1733
|
+
>>> SubGridScaleModel.SIGMA
|
|
1734
|
+
>>> SubGridScaleModel.AMD
|
|
1223
1735
|
"""
|
|
1224
1736
|
|
|
1225
1737
|
NONE = _clientpb.NONE
|
|
@@ -1247,6 +1759,15 @@ class TransitionModel(_IntEnum):
|
|
|
1247
1759
|
AFT_2019
|
|
1248
1760
|
Two-equation amplification factor transport, AFT-2019,
|
|
1249
1761
|
transition model.
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
Examples
|
|
1765
|
+
--------
|
|
1766
|
+
>>> from luminarycloud.params.enum import TransitionModel
|
|
1767
|
+
>>> TransitionModel.NO_TRANSITION
|
|
1768
|
+
>>> TransitionModel.GAMMA_2015
|
|
1769
|
+
>>> TransitionModel.GAMMA_RE_THETA_2009
|
|
1770
|
+
>>> TransitionModel.AFT_2019
|
|
1250
1771
|
"""
|
|
1251
1772
|
|
|
1252
1773
|
NO_TRANSITION = _clientpb.NO_TRANSITION
|
|
@@ -1265,6 +1786,13 @@ class TransitionModelCrossFlow(_IntEnum):
|
|
|
1265
1786
|
Crossflow instability is not considered in transition modelling.
|
|
1266
1787
|
TRANSITION_MODEL_CROSS_FLOW_ON
|
|
1267
1788
|
Crossflow treatment is active in transition modelling.
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
Examples
|
|
1792
|
+
--------
|
|
1793
|
+
>>> from luminarycloud.params.enum import TransitionModelCrossFlow
|
|
1794
|
+
>>> TransitionModelCrossFlow.TRANSITION_MODEL_CROSS_FLOW_OFF
|
|
1795
|
+
>>> TransitionModelCrossFlow.TRANSITION_MODEL_CROSS_FLOW_ON
|
|
1268
1796
|
"""
|
|
1269
1797
|
|
|
1270
1798
|
TRANSITION_MODEL_CROSS_FLOW_OFF = _clientpb.TRANSITION_MODEL_CROSS_FLOW_OFF
|
|
@@ -1281,6 +1809,13 @@ class TurbulenceModel(_IntEnum):
|
|
|
1281
1809
|
'Standard' Spalart-Allmaras one-equation turbulence model.
|
|
1282
1810
|
KOMEGA_SST
|
|
1283
1811
|
SST 2003m model.
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
Examples
|
|
1815
|
+
--------
|
|
1816
|
+
>>> from luminarycloud.params.enum import TurbulenceModel
|
|
1817
|
+
>>> TurbulenceModel.SPALART_ALLMARAS
|
|
1818
|
+
>>> TurbulenceModel.KOMEGA_SST
|
|
1284
1819
|
"""
|
|
1285
1820
|
|
|
1286
1821
|
SPALART_ALLMARAS = _clientpb.SPALART_ALLMARAS
|
|
@@ -1297,6 +1832,13 @@ class QcrSa(_IntEnum):
|
|
|
1297
1832
|
A QCR modification is not applied.
|
|
1298
1833
|
QCR2000
|
|
1299
1834
|
The 2000 version of the QCR modification is applied (QCR2000).
|
|
1835
|
+
|
|
1836
|
+
|
|
1837
|
+
Examples
|
|
1838
|
+
--------
|
|
1839
|
+
>>> from luminarycloud.params.enum import QcrSa
|
|
1840
|
+
>>> QcrSa.QCR_OFF
|
|
1841
|
+
>>> QcrSa.QCR2000
|
|
1300
1842
|
"""
|
|
1301
1843
|
|
|
1302
1844
|
QCR_OFF = _clientpb.QCR_OFF
|
|
@@ -1313,6 +1855,13 @@ class RotationCorrectionSa(_IntEnum):
|
|
|
1313
1855
|
A rotation correction is not applied to the Spalart-Allmaras turbulence model.
|
|
1314
1856
|
ROTATION_CORRECTION_ON
|
|
1315
1857
|
The SA-R form of the rotation correction is applied to the Spalart-Allmaras turbulence model.
|
|
1858
|
+
|
|
1859
|
+
|
|
1860
|
+
Examples
|
|
1861
|
+
--------
|
|
1862
|
+
>>> from luminarycloud.params.enum import RotationCorrectionSa
|
|
1863
|
+
>>> RotationCorrectionSa.ROTATION_CORRECTION_OFF
|
|
1864
|
+
>>> RotationCorrectionSa.ROTATION_CORRECTION_ON
|
|
1316
1865
|
"""
|
|
1317
1866
|
|
|
1318
1867
|
ROTATION_CORRECTION_OFF = _clientpb.ROTATION_CORRECTION_OFF
|
|
@@ -1329,6 +1878,13 @@ class TurbulenceModelConstants(_IntEnum):
|
|
|
1329
1878
|
Use default turbulence model constants.
|
|
1330
1879
|
CUSTOM_TURB_CONSTANTS
|
|
1331
1880
|
Enter custom turbulence model constants.
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
Examples
|
|
1884
|
+
--------
|
|
1885
|
+
>>> from luminarycloud.params.enum import TurbulenceModelConstants
|
|
1886
|
+
>>> TurbulenceModelConstants.DEFAULT_TURB_CONSTANTS
|
|
1887
|
+
>>> TurbulenceModelConstants.CUSTOM_TURB_CONSTANTS
|
|
1332
1888
|
"""
|
|
1333
1889
|
|
|
1334
1890
|
DEFAULT_TURB_CONSTANTS = _clientpb.DEFAULT_TURB_CONSTANTS
|
|
@@ -1345,6 +1901,13 @@ class QcrSst(_IntEnum):
|
|
|
1345
1901
|
A QCR modification is not applied.
|
|
1346
1902
|
SST_QCR2000
|
|
1347
1903
|
The 2000 version of the QCR modification is applied (QCR2000).
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
Examples
|
|
1907
|
+
--------
|
|
1908
|
+
>>> from luminarycloud.params.enum import QcrSst
|
|
1909
|
+
>>> QcrSst.SST_QCR_OFF
|
|
1910
|
+
>>> QcrSst.SST_QCR2000
|
|
1348
1911
|
"""
|
|
1349
1912
|
|
|
1350
1913
|
SST_QCR_OFF = _clientpb.SST_QCR_OFF
|
|
@@ -1361,6 +1924,13 @@ class PseudoTimeStepMethod(_IntEnum):
|
|
|
1361
1924
|
Compute a pseudo time step from a Courant-Friedrichs-Lewy (CFL) number.
|
|
1362
1925
|
FIXED_PSEUDO_TIME_STEP
|
|
1363
1926
|
Apply a fixed pseudo time step.
|
|
1927
|
+
|
|
1928
|
+
|
|
1929
|
+
Examples
|
|
1930
|
+
--------
|
|
1931
|
+
>>> from luminarycloud.params.enum import PseudoTimeStepMethod
|
|
1932
|
+
>>> PseudoTimeStepMethod.CFL_BASED
|
|
1933
|
+
>>> PseudoTimeStepMethod.FIXED_PSEUDO_TIME_STEP
|
|
1364
1934
|
"""
|
|
1365
1935
|
|
|
1366
1936
|
CFL_BASED = _clientpb.CFL_BASED
|
|
@@ -1379,6 +1949,13 @@ class LocalTimeStepping(_IntEnum):
|
|
|
1379
1949
|
Enable local time stepping.
|
|
1380
1950
|
LOCAL_TIME_STEPPING_OFF
|
|
1381
1951
|
Disable local time stepping.
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
Examples
|
|
1955
|
+
--------
|
|
1956
|
+
>>> from luminarycloud.params.enum import LocalTimeStepping
|
|
1957
|
+
>>> LocalTimeStepping.LOCAL_TIME_STEPPING_ON
|
|
1958
|
+
>>> LocalTimeStepping.LOCAL_TIME_STEPPING_OFF
|
|
1382
1959
|
"""
|
|
1383
1960
|
|
|
1384
1961
|
LOCAL_TIME_STEPPING_ON = _clientpb.LOCAL_TIME_STEPPING_ON
|
|
@@ -1393,6 +1970,12 @@ class JacobianUpdateMethod(_IntEnum):
|
|
|
1393
1970
|
----------
|
|
1394
1971
|
EXPLICIT_INTERVAL_AND_WARMUP
|
|
1395
1972
|
Compute the jacobian every iteration for 'Jacobian Warmup Threshold' iterations, then compute every 'Jacobian Update Interval' iterations
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
Examples
|
|
1976
|
+
--------
|
|
1977
|
+
>>> from luminarycloud.params.enum import JacobianUpdateMethod
|
|
1978
|
+
>>> JacobianUpdateMethod.EXPLICIT_INTERVAL_AND_WARMUP
|
|
1396
1979
|
"""
|
|
1397
1980
|
|
|
1398
1981
|
EXPLICIT_INTERVAL_AND_WARMUP = _clientpb.EXPLICIT_INTERVAL_AND_WARMUP
|
|
@@ -1408,6 +1991,13 @@ class RobustStartup(_IntEnum):
|
|
|
1408
1991
|
Enable robust startup mode.
|
|
1409
1992
|
ROBUST_STARTUP_OFF
|
|
1410
1993
|
Disable robust startup mode.
|
|
1994
|
+
|
|
1995
|
+
|
|
1996
|
+
Examples
|
|
1997
|
+
--------
|
|
1998
|
+
>>> from luminarycloud.params.enum import RobustStartup
|
|
1999
|
+
>>> RobustStartup.ROBUST_STARTUP_ON
|
|
2000
|
+
>>> RobustStartup.ROBUST_STARTUP_OFF
|
|
1411
2001
|
"""
|
|
1412
2002
|
|
|
1413
2003
|
ROBUST_STARTUP_ON = _clientpb.ROBUST_STARTUP_ON
|
|
@@ -1430,6 +2020,16 @@ class SolutionControlsFluidPreset(_IntEnum):
|
|
|
1430
2020
|
Aggressive settings further biased towards speed, up to 3 times faster than the default settings (these may not be suitable for all problems).
|
|
1431
2021
|
CUSTOM_SOLUTION_CONTROLS_FLUID
|
|
1432
2022
|
Custom solution controls.
|
|
2023
|
+
|
|
2024
|
+
|
|
2025
|
+
Examples
|
|
2026
|
+
--------
|
|
2027
|
+
>>> from luminarycloud.params.enum import SolutionControlsFluidPreset
|
|
2028
|
+
>>> SolutionControlsFluidPreset.UNSET_SOLUTION_CONTROLS_FLUID_PRESET
|
|
2029
|
+
>>> SolutionControlsFluidPreset.DEFAULT_SOLUTION_CONTROLS_FLUID
|
|
2030
|
+
>>> SolutionControlsFluidPreset.INTERMEDIATE_SOLUTION_CONTROLS_FLUID
|
|
2031
|
+
>>> SolutionControlsFluidPreset.AGGRESSIVE_SOLUTION_CONTROLS_FLUID
|
|
2032
|
+
>>> SolutionControlsFluidPreset.CUSTOM_SOLUTION_CONTROLS_FLUID
|
|
1433
2033
|
"""
|
|
1434
2034
|
|
|
1435
2035
|
UNSET_SOLUTION_CONTROLS_FLUID_PRESET = _clientpb.UNSET_SOLUTION_CONTROLS_FLUID_PRESET
|
|
@@ -1453,6 +2053,15 @@ class ConvectiveSchemesDensityBased(_IntEnum):
|
|
|
1453
2053
|
Entropy-Stable discretization.
|
|
1454
2054
|
RHIE_CHOW
|
|
1455
2055
|
Rhie-Chow method.
|
|
2056
|
+
|
|
2057
|
+
|
|
2058
|
+
Examples
|
|
2059
|
+
--------
|
|
2060
|
+
>>> from luminarycloud.params.enum import ConvectiveSchemesDensityBased
|
|
2061
|
+
>>> ConvectiveSchemesDensityBased.ROE
|
|
2062
|
+
>>> ConvectiveSchemesDensityBased.LD2
|
|
2063
|
+
>>> ConvectiveSchemesDensityBased.EC2
|
|
2064
|
+
>>> ConvectiveSchemesDensityBased.RHIE_CHOW
|
|
1456
2065
|
"""
|
|
1457
2066
|
|
|
1458
2067
|
ROE = _clientpb.ROE
|
|
@@ -1471,6 +2080,13 @@ class Preconditioning(_IntEnum):
|
|
|
1471
2080
|
Enable low-speed preconditioning.
|
|
1472
2081
|
PRECONDITIONING_OFF
|
|
1473
2082
|
Disable low-speed preconditioning.
|
|
2083
|
+
|
|
2084
|
+
|
|
2085
|
+
Examples
|
|
2086
|
+
--------
|
|
2087
|
+
>>> from luminarycloud.params.enum import Preconditioning
|
|
2088
|
+
>>> Preconditioning.PRECONDITIONING_ON
|
|
2089
|
+
>>> Preconditioning.PRECONDITIONING_OFF
|
|
1474
2090
|
"""
|
|
1475
2091
|
|
|
1476
2092
|
PRECONDITIONING_ON = _clientpb.PRECONDITIONING_ON
|
|
@@ -1487,6 +2103,13 @@ class ArtificialViscosityModel(_IntEnum):
|
|
|
1487
2103
|
No artificial viscosity model.
|
|
1488
2104
|
LAD
|
|
1489
2105
|
Localized artificial diffusivity (LAD) model.
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
Examples
|
|
2109
|
+
--------
|
|
2110
|
+
>>> from luminarycloud.params.enum import ArtificialViscosityModel
|
|
2111
|
+
>>> ArtificialViscosityModel.NO_MODEL
|
|
2112
|
+
>>> ArtificialViscosityModel.LAD
|
|
1490
2113
|
"""
|
|
1491
2114
|
|
|
1492
2115
|
NO_MODEL = _clientpb.NO_MODEL
|
|
@@ -1505,6 +2128,14 @@ class SkewSymmetricFormulation(_IntEnum):
|
|
|
1505
2128
|
Praveen Chandrasekhar's EC1 formulation.
|
|
1506
2129
|
KUYA
|
|
1507
2130
|
Kuya et al's formulation.
|
|
2131
|
+
|
|
2132
|
+
|
|
2133
|
+
Examples
|
|
2134
|
+
--------
|
|
2135
|
+
>>> from luminarycloud.params.enum import SkewSymmetricFormulation
|
|
2136
|
+
>>> SkewSymmetricFormulation.CHANDRASEKHAR_EC2
|
|
2137
|
+
>>> SkewSymmetricFormulation.CHANDRASEKHAR_EC1
|
|
2138
|
+
>>> SkewSymmetricFormulation.KUYA
|
|
1508
2139
|
"""
|
|
1509
2140
|
|
|
1510
2141
|
CHANDRASEKHAR_EC2 = _clientpb.CHANDRASEKHAR_EC2
|
|
@@ -1522,6 +2153,13 @@ class UpwindSchemeOrder(_IntEnum):
|
|
|
1522
2153
|
Second-order accuracy.
|
|
1523
2154
|
FIRST
|
|
1524
2155
|
First-order accuracy.
|
|
2156
|
+
|
|
2157
|
+
|
|
2158
|
+
Examples
|
|
2159
|
+
--------
|
|
2160
|
+
>>> from luminarycloud.params.enum import UpwindSchemeOrder
|
|
2161
|
+
>>> UpwindSchemeOrder.SECOND
|
|
2162
|
+
>>> UpwindSchemeOrder.FIRST
|
|
1525
2163
|
"""
|
|
1526
2164
|
|
|
1527
2165
|
SECOND = _clientpb.SECOND
|
|
@@ -1538,6 +2176,13 @@ class RobustDissipation(_IntEnum):
|
|
|
1538
2176
|
Disable robust dissipation.
|
|
1539
2177
|
ROBUST_DISS_ON
|
|
1540
2178
|
Enable robust dissipation.
|
|
2179
|
+
|
|
2180
|
+
|
|
2181
|
+
Examples
|
|
2182
|
+
--------
|
|
2183
|
+
>>> from luminarycloud.params.enum import RobustDissipation
|
|
2184
|
+
>>> RobustDissipation.ROBUST_DISS_OFF
|
|
2185
|
+
>>> RobustDissipation.ROBUST_DISS_ON
|
|
1541
2186
|
"""
|
|
1542
2187
|
|
|
1543
2188
|
ROBUST_DISS_OFF = _clientpb.ROBUST_DISS_OFF
|
|
@@ -1563,6 +2208,15 @@ class Limiter(_IntEnum):
|
|
|
1563
2208
|
VENKATAKRISHNAN_CV
|
|
1564
2209
|
This option was deprecated in favor of an implementation of the
|
|
1565
2210
|
same method that guarantees coordinate-system invariance.
|
|
2211
|
+
|
|
2212
|
+
|
|
2213
|
+
Examples
|
|
2214
|
+
--------
|
|
2215
|
+
>>> from luminarycloud.params.enum import Limiter
|
|
2216
|
+
>>> Limiter.NO_LIMITER
|
|
2217
|
+
>>> Limiter.INVARIANT_VENKATAKRISHNAN_CV
|
|
2218
|
+
>>> Limiter.VAN_ALBADA_FACE
|
|
2219
|
+
>>> Limiter.VENKATAKRISHNAN_CV
|
|
1566
2220
|
"""
|
|
1567
2221
|
|
|
1568
2222
|
NO_LIMITER = _clientpb.NO_LIMITER
|
|
@@ -1587,6 +2241,16 @@ class SpatialDiscretizationFluidPreset(_IntEnum):
|
|
|
1587
2241
|
Settings that emphasize accuracy (relative to default).
|
|
1588
2242
|
CUSTOM_SPATIAL_DISCRETIZATION_FLUID
|
|
1589
2243
|
Custom discretization settings.
|
|
2244
|
+
|
|
2245
|
+
|
|
2246
|
+
Examples
|
|
2247
|
+
--------
|
|
2248
|
+
>>> from luminarycloud.params.enum import SpatialDiscretizationFluidPreset
|
|
2249
|
+
>>> SpatialDiscretizationFluidPreset.UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET
|
|
2250
|
+
>>> SpatialDiscretizationFluidPreset.DEFAULT_SPATIAL_DISCRETIZATION_FLUID
|
|
2251
|
+
>>> SpatialDiscretizationFluidPreset.CONSERVATIVE_SPATIAL_DISCRETIZATION_FLUID
|
|
2252
|
+
>>> SpatialDiscretizationFluidPreset.HIGH_ACCURACY_SPATIAL_DISCRETIZATION_FLUID
|
|
2253
|
+
>>> SpatialDiscretizationFluidPreset.CUSTOM_SPATIAL_DISCRETIZATION_FLUID
|
|
1590
2254
|
"""
|
|
1591
2255
|
|
|
1592
2256
|
UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET = _clientpb.UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET
|
|
@@ -1616,6 +2280,17 @@ class PhysicalBoundary(_IntEnum):
|
|
|
1616
2280
|
Far-field boundary condition.
|
|
1617
2281
|
OVERSET
|
|
1618
2282
|
Overset boundary condition.
|
|
2283
|
+
|
|
2284
|
+
|
|
2285
|
+
Examples
|
|
2286
|
+
--------
|
|
2287
|
+
>>> from luminarycloud.params.enum import PhysicalBoundary
|
|
2288
|
+
>>> PhysicalBoundary.WALL
|
|
2289
|
+
>>> PhysicalBoundary.INLET
|
|
2290
|
+
>>> PhysicalBoundary.OUTLET
|
|
2291
|
+
>>> PhysicalBoundary.SYMMETRY
|
|
2292
|
+
>>> PhysicalBoundary.FARFIELD
|
|
2293
|
+
>>> PhysicalBoundary.OVERSET
|
|
1619
2294
|
"""
|
|
1620
2295
|
|
|
1621
2296
|
WALL = _clientpb.WALL
|
|
@@ -1638,6 +2313,14 @@ class WallMomentum(_IntEnum):
|
|
|
1638
2313
|
Apply a slip (flow tangency) condition at the wall surface.
|
|
1639
2314
|
WALL_MODEL
|
|
1640
2315
|
Apply a wall model at the wall surface.
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
Examples
|
|
2319
|
+
--------
|
|
2320
|
+
>>> from luminarycloud.params.enum import WallMomentum
|
|
2321
|
+
>>> WallMomentum.NO_SLIP
|
|
2322
|
+
>>> WallMomentum.SLIP
|
|
2323
|
+
>>> WallMomentum.WALL_MODEL
|
|
1641
2324
|
"""
|
|
1642
2325
|
|
|
1643
2326
|
NO_SLIP = _clientpb.NO_SLIP
|
|
@@ -1655,6 +2338,13 @@ class WallEnergy(_IntEnum):
|
|
|
1655
2338
|
Apply a fixed heat flux at the wall surface.
|
|
1656
2339
|
FIXED_TEMPERATURE
|
|
1657
2340
|
Apply a fixed temperature at the wall surface.
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
Examples
|
|
2344
|
+
--------
|
|
2345
|
+
>>> from luminarycloud.params.enum import WallEnergy
|
|
2346
|
+
>>> WallEnergy.FIXED_HEAT_FLUX
|
|
2347
|
+
>>> WallEnergy.FIXED_TEMPERATURE
|
|
1658
2348
|
"""
|
|
1659
2349
|
|
|
1660
2350
|
FIXED_HEAT_FLUX = _clientpb.FIXED_HEAT_FLUX
|
|
@@ -1669,6 +2359,12 @@ class InletEnergy(_IntEnum):
|
|
|
1669
2359
|
----------
|
|
1670
2360
|
TOTAL_TEMPERATURE_INLET
|
|
1671
2361
|
Specify total temperature.
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
Examples
|
|
2365
|
+
--------
|
|
2366
|
+
>>> from luminarycloud.params.enum import InletEnergy
|
|
2367
|
+
>>> InletEnergy.TOTAL_TEMPERATURE_INLET
|
|
1672
2368
|
"""
|
|
1673
2369
|
|
|
1674
2370
|
TOTAL_TEMPERATURE_INLET = _clientpb.TOTAL_TEMPERATURE_INLET
|
|
@@ -1686,6 +2382,14 @@ class TurbulenceSpecificationSpalartAllmaras(_IntEnum):
|
|
|
1686
2382
|
Set the turbulent viscosity at the boundary.
|
|
1687
2383
|
BC_SA_VARIABLE
|
|
1688
2384
|
Set the Spalart-Allmaras variable value at the boundary condition.
|
|
2385
|
+
|
|
2386
|
+
|
|
2387
|
+
Examples
|
|
2388
|
+
--------
|
|
2389
|
+
>>> from luminarycloud.params.enum import TurbulenceSpecificationSpalartAllmaras
|
|
2390
|
+
>>> TurbulenceSpecificationSpalartAllmaras.TURBULENT_VISCOSITY_RATIO_SA
|
|
2391
|
+
>>> TurbulenceSpecificationSpalartAllmaras.TURBULENT_VISCOSITY_SA
|
|
2392
|
+
>>> TurbulenceSpecificationSpalartAllmaras.BC_SA_VARIABLE
|
|
1689
2393
|
"""
|
|
1690
2394
|
|
|
1691
2395
|
TURBULENT_VISCOSITY_RATIO_SA = _clientpb.TURBULENT_VISCOSITY_RATIO_SA
|
|
@@ -1705,6 +2409,14 @@ class TurbulenceSpecificationKomega(_IntEnum):
|
|
|
1705
2409
|
Set a uniform turbulent viscosity and turbulence intensity in the domain.
|
|
1706
2410
|
BC_KOMEGA_VARIABLES
|
|
1707
2411
|
Set the k-ω variables at the boundary condition.
|
|
2412
|
+
|
|
2413
|
+
|
|
2414
|
+
Examples
|
|
2415
|
+
--------
|
|
2416
|
+
>>> from luminarycloud.params.enum import TurbulenceSpecificationKomega
|
|
2417
|
+
>>> TurbulenceSpecificationKomega.BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA
|
|
2418
|
+
>>> TurbulenceSpecificationKomega.BC_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA
|
|
2419
|
+
>>> TurbulenceSpecificationKomega.BC_KOMEGA_VARIABLES
|
|
1708
2420
|
"""
|
|
1709
2421
|
|
|
1710
2422
|
BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA = (
|
|
@@ -1730,18 +2442,29 @@ class InletMomentum(_IntEnum):
|
|
|
1730
2442
|
Specify the velocity magnitude.
|
|
1731
2443
|
VELOCITY_COMPONENTS_INLET
|
|
1732
2444
|
Specify the components of the velocity vector.
|
|
2445
|
+
MACH_INLET
|
|
2446
|
+
Specify the inlet Mach number and static conditions. Note that for subsonic flow the static pressure is not used.
|
|
1733
2447
|
FAN_CURVE_INLET
|
|
1734
2448
|
Specify the relation between the fan pressure rise and the volume flow rate.
|
|
1735
|
-
|
|
1736
|
-
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
Examples
|
|
2452
|
+
--------
|
|
2453
|
+
>>> from luminarycloud.params.enum import InletMomentum
|
|
2454
|
+
>>> InletMomentum.TOTAL_PRESSURE_INLET
|
|
2455
|
+
>>> InletMomentum.MASS_FLOW_INLET
|
|
2456
|
+
>>> InletMomentum.VELOCITY_INLET
|
|
2457
|
+
>>> InletMomentum.VELOCITY_COMPONENTS_INLET
|
|
2458
|
+
>>> InletMomentum.MACH_INLET
|
|
2459
|
+
>>> InletMomentum.FAN_CURVE_INLET
|
|
1737
2460
|
"""
|
|
1738
2461
|
|
|
1739
2462
|
TOTAL_PRESSURE_INLET = _clientpb.TOTAL_PRESSURE_INLET
|
|
1740
2463
|
MASS_FLOW_INLET = _clientpb.MASS_FLOW_INLET
|
|
1741
2464
|
VELOCITY_INLET = _clientpb.VELOCITY_INLET
|
|
1742
2465
|
VELOCITY_COMPONENTS_INLET = _clientpb.VELOCITY_COMPONENTS_INLET
|
|
1743
|
-
FAN_CURVE_INLET = _clientpb.FAN_CURVE_INLET
|
|
1744
2466
|
MACH_INLET = _clientpb.MACH_INLET
|
|
2467
|
+
FAN_CURVE_INLET = _clientpb.FAN_CURVE_INLET
|
|
1745
2468
|
|
|
1746
2469
|
|
|
1747
2470
|
class DirectionSpecification(_IntEnum):
|
|
@@ -1754,6 +2477,13 @@ class DirectionSpecification(_IntEnum):
|
|
|
1754
2477
|
Impose a flow direction normal to the inlet boundary toward the interior of the domain.
|
|
1755
2478
|
DIRECTION_VECTOR
|
|
1756
2479
|
Specify a vector for the inlet flow direction.
|
|
2480
|
+
|
|
2481
|
+
|
|
2482
|
+
Examples
|
|
2483
|
+
--------
|
|
2484
|
+
>>> from luminarycloud.params.enum import DirectionSpecification
|
|
2485
|
+
>>> DirectionSpecification.NORMAL_TO_BOUNDARY
|
|
2486
|
+
>>> DirectionSpecification.DIRECTION_VECTOR
|
|
1757
2487
|
"""
|
|
1758
2488
|
|
|
1759
2489
|
NORMAL_TO_BOUNDARY = _clientpb.NORMAL_TO_BOUNDARY
|
|
@@ -1777,6 +2507,15 @@ class OutletStrategy(_IntEnum):
|
|
|
1777
2507
|
<sup>P<sub>ref</sub></sup> ⁄ <sub>P<sub>0</sub></sub>).
|
|
1778
2508
|
FAN_CURVE_OUTLET
|
|
1779
2509
|
Specify the relation between the fan pressure rise and the volume flow rate.
|
|
2510
|
+
|
|
2511
|
+
|
|
2512
|
+
Examples
|
|
2513
|
+
--------
|
|
2514
|
+
>>> from luminarycloud.params.enum import OutletStrategy
|
|
2515
|
+
>>> OutletStrategy.OUTLET_PRESSURE
|
|
2516
|
+
>>> OutletStrategy.OUTLET_TARGET_MASS_FLOW_RATE
|
|
2517
|
+
>>> OutletStrategy.OUTLET_TARGET_CORRECTED_MASS_FLOW_RATE
|
|
2518
|
+
>>> OutletStrategy.FAN_CURVE_OUTLET
|
|
1780
2519
|
"""
|
|
1781
2520
|
|
|
1782
2521
|
OUTLET_PRESSURE = _clientpb.OUTLET_PRESSURE
|
|
@@ -1798,6 +2537,13 @@ class OutletPressureConstraint(_IntEnum):
|
|
|
1798
2537
|
The area-averaged pressure is imposed while local values can deviate.
|
|
1799
2538
|
This allows a pressure profile to develop naturally, but can be less numerically
|
|
1800
2539
|
stable than the Local constraint mode.
|
|
2540
|
+
|
|
2541
|
+
|
|
2542
|
+
Examples
|
|
2543
|
+
--------
|
|
2544
|
+
>>> from luminarycloud.params.enum import OutletPressureConstraint
|
|
2545
|
+
>>> OutletPressureConstraint.OUTLET_LOCAL_CONSTRAINT
|
|
2546
|
+
>>> OutletPressureConstraint.OUTLET_AVERAGE_CONSTRAINT
|
|
1801
2547
|
"""
|
|
1802
2548
|
|
|
1803
2549
|
OUTLET_LOCAL_CONSTRAINT = _clientpb.OUTLET_LOCAL_CONSTRAINT
|
|
@@ -1814,6 +2560,13 @@ class FarfieldMomentum(_IntEnum):
|
|
|
1814
2560
|
Specify the freestream Mach number.
|
|
1815
2561
|
FARFIELD_VELOCITY_MAGNITUDE
|
|
1816
2562
|
Specify the freestream velocity magnitude.
|
|
2563
|
+
|
|
2564
|
+
|
|
2565
|
+
Examples
|
|
2566
|
+
--------
|
|
2567
|
+
>>> from luminarycloud.params.enum import FarfieldMomentum
|
|
2568
|
+
>>> FarfieldMomentum.FARFIELD_MACH_NUMBER
|
|
2569
|
+
>>> FarfieldMomentum.FARFIELD_VELOCITY_MAGNITUDE
|
|
1817
2570
|
"""
|
|
1818
2571
|
|
|
1819
2572
|
FARFIELD_MACH_NUMBER = _clientpb.FARFIELD_MACH_NUMBER
|
|
@@ -1830,6 +2583,13 @@ class FarFieldFlowDirectionSpecification(_IntEnum):
|
|
|
1830
2583
|
Specify a vector for the far-field flow direction.
|
|
1831
2584
|
FARFIELD_ANGLES
|
|
1832
2585
|
Specify body axes, angle of attack, and angle of sideslip to define the far-field flow direction.
|
|
2586
|
+
|
|
2587
|
+
|
|
2588
|
+
Examples
|
|
2589
|
+
--------
|
|
2590
|
+
>>> from luminarycloud.params.enum import FarFieldFlowDirectionSpecification
|
|
2591
|
+
>>> FarFieldFlowDirectionSpecification.FARFIELD_DIRECTION
|
|
2592
|
+
>>> FarFieldFlowDirectionSpecification.FARFIELD_ANGLES
|
|
1833
2593
|
"""
|
|
1834
2594
|
|
|
1835
2595
|
FARFIELD_DIRECTION = _clientpb.FARFIELD_DIRECTION
|
|
@@ -1850,6 +2610,15 @@ class TurbulentVariableInitializationTypeSa(_IntEnum):
|
|
|
1850
2610
|
Uniform initial condition for the Spalart-Allmaras turbulence variable.
|
|
1851
2611
|
INIT_FARFIELD_VALUES_SA
|
|
1852
2612
|
Uniform initial condition for the Spalart-Allmaras turbulence variable from the far-field boundary.
|
|
2613
|
+
|
|
2614
|
+
|
|
2615
|
+
Examples
|
|
2616
|
+
--------
|
|
2617
|
+
>>> from luminarycloud.params.enum import TurbulentVariableInitializationTypeSa
|
|
2618
|
+
>>> TurbulentVariableInitializationTypeSa.INIT_TURBULENT_VISCOSITY_RATIO_SA
|
|
2619
|
+
>>> TurbulentVariableInitializationTypeSa.INIT_TURBULENT_VISCOSITY_SA
|
|
2620
|
+
>>> TurbulentVariableInitializationTypeSa.INIT_SA_VARIABLE
|
|
2621
|
+
>>> TurbulentVariableInitializationTypeSa.INIT_FARFIELD_VALUES_SA
|
|
1853
2622
|
"""
|
|
1854
2623
|
|
|
1855
2624
|
INIT_TURBULENT_VISCOSITY_RATIO_SA = _clientpb.INIT_TURBULENT_VISCOSITY_RATIO_SA
|
|
@@ -1872,6 +2641,15 @@ class TurbulentVariableInitializationTypeKomega(_IntEnum):
|
|
|
1872
2641
|
Uniform initial conditions.
|
|
1873
2642
|
INIT_FARFIELD_VALUES_KOMEGA
|
|
1874
2643
|
Uniform initial condition from the far-field boundary.
|
|
2644
|
+
|
|
2645
|
+
|
|
2646
|
+
Examples
|
|
2647
|
+
--------
|
|
2648
|
+
>>> from luminarycloud.params.enum import TurbulentVariableInitializationTypeKomega
|
|
2649
|
+
>>> TurbulentVariableInitializationTypeKomega.INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA
|
|
2650
|
+
>>> TurbulentVariableInitializationTypeKomega.INIT_TURBULENT_VISCOSITY_AND_INTENSITY_KOMEGA
|
|
2651
|
+
>>> TurbulentVariableInitializationTypeKomega.INIT_KOMEGA_VARIABLES
|
|
2652
|
+
>>> TurbulentVariableInitializationTypeKomega.INIT_FARFIELD_VALUES_KOMEGA
|
|
1875
2653
|
"""
|
|
1876
2654
|
|
|
1877
2655
|
INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA = (
|
|
@@ -1894,6 +2672,13 @@ class PotentialFlowPressureInitialization(_IntEnum):
|
|
|
1894
2672
|
Do not initialize the pressure using the potential flow method
|
|
1895
2673
|
INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON
|
|
1896
2674
|
Initialize the pressure using Bernouilli's equation.
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
Examples
|
|
2678
|
+
--------
|
|
2679
|
+
>>> from luminarycloud.params.enum import PotentialFlowPressureInitialization
|
|
2680
|
+
>>> PotentialFlowPressureInitialization.INITIALIZATION_POTENTIAL_FLOW_PRESSURE_OFF
|
|
2681
|
+
>>> PotentialFlowPressureInitialization.INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON
|
|
1897
2682
|
"""
|
|
1898
2683
|
|
|
1899
2684
|
INITIALIZATION_POTENTIAL_FLOW_PRESSURE_OFF = (
|
|
@@ -1930,6 +2715,22 @@ class VerificationSolutions(_IntEnum):
|
|
|
1930
2715
|
2D planar lattice flow for incompressible NS.
|
|
1931
2716
|
CHECK_FLUX_SYMMETRY
|
|
1932
2717
|
Run a debug check on the left/right symmetry of fluxes.
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
Examples
|
|
2721
|
+
--------
|
|
2722
|
+
>>> from luminarycloud.params.enum import VerificationSolutions
|
|
2723
|
+
>>> VerificationSolutions.TAYLOR_GREEN_VORTEX
|
|
2724
|
+
>>> VerificationSolutions.NS_MMS
|
|
2725
|
+
>>> VerificationSolutions.EULER_MMS
|
|
2726
|
+
>>> VerificationSolutions.SHOCK_TUBE
|
|
2727
|
+
>>> VerificationSolutions.NORMAL_SHOCK
|
|
2728
|
+
>>> VerificationSolutions.SHOCK_VORTEX
|
|
2729
|
+
>>> VerificationSolutions.SHU_OSHER
|
|
2730
|
+
>>> VerificationSolutions.DISTURBANCE_WAVE
|
|
2731
|
+
>>> VerificationSolutions.INVISCID_VORTEX
|
|
2732
|
+
>>> VerificationSolutions.INS_2D_LATTICE
|
|
2733
|
+
>>> VerificationSolutions.CHECK_FLUX_SYMMETRY
|
|
1933
2734
|
"""
|
|
1934
2735
|
|
|
1935
2736
|
TAYLOR_GREEN_VORTEX = _clientpb.TAYLOR_GREEN_VORTEX
|
|
@@ -1957,6 +2758,14 @@ class PhysicalBehaviorModel(_IntEnum):
|
|
|
1957
2758
|
Behavior inputs associated with actuator lines
|
|
1958
2759
|
SOURCE_POINTS_MODEL
|
|
1959
2760
|
Behavior inputs associated with source points
|
|
2761
|
+
|
|
2762
|
+
|
|
2763
|
+
Examples
|
|
2764
|
+
--------
|
|
2765
|
+
>>> from luminarycloud.params.enum import PhysicalBehaviorModel
|
|
2766
|
+
>>> PhysicalBehaviorModel.ACTUATOR_DISK_MODEL
|
|
2767
|
+
>>> PhysicalBehaviorModel.ACTUATOR_LINE_MODEL
|
|
2768
|
+
>>> PhysicalBehaviorModel.SOURCE_POINTS_MODEL
|
|
1960
2769
|
"""
|
|
1961
2770
|
|
|
1962
2771
|
ACTUATOR_DISK_MODEL = _clientpb.ACTUATOR_DISK_MODEL
|
|
@@ -1978,6 +2787,15 @@ class ActuatorDiskModel(_IntEnum):
|
|
|
1978
2787
|
Uses tables of airfoil aerodynamic data to model the effect of rotors and propellers
|
|
1979
2788
|
FAN_CURVE_INTERNAL
|
|
1980
2789
|
Specify the relation between the fan pressure rise and the volume flow rate.
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
Examples
|
|
2793
|
+
--------
|
|
2794
|
+
>>> from luminarycloud.params.enum import ActuatorDiskModel
|
|
2795
|
+
>>> ActuatorDiskModel.ACTUATOR_DISK_UNIFORM_THRUST
|
|
2796
|
+
>>> ActuatorDiskModel.ACTUATOR_DISK_RADIAL_DISTRIBUTION
|
|
2797
|
+
>>> ActuatorDiskModel.ACTUATOR_DISK_BLADE_ELEMENT
|
|
2798
|
+
>>> ActuatorDiskModel.FAN_CURVE_INTERNAL
|
|
1981
2799
|
"""
|
|
1982
2800
|
|
|
1983
2801
|
ACTUATOR_DISK_UNIFORM_THRUST = _clientpb.ACTUATOR_DISK_UNIFORM_THRUST
|
|
@@ -1996,6 +2814,13 @@ class ActuatorDiskBemStrategy(_IntEnum):
|
|
|
1996
2814
|
Prescribes a rotation rate for the fictitious blades.
|
|
1997
2815
|
BEM_TARGET_THRUST
|
|
1998
2816
|
The rotation rate specified initially is adjusted to achieve a prescribed target thrust. The final rotation rate is available as a surface output
|
|
2817
|
+
|
|
2818
|
+
|
|
2819
|
+
Examples
|
|
2820
|
+
--------
|
|
2821
|
+
>>> from luminarycloud.params.enum import ActuatorDiskBemStrategy
|
|
2822
|
+
>>> ActuatorDiskBemStrategy.BEM_ROTATION_RATE
|
|
2823
|
+
>>> ActuatorDiskBemStrategy.BEM_TARGET_THRUST
|
|
1999
2824
|
"""
|
|
2000
2825
|
|
|
2001
2826
|
BEM_ROTATION_RATE = _clientpb.BEM_ROTATION_RATE
|
|
@@ -2010,6 +2835,12 @@ class ActuatorLineModel(_IntEnum):
|
|
|
2010
2835
|
----------
|
|
2011
2836
|
ACTUATOR_LINE_BLADE_ELEMENT
|
|
2012
2837
|
Uses tables of airfoil aerodynamic data to model the effect of rotors and propellers
|
|
2838
|
+
|
|
2839
|
+
|
|
2840
|
+
Examples
|
|
2841
|
+
--------
|
|
2842
|
+
>>> from luminarycloud.params.enum import ActuatorLineModel
|
|
2843
|
+
>>> ActuatorLineModel.ACTUATOR_LINE_BLADE_ELEMENT
|
|
2013
2844
|
"""
|
|
2014
2845
|
|
|
2015
2846
|
ACTUATOR_LINE_BLADE_ELEMENT = _clientpb.ACTUATOR_LINE_BLADE_ELEMENT
|
|
@@ -2025,6 +2856,13 @@ class ParticleSourceModel(_IntEnum):
|
|
|
2025
2856
|
Injects material into the solver at particle locations
|
|
2026
2857
|
GENERAL_ACCELERATION_SOURCE
|
|
2027
2858
|
Applies an acceleration at particle locations
|
|
2859
|
+
|
|
2860
|
+
|
|
2861
|
+
Examples
|
|
2862
|
+
--------
|
|
2863
|
+
>>> from luminarycloud.params.enum import ParticleSourceModel
|
|
2864
|
+
>>> ParticleSourceModel.GENERAL_MASS_SOURCE
|
|
2865
|
+
>>> ParticleSourceModel.GENERAL_ACCELERATION_SOURCE
|
|
2028
2866
|
"""
|
|
2029
2867
|
|
|
2030
2868
|
GENERAL_MASS_SOURCE = _clientpb.GENERAL_MASS_SOURCE
|
|
@@ -2039,6 +2877,12 @@ class CavitationModel(_IntEnum):
|
|
|
2039
2877
|
----------
|
|
2040
2878
|
SAUER_SCHNERR
|
|
2041
2879
|
Sauer-Schnerr one equation cavitation model.
|
|
2880
|
+
|
|
2881
|
+
|
|
2882
|
+
Examples
|
|
2883
|
+
--------
|
|
2884
|
+
>>> from luminarycloud.params.enum import CavitationModel
|
|
2885
|
+
>>> CavitationModel.SAUER_SCHNERR
|
|
2042
2886
|
"""
|
|
2043
2887
|
|
|
2044
2888
|
SAUER_SCHNERR = _clientpb.SAUER_SCHNERR
|
|
@@ -2052,6 +2896,12 @@ class PorousModelType(_IntEnum):
|
|
|
2052
2896
|
----------
|
|
2053
2897
|
DARCY_FORCHHEIMER
|
|
2054
2898
|
Darcy Forchheimer model.
|
|
2899
|
+
|
|
2900
|
+
|
|
2901
|
+
Examples
|
|
2902
|
+
--------
|
|
2903
|
+
>>> from luminarycloud.params.enum import PorousModelType
|
|
2904
|
+
>>> PorousModelType.DARCY_FORCHHEIMER
|
|
2055
2905
|
"""
|
|
2056
2906
|
|
|
2057
2907
|
DARCY_FORCHHEIMER = _clientpb.DARCY_FORCHHEIMER
|
|
@@ -2067,6 +2917,13 @@ class MpCouplingLinSolCoupling(_IntEnum):
|
|
|
2067
2917
|
Enable enhanced coupling.
|
|
2068
2918
|
MP_COUPLING_LIN_SOL_COUPLING_OFF
|
|
2069
2919
|
Disable enhanced coupling.
|
|
2920
|
+
|
|
2921
|
+
|
|
2922
|
+
Examples
|
|
2923
|
+
--------
|
|
2924
|
+
>>> from luminarycloud.params.enum import MpCouplingLinSolCoupling
|
|
2925
|
+
>>> MpCouplingLinSolCoupling.MP_COUPLING_LIN_SOL_COUPLING_ON
|
|
2926
|
+
>>> MpCouplingLinSolCoupling.MP_COUPLING_LIN_SOL_COUPLING_OFF
|
|
2070
2927
|
"""
|
|
2071
2928
|
|
|
2072
2929
|
MP_COUPLING_LIN_SOL_COUPLING_ON = _clientpb.MP_COUPLING_LIN_SOL_COUPLING_ON
|