luminarycloud 0.13.0__py3-none-any.whl → 0.14.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/_helpers/cond.py +262 -165
- luminarycloud/_helpers/defaults.py +3 -3
- luminarycloud/_helpers/download.py +12 -1
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +69 -47
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +45 -1
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +86 -65
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +38 -1
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +33 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +12 -12
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +5 -1
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.py +2 -1
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.pyi +6 -2
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +14 -14
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +5 -1
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +170 -85
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +215 -10
- luminarycloud/_proto/assistant/assistant_pb2.py +177 -21
- luminarycloud/_proto/assistant/assistant_pb2.pyi +380 -7
- luminarycloud/_proto/client/simulation_pb2.py +705 -521
- luminarycloud/_proto/client/simulation_pb2.pyi +552 -35
- luminarycloud/_proto/geometry/geometry_pb2.py +74 -40
- luminarycloud/_proto/geometry/geometry_pb2.pyi +68 -4
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +321 -0
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +648 -0
- luminarycloud/_proto/options/options_pb2.py +9 -5
- luminarycloud/_proto/options/options_pb2.pyi +4 -0
- luminarycloud/_proto/output/reference_values_pb2.py +22 -5
- luminarycloud/_proto/output/reference_values_pb2.pyi +1 -1
- luminarycloud/_proto/quantity/quantity_options_pb2.py +28 -4
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +58 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +162 -159
- luminarycloud/_proto/quantity/quantity_pb2.pyi +2 -0
- luminarycloud/enum/vis_enums.py +82 -2
- luminarycloud/geometry.py +22 -5
- luminarycloud/meshing/mesh_generation_params.py +8 -2
- luminarycloud/params/__init__.py +1 -2
- luminarycloud/params/enum/_enum_wrappers.py +1184 -3
- luminarycloud/params/outputs/output.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/__init__.py +15 -14
- luminarycloud/params/{param_wrappers → simulation}/_lib.py +2 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement/boundary_layer_profile_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adjoint_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/gravity_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/gravity_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/body_frame_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/volume_material_relationship_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/volume_physics_relationship_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/general_.py +8 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/boussinesq_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/boussinesq_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/ideal_gas_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/incompressible_fluid_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/incompressible_fluid_with_energy_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/prescribed_conductivity_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/prescribed_prandtl_number_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/temperature_dependent_conductivity_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/prescribed_viscosity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/sutherland_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/temperature_dependent_viscosity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/material_fluid_.py +32 -40
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/material_solid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material_entity_.py +6 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/monitor_plane_.py +10 -5
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/no_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/rotational_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/translational_transform_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/constant_angular_motion_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/constant_translation_motion_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data_.py +16 -20
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/multi_physics_coupling_options_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/output_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_normal_vector_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/actuator_disk_specify_rotation_angles_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection_.py +2 -2
- luminarycloud/params/simulation/particle_group/particle_group_type/actuator_disk_.py +49 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_line_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/probe_points_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/source_points_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group_.py +20 -17
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/adjoint_controls_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/basic_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/__init__.py +3 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/farfield_.py +111 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/__init__.py +4 -3
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +4 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +55 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/velocity_components_inlet_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +8 -6
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet_.py +104 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/fan_curve_outlet_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_pressure_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_corrected_mass_flow_rate_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/outlet_target_mass_flow_rate_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet_.py +14 -14
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/symmetry_.py +4 -4
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/turbulence_boundary_conditions_.py +50 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/prescribed_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/prescribed_temperature_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/no_slip_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/slip_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/wall_model_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/wall_energy_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/wall_momentum_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall_.py +18 -18
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions_fluid_.py +9 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization/__init__.py +1 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization/fluid_existing_solution_.py +4 -6
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_farfield_values_.py +65 -0
- luminarycloud/params/simulation/physics/fluid/initialization/fluid_prescribed_values_.py +77 -0
- luminarycloud/params/simulation/physics/fluid/initialization/turbulence_initialization_.py +44 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/initialization_fluid_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/blade_element_airfoil_data_.py +12 -8
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_blade_element_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_radial_distribution_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/actuator_disk_uniform_thrust_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/fan_curve_internal_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model/actuator_line_blade_element_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/blade_element_params_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_acceleration_source_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/general_mass_source_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model_.py +8 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior_.py +34 -29
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/porous_behavior_.py +14 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_explicit_relaxation_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py +16 -16
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/cfl_based_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/fixed_pseudo_time_step_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls_fluid_.py +14 -14
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/ec2_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/fds_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/ld2_.py +6 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/rhie_chow_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/first_order_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/second_order_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization_fluid_.py +20 -18
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/ddes_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/ddes_vtm_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/iddes_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/custom_komega_sst_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/default_komega_sst_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/komega_sst_constants_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst_.py +10 -12
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/custom_spalart_allmaras_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/default_spalart_allmaras_constants_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/spalart_allmaras_constants_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras_.py +10 -12
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/amd_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/sigma_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/smagorinsky_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/vreman_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/wale_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence_.py +22 -32
- luminarycloud/params/simulation/physics/fluid_.py +233 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/adjoint_controls_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_convection_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_integrated_heat_flux_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_symmetry_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/heat_bc_temperature_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions_heat_.py +9 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/heat_source_type_power_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/heat_source_type_power_per_unit_of_volume_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source_.py +20 -17
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/heat_existing_solution_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/heat_prescribed_values_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method/heat_implicit_relaxation_.py +10 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls_heat_.py +6 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/spatial_discretization_heat_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat_.py +33 -42
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +5 -7
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/translational_periodicity_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair_.py +8 -10
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/gauss_seidel_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/krylov_amg_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics_.py +6 -6
- luminarycloud/params/{param_wrappers → simulation}/simulation_param_.py +34 -40
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/sliding_interfaces_.py +10 -5
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/surface_name_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/compute_statistics_off_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/compute_statistics_on_.py +4 -6
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/time_explicit_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/time_implicit_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/time_step_ramp_off_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/time_step_ramp_on_.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp_.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time_.py +20 -30
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/volume_entity_.py +2 -2
- luminarycloud/project.py +63 -7
- luminarycloud/reference_values.py +1 -1
- luminarycloud/simulation.py +13 -2
- luminarycloud/simulation_param.py +8 -8
- luminarycloud/solution.py +7 -1
- luminarycloud/types/vector3.py +28 -2
- luminarycloud/vis/__init__.py +6 -1
- luminarycloud/vis/display.py +101 -51
- luminarycloud/vis/filters.py +384 -15
- luminarycloud/vis/interactive_scene.py +46 -23
- luminarycloud/vis/visualization.py +204 -58
- {luminarycloud-0.13.0.dist-info → luminarycloud-0.14.0.dist-info}/METADATA +1 -2
- luminarycloud-0.14.0.dist-info/RECORD +466 -0
- luminarycloud/params/param_wrappers/__init__.py +0 -2
- luminarycloud/params/param_wrappers/simulation_param/particle_group/particle_group_type/actuator_disk_.py +0 -51
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/farfield_.py +0 -197
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/inlet_.py +0 -189
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/__init__.py +0 -5
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_komega_variables_.py +0 -37
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_turbulent_viscosity_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/bc_turbulent_viscosity_ratio_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega_boundary_conditions_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/__init__.py +0 -3
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_sa_variable_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_turbulent_viscosity_ratio_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/bc_turbulent_viscosity_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras_boundary_conditions_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence_boundary_conditions_.py +0 -65
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/fluid_farfield_values_.py +0 -173
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/fluid_prescribed_values_.py +0 -185
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/__init__.py +0 -5
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_farfield_values_komega_.py +0 -30
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_turbulent_viscosity_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/init_turbulent_viscosity_ratio_and_intensity_komega_.py +0 -33
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega_initialization_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/__init__.py +0 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_farfield_values_sa_.py +0 -30
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_sa_variable_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_turbulent_viscosity_ratio_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/init_turbulent_viscosity_sa_.py +0 -31
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras_initialization_.py +0 -25
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence_initialization_.py +0 -69
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid_.py +0 -438
- luminarycloud-0.13.0.dist-info/RECORD +0 -487
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/adaptive_mesh_refinement/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/basic/gravity/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/entity_relationships/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/boussinesq_approximation/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/material_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/thermal_conductivity_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/material/fluid/viscosity_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/frame_transforms/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/motion_data/motion_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/particle_group/particle_group_type/actuator_disk/actuator_disk_orientation_selection/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/__init__.py +3 -3
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/__init__.py +8 -8
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/outlet/outlet_strategy/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/energy/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/boundary_conditions/wall/momentum/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/actuator_line_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/physical_behavior/physical_behavior_model/particle_source_model/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/solution_controls/pseudo_time_step_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/spatial_discretization/convective_scheme_order/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/des_formulation/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/komega_sst/constants/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/spalart_allmaras/constants/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/fluid/turbulence/sub_grid_scale_model/__init__.py +2 -2
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/__init__.py +4 -4
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/boundary_conditions/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/heat_source/heat_source_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/initialization/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/heat/solution_controls/heat_relaxation_method/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/periodic_pair/periodicity_type/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/physics/solution_controls/linear_solver_type/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/compute_statistics/__init__.py +0 -0
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_marching/__init__.py +1 -1
- luminarycloud/params/{param_wrappers/simulation_param → simulation}/time/time_step_ramp/__init__.py +1 -1
- {luminarycloud-0.13.0.dist-info → luminarycloud-0.14.0.dist-info}/WHEEL +0 -0
|
@@ -5,6 +5,468 @@ from enum import IntEnum as _IntEnum
|
|
|
5
5
|
from luminarycloud._proto.client import simulation_pb2 as _clientpb
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
class UnitSystem(_IntEnum):
|
|
9
|
+
"""
|
|
10
|
+
Collection of units used for all quantities.
|
|
11
|
+
|
|
12
|
+
Attributes
|
|
13
|
+
----------
|
|
14
|
+
UNIT_SYSTEM_CUSTOM
|
|
15
|
+
Customize the units used for the main types of quantities.
|
|
16
|
+
UNIT_SYSTEM_SI
|
|
17
|
+
International System of Units (SI).
|
|
18
|
+
UNIT_SYSTEM_US
|
|
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
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
UNIT_SYSTEM_CUSTOM = _clientpb.UNIT_SYSTEM_CUSTOM
|
|
31
|
+
UNIT_SYSTEM_SI = _clientpb.UNIT_SYSTEM_SI
|
|
32
|
+
UNIT_SYSTEM_US = _clientpb.UNIT_SYSTEM_US
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class TemperatureUnit(_IntEnum):
|
|
36
|
+
"""
|
|
37
|
+
Unit used for temperature.
|
|
38
|
+
|
|
39
|
+
Attributes
|
|
40
|
+
----------
|
|
41
|
+
UNIT_KELVIN
|
|
42
|
+
Kelvin scale.
|
|
43
|
+
UNIT_CELSIUS
|
|
44
|
+
Degree Celsius.
|
|
45
|
+
UNIT_RANKINE
|
|
46
|
+
Degree Rankine.
|
|
47
|
+
UNIT_FAHRENHEIT
|
|
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
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
UNIT_KELVIN = _clientpb.UNIT_KELVIN
|
|
61
|
+
UNIT_CELSIUS = _clientpb.UNIT_CELSIUS
|
|
62
|
+
UNIT_RANKINE = _clientpb.UNIT_RANKINE
|
|
63
|
+
UNIT_FAHRENHEIT = _clientpb.UNIT_FAHRENHEIT
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class MassUnit(_IntEnum):
|
|
67
|
+
"""
|
|
68
|
+
Unit used for mass.
|
|
69
|
+
|
|
70
|
+
Attributes
|
|
71
|
+
----------
|
|
72
|
+
UNIT_KILOGRAM
|
|
73
|
+
Kilogram.
|
|
74
|
+
UNIT_GRAM
|
|
75
|
+
Gram.
|
|
76
|
+
UNIT_POUND
|
|
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
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
UNIT_KILOGRAM = _clientpb.UNIT_KILOGRAM
|
|
89
|
+
UNIT_GRAM = _clientpb.UNIT_GRAM
|
|
90
|
+
UNIT_POUND = _clientpb.UNIT_POUND
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
class LengthUnit(_IntEnum):
|
|
94
|
+
"""
|
|
95
|
+
Unit used for length.
|
|
96
|
+
|
|
97
|
+
Attributes
|
|
98
|
+
----------
|
|
99
|
+
UNIT_METER
|
|
100
|
+
Meter.
|
|
101
|
+
UNIT_MILLIMETER
|
|
102
|
+
Millimeter.
|
|
103
|
+
UNIT_FOOT
|
|
104
|
+
Foot.
|
|
105
|
+
UNIT_INCH
|
|
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
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
UNIT_METER = _clientpb.UNIT_METER
|
|
119
|
+
UNIT_MILLIMETER = _clientpb.UNIT_MILLIMETER
|
|
120
|
+
UNIT_FOOT = _clientpb.UNIT_FOOT
|
|
121
|
+
UNIT_INCH = _clientpb.UNIT_INCH
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
class AngleUnit(_IntEnum):
|
|
125
|
+
"""
|
|
126
|
+
Unit used for angles.
|
|
127
|
+
|
|
128
|
+
Attributes
|
|
129
|
+
----------
|
|
130
|
+
UNIT_DEGREE
|
|
131
|
+
Degree.
|
|
132
|
+
UNIT_RADIAN
|
|
133
|
+
Radian.
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
Examples
|
|
137
|
+
--------
|
|
138
|
+
>>> from luminarycloud.params.enum import AngleUnit
|
|
139
|
+
>>> AngleUnit.UNIT_DEGREE
|
|
140
|
+
>>> AngleUnit.UNIT_RADIAN
|
|
141
|
+
"""
|
|
142
|
+
|
|
143
|
+
UNIT_DEGREE = _clientpb.UNIT_DEGREE
|
|
144
|
+
UNIT_RADIAN = _clientpb.UNIT_RADIAN
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class TimeUnit(_IntEnum):
|
|
148
|
+
"""
|
|
149
|
+
Unit used for time.
|
|
150
|
+
|
|
151
|
+
Attributes
|
|
152
|
+
----------
|
|
153
|
+
UNIT_SECOND
|
|
154
|
+
Second.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
Examples
|
|
158
|
+
--------
|
|
159
|
+
>>> from luminarycloud.params.enum import TimeUnit
|
|
160
|
+
>>> TimeUnit.UNIT_SECOND
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
UNIT_SECOND = _clientpb.UNIT_SECOND
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
class VelocityUnit(_IntEnum):
|
|
167
|
+
"""
|
|
168
|
+
Unit used for velocity.
|
|
169
|
+
|
|
170
|
+
Attributes
|
|
171
|
+
----------
|
|
172
|
+
UNIT_METER_PER_SECOND
|
|
173
|
+
Meters per second.
|
|
174
|
+
UNIT_KM_PER_HOUR
|
|
175
|
+
Kilometers per hour.
|
|
176
|
+
UNIT_FEET_PER_SECOND
|
|
177
|
+
Feet per second.
|
|
178
|
+
UNIT_MILES_PER_HOUR
|
|
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
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
UNIT_METER_PER_SECOND = _clientpb.UNIT_METER_PER_SECOND
|
|
192
|
+
UNIT_KM_PER_HOUR = _clientpb.UNIT_KM_PER_HOUR
|
|
193
|
+
UNIT_FEET_PER_SECOND = _clientpb.UNIT_FEET_PER_SECOND
|
|
194
|
+
UNIT_MILES_PER_HOUR = _clientpb.UNIT_MILES_PER_HOUR
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
class AngularVelocityUnit(_IntEnum):
|
|
198
|
+
"""
|
|
199
|
+
Unit used for angular velocity.
|
|
200
|
+
|
|
201
|
+
Attributes
|
|
202
|
+
----------
|
|
203
|
+
UNIT_RADIAN_PER_SECOND
|
|
204
|
+
Radian per second.
|
|
205
|
+
UNIT_RPM
|
|
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
|
|
214
|
+
"""
|
|
215
|
+
|
|
216
|
+
UNIT_RADIAN_PER_SECOND = _clientpb.UNIT_RADIAN_PER_SECOND
|
|
217
|
+
UNIT_RPM = _clientpb.UNIT_RPM
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
class ForceUnit(_IntEnum):
|
|
221
|
+
"""
|
|
222
|
+
Unit used for force.
|
|
223
|
+
|
|
224
|
+
Attributes
|
|
225
|
+
----------
|
|
226
|
+
UNIT_NEWTON
|
|
227
|
+
Newton.
|
|
228
|
+
UNIT_POUND_FORCE
|
|
229
|
+
Pound-force.
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Examples
|
|
233
|
+
--------
|
|
234
|
+
>>> from luminarycloud.params.enum import ForceUnit
|
|
235
|
+
>>> ForceUnit.UNIT_NEWTON
|
|
236
|
+
>>> ForceUnit.UNIT_POUND_FORCE
|
|
237
|
+
"""
|
|
238
|
+
|
|
239
|
+
UNIT_NEWTON = _clientpb.UNIT_NEWTON
|
|
240
|
+
UNIT_POUND_FORCE = _clientpb.UNIT_POUND_FORCE
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
class MomentUnit(_IntEnum):
|
|
244
|
+
"""
|
|
245
|
+
Unit used for moment.
|
|
246
|
+
|
|
247
|
+
Attributes
|
|
248
|
+
----------
|
|
249
|
+
UNIT_NEWTON_METER
|
|
250
|
+
Newton-meter.
|
|
251
|
+
UNIT_POUND_FOOT
|
|
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
|
|
260
|
+
"""
|
|
261
|
+
|
|
262
|
+
UNIT_NEWTON_METER = _clientpb.UNIT_NEWTON_METER
|
|
263
|
+
UNIT_POUND_FOOT = _clientpb.UNIT_POUND_FOOT
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
class PressureUnit(_IntEnum):
|
|
267
|
+
"""
|
|
268
|
+
Unit used for pressure.
|
|
269
|
+
|
|
270
|
+
Attributes
|
|
271
|
+
----------
|
|
272
|
+
UNIT_PASCAL
|
|
273
|
+
Pascal.
|
|
274
|
+
UNIT_BAR
|
|
275
|
+
Bar.
|
|
276
|
+
UNIT_PSI
|
|
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
|
|
286
|
+
"""
|
|
287
|
+
|
|
288
|
+
UNIT_PASCAL = _clientpb.UNIT_PASCAL
|
|
289
|
+
UNIT_BAR = _clientpb.UNIT_BAR
|
|
290
|
+
UNIT_PSI = _clientpb.UNIT_PSI
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class EnergyUnit(_IntEnum):
|
|
294
|
+
"""
|
|
295
|
+
Unit used for energy.
|
|
296
|
+
|
|
297
|
+
Attributes
|
|
298
|
+
----------
|
|
299
|
+
UNIT_JOULE
|
|
300
|
+
Joule.
|
|
301
|
+
UNIT_BTU
|
|
302
|
+
British thermal unit.
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
Examples
|
|
306
|
+
--------
|
|
307
|
+
>>> from luminarycloud.params.enum import EnergyUnit
|
|
308
|
+
>>> EnergyUnit.UNIT_JOULE
|
|
309
|
+
>>> EnergyUnit.UNIT_BTU
|
|
310
|
+
"""
|
|
311
|
+
|
|
312
|
+
UNIT_JOULE = _clientpb.UNIT_JOULE
|
|
313
|
+
UNIT_BTU = _clientpb.UNIT_BTU
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
class PowerUnit(_IntEnum):
|
|
317
|
+
"""
|
|
318
|
+
Unit used for power.
|
|
319
|
+
|
|
320
|
+
Attributes
|
|
321
|
+
----------
|
|
322
|
+
UNIT_WATT
|
|
323
|
+
Watt.
|
|
324
|
+
UNIT_HORSEPOWER
|
|
325
|
+
Horsepower.
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
Examples
|
|
329
|
+
--------
|
|
330
|
+
>>> from luminarycloud.params.enum import PowerUnit
|
|
331
|
+
>>> PowerUnit.UNIT_WATT
|
|
332
|
+
>>> PowerUnit.UNIT_HORSEPOWER
|
|
333
|
+
"""
|
|
334
|
+
|
|
335
|
+
UNIT_WATT = _clientpb.UNIT_WATT
|
|
336
|
+
UNIT_HORSEPOWER = _clientpb.UNIT_HORSEPOWER
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class VolumeUnit(_IntEnum):
|
|
340
|
+
"""
|
|
341
|
+
Unit used for volume.
|
|
342
|
+
|
|
343
|
+
Attributes
|
|
344
|
+
----------
|
|
345
|
+
UNIT_CUBIC_METER
|
|
346
|
+
Cubic meter.
|
|
347
|
+
UNIT_LITER
|
|
348
|
+
Liter.
|
|
349
|
+
UNIT_GALLON
|
|
350
|
+
US gallon.
|
|
351
|
+
UNIT_CUBIC_INCH
|
|
352
|
+
Cubic inch.
|
|
353
|
+
UNIT_CUBIC_FOOT
|
|
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
|
|
365
|
+
"""
|
|
366
|
+
|
|
367
|
+
UNIT_CUBIC_METER = _clientpb.UNIT_CUBIC_METER
|
|
368
|
+
UNIT_LITER = _clientpb.UNIT_LITER
|
|
369
|
+
UNIT_GALLON = _clientpb.UNIT_GALLON
|
|
370
|
+
UNIT_CUBIC_INCH = _clientpb.UNIT_CUBIC_INCH
|
|
371
|
+
UNIT_CUBIC_FOOT = _clientpb.UNIT_CUBIC_FOOT
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
class VolumetricFlowUnit(_IntEnum):
|
|
375
|
+
"""
|
|
376
|
+
Unit used for volumetric flow.
|
|
377
|
+
|
|
378
|
+
Attributes
|
|
379
|
+
----------
|
|
380
|
+
UNIT_CUBIC_METER_PER_SECOND
|
|
381
|
+
Cubic meter per second.
|
|
382
|
+
UNIT_CFM
|
|
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
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
UNIT_CUBIC_METER_PER_SECOND = _clientpb.UNIT_CUBIC_METER_PER_SECOND
|
|
394
|
+
UNIT_CFM = _clientpb.UNIT_CFM
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class ViscosityUnit(_IntEnum):
|
|
398
|
+
"""
|
|
399
|
+
Unit used for dynamic viscosity.
|
|
400
|
+
|
|
401
|
+
Attributes
|
|
402
|
+
----------
|
|
403
|
+
UNIT_PASCAL_SECOND
|
|
404
|
+
Pascal-second.
|
|
405
|
+
UNIT_CENTIPOISE
|
|
406
|
+
Centipoise.
|
|
407
|
+
UNIT_POUND_SECOND_PER_SQUARE_FOOT
|
|
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
|
|
417
|
+
"""
|
|
418
|
+
|
|
419
|
+
UNIT_PASCAL_SECOND = _clientpb.UNIT_PASCAL_SECOND
|
|
420
|
+
UNIT_CENTIPOISE = _clientpb.UNIT_CENTIPOISE
|
|
421
|
+
UNIT_POUND_SECOND_PER_SQUARE_FOOT = _clientpb.UNIT_POUND_SECOND_PER_SQUARE_FOOT
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
class ConductivityUnit(_IntEnum):
|
|
425
|
+
"""
|
|
426
|
+
Unit used for thermal conductivity.
|
|
427
|
+
|
|
428
|
+
Attributes
|
|
429
|
+
----------
|
|
430
|
+
UNIT_WATT_PER_METER_KELVIN
|
|
431
|
+
Watt per meter-Kelvin.
|
|
432
|
+
UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT
|
|
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
|
|
441
|
+
"""
|
|
442
|
+
|
|
443
|
+
UNIT_WATT_PER_METER_KELVIN = _clientpb.UNIT_WATT_PER_METER_KELVIN
|
|
444
|
+
UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT = _clientpb.UNIT_BTU_PER_HOUR_FOOT_FAHRENHEIT
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
class MolecularWeightUnit(_IntEnum):
|
|
448
|
+
"""
|
|
449
|
+
Unit used for molecular weight.
|
|
450
|
+
|
|
451
|
+
Attributes
|
|
452
|
+
----------
|
|
453
|
+
UNIT_GRAM_PER_MOLE
|
|
454
|
+
Grams per mole.
|
|
455
|
+
UNIT_POUND_PER_POUND_MOLE
|
|
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
|
|
464
|
+
"""
|
|
465
|
+
|
|
466
|
+
UNIT_GRAM_PER_MOLE = _clientpb.UNIT_GRAM_PER_MOLE
|
|
467
|
+
UNIT_POUND_PER_POUND_MOLE = _clientpb.UNIT_POUND_PER_POUND_MOLE
|
|
468
|
+
|
|
469
|
+
|
|
8
470
|
class DensityRelationship(_IntEnum):
|
|
9
471
|
"""
|
|
10
472
|
Relationship for computing the density of the fluid.
|
|
@@ -17,6 +479,14 @@ class DensityRelationship(_IntEnum):
|
|
|
17
479
|
Constant density fluid (heat transfer is not simulated).
|
|
18
480
|
CONSTANT_DENSITY_ENERGY
|
|
19
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
|
|
20
490
|
"""
|
|
21
491
|
|
|
22
492
|
IDEAL_GAS = _clientpb.IDEAL_GAS
|
|
@@ -36,6 +506,14 @@ class LaminarThermalConductivity(_IntEnum):
|
|
|
36
506
|
Constant laminar thermal conductivity or tabulated values vs temperature.
|
|
37
507
|
TEMPERATURE_DEPENDENT_THERMAL_CONDUCTIVITY
|
|
38
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
|
|
39
517
|
"""
|
|
40
518
|
|
|
41
519
|
LAMINAR_CONSTANT_THERMAL_PRANDTL = _clientpb.LAMINAR_CONSTANT_THERMAL_PRANDTL
|
|
@@ -55,6 +533,13 @@ class BoussinesqApproximation(_IntEnum):
|
|
|
55
533
|
Disable Boussinesq approximation.
|
|
56
534
|
BOUSSINESQ_ON
|
|
57
535
|
Enable Boussinesq approximation.
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Examples
|
|
539
|
+
--------
|
|
540
|
+
>>> from luminarycloud.params.enum import BoussinesqApproximation
|
|
541
|
+
>>> BoussinesqApproximation.BOUSSINESQ_OFF
|
|
542
|
+
>>> BoussinesqApproximation.BOUSSINESQ_ON
|
|
58
543
|
"""
|
|
59
544
|
|
|
60
545
|
BOUSSINESQ_OFF = _clientpb.BOUSSINESQ_OFF
|
|
@@ -75,6 +560,15 @@ class MaterialFluidPreset(_IntEnum):
|
|
|
75
560
|
Properties of water at 1 atmosphere and 20° Celsius
|
|
76
561
|
CUSTOM_MATERIAL_FLUID
|
|
77
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
|
|
78
572
|
"""
|
|
79
573
|
|
|
80
574
|
UNSET_MATERIAL_FLUID_PRESET = _clientpb.UNSET_MATERIAL_FLUID_PRESET
|
|
@@ -95,6 +589,14 @@ class LaminarViscosityModelNewtonian(_IntEnum):
|
|
|
95
589
|
Constant dynamic viscosity or tabulated values vs temperature.
|
|
96
590
|
TEMPERATURE_DEPENDENT_LAMINAR_VISCOSITY
|
|
97
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
|
|
98
600
|
"""
|
|
99
601
|
|
|
100
602
|
SUTHERLAND = _clientpb.SUTHERLAND
|
|
@@ -120,6 +622,17 @@ class MaterialSolidPreset(_IntEnum):
|
|
|
120
622
|
Properties of pure titanium.
|
|
121
623
|
CUSTOM_MATERIAL_SOLID
|
|
122
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
|
|
123
636
|
"""
|
|
124
637
|
|
|
125
638
|
ALUMINUM = _clientpb.ALUMINUM
|
|
@@ -143,6 +656,14 @@ class FloatType(_IntEnum):
|
|
|
143
656
|
ADA1D
|
|
144
657
|
Solve the discrete adjoint equations to obtain geometric
|
|
145
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
|
|
146
667
|
"""
|
|
147
668
|
|
|
148
669
|
DOUBLE = _clientpb.DOUBLE
|
|
@@ -160,6 +681,13 @@ class Gravity(_IntEnum):
|
|
|
160
681
|
Disable gravity or other body force.
|
|
161
682
|
GRAVITY_ON
|
|
162
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
|
|
163
691
|
"""
|
|
164
692
|
|
|
165
693
|
GRAVITY_OFF = _clientpb.GRAVITY_OFF
|
|
@@ -176,6 +704,13 @@ class FlowBehavior(_IntEnum):
|
|
|
176
704
|
Solve for a steady-state solution of the governing equations.
|
|
177
705
|
TRANSIENT
|
|
178
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
|
|
179
714
|
"""
|
|
180
715
|
|
|
181
716
|
STEADY = _clientpb.STEADY
|
|
@@ -192,6 +727,13 @@ class TimeMarching(_IntEnum):
|
|
|
192
727
|
Implicit scheme (dual time stepping) for time-accurate integration.
|
|
193
728
|
TIME_EXPLICIT
|
|
194
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
|
|
195
737
|
"""
|
|
196
738
|
|
|
197
739
|
TIME_IMPLICIT = _clientpb.TIME_IMPLICIT
|
|
@@ -208,6 +750,13 @@ class TimeImplicitOrder(_IntEnum):
|
|
|
208
750
|
Second-order backward Euler integration.
|
|
209
751
|
TIME_FIRST
|
|
210
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
|
|
211
760
|
"""
|
|
212
761
|
|
|
213
762
|
TIME_SECOND = _clientpb.TIME_SECOND
|
|
@@ -222,6 +771,12 @@ class PhysicalTimeStepMethod(_IntEnum):
|
|
|
222
771
|
----------
|
|
223
772
|
FIXED_TIME_STEP
|
|
224
773
|
Apply a fixed physical time step.
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
Examples
|
|
777
|
+
--------
|
|
778
|
+
>>> from luminarycloud.params.enum import PhysicalTimeStepMethod
|
|
779
|
+
>>> PhysicalTimeStepMethod.FIXED_TIME_STEP
|
|
225
780
|
"""
|
|
226
781
|
|
|
227
782
|
FIXED_TIME_STEP = _clientpb.FIXED_TIME_STEP
|
|
@@ -239,6 +794,13 @@ class TimeStepRamp(_IntEnum):
|
|
|
239
794
|
Disable physical time step ramping.
|
|
240
795
|
TIME_STEP_RAMP_ON
|
|
241
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
|
|
242
804
|
"""
|
|
243
805
|
|
|
244
806
|
TIME_STEP_RAMP_OFF = _clientpb.TIME_STEP_RAMP_OFF
|
|
@@ -255,6 +817,13 @@ class ComputeStatistics(_IntEnum):
|
|
|
255
817
|
Disable computation of transient statistics.
|
|
256
818
|
COMPUTE_STATISTICS_ON
|
|
257
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
|
|
258
827
|
"""
|
|
259
828
|
|
|
260
829
|
COMPUTE_STATISTICS_OFF = _clientpb.COMPUTE_STATISTICS_OFF
|
|
@@ -275,6 +844,15 @@ class MotionType(_IntEnum):
|
|
|
275
844
|
Motion is defined by specifying an initial rotation and constant angular velocity.
|
|
276
845
|
CONSTANT_VELOCITY_MOTION
|
|
277
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
|
|
278
856
|
"""
|
|
279
857
|
|
|
280
858
|
NO_MOTION = _clientpb.NO_MOTION
|
|
@@ -294,6 +872,13 @@ class MotionFormulation(_IntEnum):
|
|
|
294
872
|
MRF_MOTION_FORMULATION
|
|
295
873
|
The equations are solved in a moving reference frame without
|
|
296
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
|
|
297
882
|
"""
|
|
298
883
|
|
|
299
884
|
AUTOMATIC_MOTION_FORMULATION = _clientpb.AUTOMATIC_MOTION_FORMULATION
|
|
@@ -310,6 +895,13 @@ class MotionSpecification(_IntEnum):
|
|
|
310
895
|
The mesh is repositioned at simulation start time using the initial displacement or rotation
|
|
311
896
|
MOTION_SPECIFICATION_NORMAL
|
|
312
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
|
|
313
905
|
"""
|
|
314
906
|
|
|
315
907
|
MOTION_SPECIFICATION_REPOSITION = _clientpb.MOTION_SPECIFICATION_REPOSITION
|
|
@@ -328,6 +920,14 @@ class TransformType(_IntEnum):
|
|
|
328
920
|
Rotational Transformation
|
|
329
921
|
TRANSLATIONAL_TRANSFORM
|
|
330
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
|
|
331
931
|
"""
|
|
332
932
|
|
|
333
933
|
NO_TRANSFORM = _clientpb.NO_TRANSFORM
|
|
@@ -349,6 +949,15 @@ class ParticleGroupType(_IntEnum):
|
|
|
349
949
|
Injects material into the solver at particle locations
|
|
350
950
|
PROBE_POINTS
|
|
351
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
|
|
352
961
|
"""
|
|
353
962
|
|
|
354
963
|
ACTUATOR_DISK = _clientpb.ACTUATOR_DISK
|
|
@@ -367,6 +976,13 @@ class ActuatorDiskOrientationSelection(_IntEnum):
|
|
|
367
976
|
Specify rotation about x-, y-, and z- axes
|
|
368
977
|
ACTUATOR_DISK_SPECIFY_NORMAL_VECTOR
|
|
369
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
|
|
370
986
|
"""
|
|
371
987
|
|
|
372
988
|
ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES = _clientpb.ACTUATOR_DISK_SPECIFY_ROTATION_ANGLES
|
|
@@ -383,6 +999,13 @@ class DebugOutput(_IntEnum):
|
|
|
383
999
|
Disable debug output.
|
|
384
1000
|
SOLN_DEBUG_OUTPUT_ON
|
|
385
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
|
|
386
1009
|
"""
|
|
387
1010
|
|
|
388
1011
|
SOLN_DEBUG_OUTPUT_OFF = _clientpb.SOLN_DEBUG_OUTPUT_OFF
|
|
@@ -399,6 +1022,13 @@ class DebugOutputInteriorSurfaceData(_IntEnum):
|
|
|
399
1022
|
Disable debug output.
|
|
400
1023
|
SOLN_DEBUG_OUTPUT_INT_SURF_DATA_ON
|
|
401
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
|
|
402
1032
|
"""
|
|
403
1033
|
|
|
404
1034
|
SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF = _clientpb.SOLN_DEBUG_OUTPUT_INT_SURF_DATA_OFF
|
|
@@ -415,6 +1045,13 @@ class MeshingMethod(_IntEnum):
|
|
|
415
1045
|
Using user inputs to guide single, manual mesh generation.
|
|
416
1046
|
MESH_METHOD_AUTO
|
|
417
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
|
|
418
1055
|
"""
|
|
419
1056
|
|
|
420
1057
|
MESH_METHOD_MANUAL = _clientpb.MESH_METHOD_MANUAL
|
|
@@ -434,6 +1071,14 @@ class AllTet(_IntEnum):
|
|
|
434
1071
|
|
|
435
1072
|
ALL_TET_ON
|
|
436
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
|
|
437
1082
|
"""
|
|
438
1083
|
|
|
439
1084
|
ALL_TET_UNSET = _clientpb.ALL_TET_UNSET
|
|
@@ -451,6 +1096,13 @@ class RelaxationMethod(_IntEnum):
|
|
|
451
1096
|
Apply an implicit relaxation scheme.
|
|
452
1097
|
EXPLICIT
|
|
453
1098
|
Apply an explicit relaxation scheme.
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Examples
|
|
1102
|
+
--------
|
|
1103
|
+
>>> from luminarycloud.params.enum import RelaxationMethod
|
|
1104
|
+
>>> RelaxationMethod.IMPLICIT
|
|
1105
|
+
>>> RelaxationMethod.EXPLICIT
|
|
454
1106
|
"""
|
|
455
1107
|
|
|
456
1108
|
IMPLICIT = _clientpb.IMPLICIT
|
|
@@ -465,6 +1117,12 @@ class ImplicitMethod(_IntEnum):
|
|
|
465
1117
|
----------
|
|
466
1118
|
BACKWARD_EULER
|
|
467
1119
|
First-order backward Euler scheme.
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
Examples
|
|
1123
|
+
--------
|
|
1124
|
+
>>> from luminarycloud.params.enum import ImplicitMethod
|
|
1125
|
+
>>> ImplicitMethod.BACKWARD_EULER
|
|
468
1126
|
"""
|
|
469
1127
|
|
|
470
1128
|
BACKWARD_EULER = _clientpb.BACKWARD_EULER
|
|
@@ -484,6 +1142,15 @@ class LinearSolverType(_IntEnum):
|
|
|
484
1142
|
AMG + Krylov iterative method.
|
|
485
1143
|
AMG_AMGX
|
|
486
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
|
|
487
1154
|
"""
|
|
488
1155
|
|
|
489
1156
|
GS = _clientpb.GS
|
|
@@ -504,6 +1171,14 @@ class LinsolAmgCycleType(_IntEnum):
|
|
|
504
1171
|
W cycle
|
|
505
1172
|
LINSOL_AMG_CYCLE_TYPE_F
|
|
506
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
|
|
507
1182
|
"""
|
|
508
1183
|
|
|
509
1184
|
LINSOL_AMG_CYCLE_TYPE_V = _clientpb.LINSOL_AMG_CYCLE_TYPE_V
|
|
@@ -523,6 +1198,14 @@ class LinsolAmgSmoother(_IntEnum):
|
|
|
523
1198
|
Gauss-Seidel
|
|
524
1199
|
LINSOL_AMG_SMOOTHER_SYM_GS
|
|
525
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
|
|
526
1209
|
"""
|
|
527
1210
|
|
|
528
1211
|
LINSOL_AMG_SMOOTHER_JACOBI = _clientpb.LINSOL_AMG_SMOOTHER_JACOBI
|
|
@@ -542,6 +1225,14 @@ class ExplicitMethod(_IntEnum):
|
|
|
542
1225
|
Total Variation Diminishing Runge-Kutta third-order scheme.
|
|
543
1226
|
FORWARD_EULER
|
|
544
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
|
|
545
1236
|
"""
|
|
546
1237
|
|
|
547
1238
|
RK_4 = _clientpb.RK_4
|
|
@@ -565,6 +1256,16 @@ class SolutionControlsHeatPreset(_IntEnum):
|
|
|
565
1256
|
Aggressive settings further biased towards speed.
|
|
566
1257
|
CUSTOM_SOLUTION_CONTROLS_HEAT
|
|
567
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
|
|
568
1269
|
"""
|
|
569
1270
|
|
|
570
1271
|
UNSET_SOLUTION_CONTROLS_HEAT_PRESET = _clientpb.UNSET_SOLUTION_CONTROLS_HEAT_PRESET
|
|
@@ -586,6 +1287,14 @@ class AdjointSolutionMethod(_IntEnum):
|
|
|
586
1287
|
Use a preconditioned Richardson iteration to solve the equations.
|
|
587
1288
|
ADJOINT_METHOD_ALGORITHMIC
|
|
588
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
|
|
589
1298
|
"""
|
|
590
1299
|
|
|
591
1300
|
ADJOINT_METHOD_GMRES = _clientpb.ADJOINT_METHOD_GMRES
|
|
@@ -610,6 +1319,16 @@ class GradientMethod(_IntEnum):
|
|
|
610
1319
|
NODAL_GRADIENT
|
|
611
1320
|
Gradients computed using nodal values interpolated from the
|
|
612
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
|
|
613
1332
|
"""
|
|
614
1333
|
|
|
615
1334
|
HLSQ = _clientpb.HLSQ
|
|
@@ -629,6 +1348,13 @@ class GeometryFixes(_IntEnum):
|
|
|
629
1348
|
Enable geometry fixes.
|
|
630
1349
|
GEOMETRY_FIXES_OFF
|
|
631
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
|
|
632
1358
|
"""
|
|
633
1359
|
|
|
634
1360
|
GEOMETRY_FIXES_ON = _clientpb.GEOMETRY_FIXES_ON
|
|
@@ -651,6 +1377,16 @@ class SpatialDiscretizationHeatPreset(_IntEnum):
|
|
|
651
1377
|
Settings that emphasize accuracy (relative to default).
|
|
652
1378
|
CUSTOM_SPATIAL_DISCRETIZATION_HEAT
|
|
653
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
|
|
654
1390
|
"""
|
|
655
1391
|
|
|
656
1392
|
UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET = _clientpb.UNSET_SPATIAL_DISCRETIZATION_HEAT_PRESET
|
|
@@ -680,6 +1416,18 @@ class ProfileType(_IntEnum):
|
|
|
680
1416
|
1D radial profile normal to the Z direction.
|
|
681
1417
|
TIME
|
|
682
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
|
|
683
1431
|
"""
|
|
684
1432
|
|
|
685
1433
|
CARTESIAN_X = _clientpb.CARTESIAN_X
|
|
@@ -707,6 +1455,16 @@ class HeatPhysicalBoundary(_IntEnum):
|
|
|
707
1455
|
Symmetry.
|
|
708
1456
|
HEAT_BC_CONVECTION
|
|
709
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
|
|
710
1468
|
"""
|
|
711
1469
|
|
|
712
1470
|
HEAT_BC_ISOTHERMAL = _clientpb.HEAT_BC_ISOTHERMAL
|
|
@@ -732,6 +1490,16 @@ class InitializationType(_IntEnum):
|
|
|
732
1490
|
Apply an initial condition corresponding to a predefined problem.
|
|
733
1491
|
EXISTING_SOLUTION
|
|
734
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
|
|
735
1503
|
"""
|
|
736
1504
|
|
|
737
1505
|
UNIFORM_VALUES = _clientpb.UNIFORM_VALUES
|
|
@@ -751,6 +1519,13 @@ class HeatSourceType(_IntEnum):
|
|
|
751
1519
|
Specify heat source power in Watts.
|
|
752
1520
|
HEAT_SOURCE_TYPE_POWER_PER_UNIT_OF_VOLUME
|
|
753
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
|
|
754
1529
|
"""
|
|
755
1530
|
|
|
756
1531
|
HEAT_SOURCE_TYPE_POWER = _clientpb.HEAT_SOURCE_TYPE_POWER
|
|
@@ -768,6 +1543,13 @@ class InterfaceType(_IntEnum):
|
|
|
768
1543
|
interface, or frozen rotor, or sliding interface).
|
|
769
1544
|
MIXING_PLANE_INTERFACE
|
|
770
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
|
|
771
1553
|
"""
|
|
772
1554
|
|
|
773
1555
|
GENERAL_INTERFACE = _clientpb.GENERAL_INTERFACE
|
|
@@ -784,6 +1566,13 @@ class PeriodicBcType(_IntEnum):
|
|
|
784
1566
|
|
|
785
1567
|
ROTATIONAL
|
|
786
1568
|
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
Examples
|
|
1572
|
+
--------
|
|
1573
|
+
>>> from luminarycloud.params.enum import PeriodicBcType
|
|
1574
|
+
>>> PeriodicBcType.TRANSLATIONAL
|
|
1575
|
+
>>> PeriodicBcType.ROTATIONAL
|
|
787
1576
|
"""
|
|
788
1577
|
|
|
789
1578
|
TRANSLATIONAL = _clientpb.TRANSLATIONAL
|
|
@@ -802,6 +1591,14 @@ class FluidType(_IntEnum):
|
|
|
802
1591
|
Single phase approximation for cavitation with a cavitation model
|
|
803
1592
|
VOF_FLUID
|
|
804
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
|
|
805
1602
|
"""
|
|
806
1603
|
|
|
807
1604
|
SINGLE_PHASE = _clientpb.SINGLE_PHASE
|
|
@@ -825,6 +1622,16 @@ class ViscousModel(_IntEnum):
|
|
|
825
1622
|
Laminar flow governed by the Navier-Stokes equations.
|
|
826
1623
|
INVISCID
|
|
827
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
|
|
828
1635
|
"""
|
|
829
1636
|
|
|
830
1637
|
RANS = _clientpb.RANS
|
|
@@ -852,6 +1659,17 @@ class DesFormulation(_IntEnum):
|
|
|
852
1659
|
Use the original Detached Eddy Simulation (DES) formulation.
|
|
853
1660
|
ZDES
|
|
854
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
|
|
855
1673
|
"""
|
|
856
1674
|
|
|
857
1675
|
DDES_VTM = _clientpb.DDES_VTM
|
|
@@ -872,6 +1690,13 @@ class RansRegion(_IntEnum):
|
|
|
872
1690
|
Force RANS behavior inside a prescribed bounding box.
|
|
873
1691
|
OUTSIDE
|
|
874
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
|
|
875
1700
|
"""
|
|
876
1701
|
|
|
877
1702
|
INSIDE = _clientpb.INSIDE
|
|
@@ -896,6 +1721,17 @@ class SubGridScaleModel(_IntEnum):
|
|
|
896
1721
|
Sigma eddy viscosity model.
|
|
897
1722
|
AMD
|
|
898
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
|
|
899
1735
|
"""
|
|
900
1736
|
|
|
901
1737
|
NONE = _clientpb.NONE
|
|
@@ -923,6 +1759,15 @@ class TransitionModel(_IntEnum):
|
|
|
923
1759
|
AFT_2019
|
|
924
1760
|
Two-equation amplification factor transport, AFT-2019,
|
|
925
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
|
|
926
1771
|
"""
|
|
927
1772
|
|
|
928
1773
|
NO_TRANSITION = _clientpb.NO_TRANSITION
|
|
@@ -941,6 +1786,13 @@ class TransitionModelCrossFlow(_IntEnum):
|
|
|
941
1786
|
Crossflow instability is not considered in transition modelling.
|
|
942
1787
|
TRANSITION_MODEL_CROSS_FLOW_ON
|
|
943
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
|
|
944
1796
|
"""
|
|
945
1797
|
|
|
946
1798
|
TRANSITION_MODEL_CROSS_FLOW_OFF = _clientpb.TRANSITION_MODEL_CROSS_FLOW_OFF
|
|
@@ -957,6 +1809,13 @@ class TurbulenceModel(_IntEnum):
|
|
|
957
1809
|
'Standard' Spalart-Allmaras one-equation turbulence model.
|
|
958
1810
|
KOMEGA_SST
|
|
959
1811
|
SST 2003m model.
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
Examples
|
|
1815
|
+
--------
|
|
1816
|
+
>>> from luminarycloud.params.enum import TurbulenceModel
|
|
1817
|
+
>>> TurbulenceModel.SPALART_ALLMARAS
|
|
1818
|
+
>>> TurbulenceModel.KOMEGA_SST
|
|
960
1819
|
"""
|
|
961
1820
|
|
|
962
1821
|
SPALART_ALLMARAS = _clientpb.SPALART_ALLMARAS
|
|
@@ -973,6 +1832,13 @@ class QcrSa(_IntEnum):
|
|
|
973
1832
|
A QCR modification is not applied.
|
|
974
1833
|
QCR2000
|
|
975
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
|
|
976
1842
|
"""
|
|
977
1843
|
|
|
978
1844
|
QCR_OFF = _clientpb.QCR_OFF
|
|
@@ -989,6 +1855,13 @@ class RotationCorrectionSa(_IntEnum):
|
|
|
989
1855
|
A rotation correction is not applied to the Spalart-Allmaras turbulence model.
|
|
990
1856
|
ROTATION_CORRECTION_ON
|
|
991
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
|
|
992
1865
|
"""
|
|
993
1866
|
|
|
994
1867
|
ROTATION_CORRECTION_OFF = _clientpb.ROTATION_CORRECTION_OFF
|
|
@@ -1005,6 +1878,13 @@ class TurbulenceModelConstants(_IntEnum):
|
|
|
1005
1878
|
Use default turbulence model constants.
|
|
1006
1879
|
CUSTOM_TURB_CONSTANTS
|
|
1007
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
|
|
1008
1888
|
"""
|
|
1009
1889
|
|
|
1010
1890
|
DEFAULT_TURB_CONSTANTS = _clientpb.DEFAULT_TURB_CONSTANTS
|
|
@@ -1021,6 +1901,13 @@ class QcrSst(_IntEnum):
|
|
|
1021
1901
|
A QCR modification is not applied.
|
|
1022
1902
|
SST_QCR2000
|
|
1023
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
|
|
1024
1911
|
"""
|
|
1025
1912
|
|
|
1026
1913
|
SST_QCR_OFF = _clientpb.SST_QCR_OFF
|
|
@@ -1037,6 +1924,13 @@ class PseudoTimeStepMethod(_IntEnum):
|
|
|
1037
1924
|
Compute a pseudo time step from a Courant-Friedrichs-Lewy (CFL) number.
|
|
1038
1925
|
FIXED_PSEUDO_TIME_STEP
|
|
1039
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
|
|
1040
1934
|
"""
|
|
1041
1935
|
|
|
1042
1936
|
CFL_BASED = _clientpb.CFL_BASED
|
|
@@ -1055,6 +1949,13 @@ class LocalTimeStepping(_IntEnum):
|
|
|
1055
1949
|
Enable local time stepping.
|
|
1056
1950
|
LOCAL_TIME_STEPPING_OFF
|
|
1057
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
|
|
1058
1959
|
"""
|
|
1059
1960
|
|
|
1060
1961
|
LOCAL_TIME_STEPPING_ON = _clientpb.LOCAL_TIME_STEPPING_ON
|
|
@@ -1069,6 +1970,12 @@ class JacobianUpdateMethod(_IntEnum):
|
|
|
1069
1970
|
----------
|
|
1070
1971
|
EXPLICIT_INTERVAL_AND_WARMUP
|
|
1071
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
|
|
1072
1979
|
"""
|
|
1073
1980
|
|
|
1074
1981
|
EXPLICIT_INTERVAL_AND_WARMUP = _clientpb.EXPLICIT_INTERVAL_AND_WARMUP
|
|
@@ -1084,6 +1991,13 @@ class RobustStartup(_IntEnum):
|
|
|
1084
1991
|
Enable robust startup mode.
|
|
1085
1992
|
ROBUST_STARTUP_OFF
|
|
1086
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
|
|
1087
2001
|
"""
|
|
1088
2002
|
|
|
1089
2003
|
ROBUST_STARTUP_ON = _clientpb.ROBUST_STARTUP_ON
|
|
@@ -1106,6 +2020,16 @@ class SolutionControlsFluidPreset(_IntEnum):
|
|
|
1106
2020
|
Aggressive settings further biased towards speed, up to 3 times faster than the default settings (these may not be suitable for all problems).
|
|
1107
2021
|
CUSTOM_SOLUTION_CONTROLS_FLUID
|
|
1108
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
|
|
1109
2033
|
"""
|
|
1110
2034
|
|
|
1111
2035
|
UNSET_SOLUTION_CONTROLS_FLUID_PRESET = _clientpb.UNSET_SOLUTION_CONTROLS_FLUID_PRESET
|
|
@@ -1129,6 +2053,15 @@ class ConvectiveSchemesDensityBased(_IntEnum):
|
|
|
1129
2053
|
Entropy-Stable discretization.
|
|
1130
2054
|
RHIE_CHOW
|
|
1131
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
|
|
1132
2065
|
"""
|
|
1133
2066
|
|
|
1134
2067
|
ROE = _clientpb.ROE
|
|
@@ -1147,6 +2080,13 @@ class Preconditioning(_IntEnum):
|
|
|
1147
2080
|
Enable low-speed preconditioning.
|
|
1148
2081
|
PRECONDITIONING_OFF
|
|
1149
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
|
|
1150
2090
|
"""
|
|
1151
2091
|
|
|
1152
2092
|
PRECONDITIONING_ON = _clientpb.PRECONDITIONING_ON
|
|
@@ -1163,6 +2103,13 @@ class ArtificialViscosityModel(_IntEnum):
|
|
|
1163
2103
|
No artificial viscosity model.
|
|
1164
2104
|
LAD
|
|
1165
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
|
|
1166
2113
|
"""
|
|
1167
2114
|
|
|
1168
2115
|
NO_MODEL = _clientpb.NO_MODEL
|
|
@@ -1181,6 +2128,14 @@ class SkewSymmetricFormulation(_IntEnum):
|
|
|
1181
2128
|
Praveen Chandrasekhar's EC1 formulation.
|
|
1182
2129
|
KUYA
|
|
1183
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
|
|
1184
2139
|
"""
|
|
1185
2140
|
|
|
1186
2141
|
CHANDRASEKHAR_EC2 = _clientpb.CHANDRASEKHAR_EC2
|
|
@@ -1198,6 +2153,13 @@ class UpwindSchemeOrder(_IntEnum):
|
|
|
1198
2153
|
Second-order accuracy.
|
|
1199
2154
|
FIRST
|
|
1200
2155
|
First-order accuracy.
|
|
2156
|
+
|
|
2157
|
+
|
|
2158
|
+
Examples
|
|
2159
|
+
--------
|
|
2160
|
+
>>> from luminarycloud.params.enum import UpwindSchemeOrder
|
|
2161
|
+
>>> UpwindSchemeOrder.SECOND
|
|
2162
|
+
>>> UpwindSchemeOrder.FIRST
|
|
1201
2163
|
"""
|
|
1202
2164
|
|
|
1203
2165
|
SECOND = _clientpb.SECOND
|
|
@@ -1214,6 +2176,13 @@ class RobustDissipation(_IntEnum):
|
|
|
1214
2176
|
Disable robust dissipation.
|
|
1215
2177
|
ROBUST_DISS_ON
|
|
1216
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
|
|
1217
2186
|
"""
|
|
1218
2187
|
|
|
1219
2188
|
ROBUST_DISS_OFF = _clientpb.ROBUST_DISS_OFF
|
|
@@ -1239,6 +2208,15 @@ class Limiter(_IntEnum):
|
|
|
1239
2208
|
VENKATAKRISHNAN_CV
|
|
1240
2209
|
This option was deprecated in favor of an implementation of the
|
|
1241
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
|
|
1242
2220
|
"""
|
|
1243
2221
|
|
|
1244
2222
|
NO_LIMITER = _clientpb.NO_LIMITER
|
|
@@ -1263,6 +2241,16 @@ class SpatialDiscretizationFluidPreset(_IntEnum):
|
|
|
1263
2241
|
Settings that emphasize accuracy (relative to default).
|
|
1264
2242
|
CUSTOM_SPATIAL_DISCRETIZATION_FLUID
|
|
1265
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
|
|
1266
2254
|
"""
|
|
1267
2255
|
|
|
1268
2256
|
UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET = _clientpb.UNSET_SPATIAL_DISCRETIZATION_FLUID_PRESET
|
|
@@ -1292,6 +2280,17 @@ class PhysicalBoundary(_IntEnum):
|
|
|
1292
2280
|
Far-field boundary condition.
|
|
1293
2281
|
OVERSET
|
|
1294
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
|
|
1295
2294
|
"""
|
|
1296
2295
|
|
|
1297
2296
|
WALL = _clientpb.WALL
|
|
@@ -1314,6 +2313,14 @@ class WallMomentum(_IntEnum):
|
|
|
1314
2313
|
Apply a slip (flow tangency) condition at the wall surface.
|
|
1315
2314
|
WALL_MODEL
|
|
1316
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
|
|
1317
2324
|
"""
|
|
1318
2325
|
|
|
1319
2326
|
NO_SLIP = _clientpb.NO_SLIP
|
|
@@ -1331,6 +2338,13 @@ class WallEnergy(_IntEnum):
|
|
|
1331
2338
|
Apply a fixed heat flux at the wall surface.
|
|
1332
2339
|
FIXED_TEMPERATURE
|
|
1333
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
|
|
1334
2348
|
"""
|
|
1335
2349
|
|
|
1336
2350
|
FIXED_HEAT_FLUX = _clientpb.FIXED_HEAT_FLUX
|
|
@@ -1345,6 +2359,12 @@ class InletEnergy(_IntEnum):
|
|
|
1345
2359
|
----------
|
|
1346
2360
|
TOTAL_TEMPERATURE_INLET
|
|
1347
2361
|
Specify total temperature.
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
Examples
|
|
2365
|
+
--------
|
|
2366
|
+
>>> from luminarycloud.params.enum import InletEnergy
|
|
2367
|
+
>>> InletEnergy.TOTAL_TEMPERATURE_INLET
|
|
1348
2368
|
"""
|
|
1349
2369
|
|
|
1350
2370
|
TOTAL_TEMPERATURE_INLET = _clientpb.TOTAL_TEMPERATURE_INLET
|
|
@@ -1362,6 +2382,14 @@ class TurbulenceSpecificationSpalartAllmaras(_IntEnum):
|
|
|
1362
2382
|
Set the turbulent viscosity at the boundary.
|
|
1363
2383
|
BC_SA_VARIABLE
|
|
1364
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
|
|
1365
2393
|
"""
|
|
1366
2394
|
|
|
1367
2395
|
TURBULENT_VISCOSITY_RATIO_SA = _clientpb.TURBULENT_VISCOSITY_RATIO_SA
|
|
@@ -1381,6 +2409,14 @@ class TurbulenceSpecificationKomega(_IntEnum):
|
|
|
1381
2409
|
Set a uniform turbulent viscosity and turbulence intensity in the domain.
|
|
1382
2410
|
BC_KOMEGA_VARIABLES
|
|
1383
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
|
|
1384
2420
|
"""
|
|
1385
2421
|
|
|
1386
2422
|
BC_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA = (
|
|
@@ -1406,18 +2442,29 @@ class InletMomentum(_IntEnum):
|
|
|
1406
2442
|
Specify the velocity magnitude.
|
|
1407
2443
|
VELOCITY_COMPONENTS_INLET
|
|
1408
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.
|
|
1409
2447
|
FAN_CURVE_INLET
|
|
1410
2448
|
Specify the relation between the fan pressure rise and the volume flow rate.
|
|
1411
|
-
|
|
1412
|
-
|
|
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
|
|
1413
2460
|
"""
|
|
1414
2461
|
|
|
1415
2462
|
TOTAL_PRESSURE_INLET = _clientpb.TOTAL_PRESSURE_INLET
|
|
1416
2463
|
MASS_FLOW_INLET = _clientpb.MASS_FLOW_INLET
|
|
1417
2464
|
VELOCITY_INLET = _clientpb.VELOCITY_INLET
|
|
1418
2465
|
VELOCITY_COMPONENTS_INLET = _clientpb.VELOCITY_COMPONENTS_INLET
|
|
1419
|
-
FAN_CURVE_INLET = _clientpb.FAN_CURVE_INLET
|
|
1420
2466
|
MACH_INLET = _clientpb.MACH_INLET
|
|
2467
|
+
FAN_CURVE_INLET = _clientpb.FAN_CURVE_INLET
|
|
1421
2468
|
|
|
1422
2469
|
|
|
1423
2470
|
class DirectionSpecification(_IntEnum):
|
|
@@ -1430,6 +2477,13 @@ class DirectionSpecification(_IntEnum):
|
|
|
1430
2477
|
Impose a flow direction normal to the inlet boundary toward the interior of the domain.
|
|
1431
2478
|
DIRECTION_VECTOR
|
|
1432
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
|
|
1433
2487
|
"""
|
|
1434
2488
|
|
|
1435
2489
|
NORMAL_TO_BOUNDARY = _clientpb.NORMAL_TO_BOUNDARY
|
|
@@ -1453,6 +2507,15 @@ class OutletStrategy(_IntEnum):
|
|
|
1453
2507
|
<sup>P<sub>ref</sub></sup> ⁄ <sub>P<sub>0</sub></sub>).
|
|
1454
2508
|
FAN_CURVE_OUTLET
|
|
1455
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
|
|
1456
2519
|
"""
|
|
1457
2520
|
|
|
1458
2521
|
OUTLET_PRESSURE = _clientpb.OUTLET_PRESSURE
|
|
@@ -1474,6 +2537,13 @@ class OutletPressureConstraint(_IntEnum):
|
|
|
1474
2537
|
The area-averaged pressure is imposed while local values can deviate.
|
|
1475
2538
|
This allows a pressure profile to develop naturally, but can be less numerically
|
|
1476
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
|
|
1477
2547
|
"""
|
|
1478
2548
|
|
|
1479
2549
|
OUTLET_LOCAL_CONSTRAINT = _clientpb.OUTLET_LOCAL_CONSTRAINT
|
|
@@ -1490,6 +2560,13 @@ class FarfieldMomentum(_IntEnum):
|
|
|
1490
2560
|
Specify the freestream Mach number.
|
|
1491
2561
|
FARFIELD_VELOCITY_MAGNITUDE
|
|
1492
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
|
|
1493
2570
|
"""
|
|
1494
2571
|
|
|
1495
2572
|
FARFIELD_MACH_NUMBER = _clientpb.FARFIELD_MACH_NUMBER
|
|
@@ -1506,6 +2583,13 @@ class FarFieldFlowDirectionSpecification(_IntEnum):
|
|
|
1506
2583
|
Specify a vector for the far-field flow direction.
|
|
1507
2584
|
FARFIELD_ANGLES
|
|
1508
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
|
|
1509
2593
|
"""
|
|
1510
2594
|
|
|
1511
2595
|
FARFIELD_DIRECTION = _clientpb.FARFIELD_DIRECTION
|
|
@@ -1526,6 +2610,15 @@ class TurbulentVariableInitializationTypeSa(_IntEnum):
|
|
|
1526
2610
|
Uniform initial condition for the Spalart-Allmaras turbulence variable.
|
|
1527
2611
|
INIT_FARFIELD_VALUES_SA
|
|
1528
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
|
|
1529
2622
|
"""
|
|
1530
2623
|
|
|
1531
2624
|
INIT_TURBULENT_VISCOSITY_RATIO_SA = _clientpb.INIT_TURBULENT_VISCOSITY_RATIO_SA
|
|
@@ -1548,6 +2641,15 @@ class TurbulentVariableInitializationTypeKomega(_IntEnum):
|
|
|
1548
2641
|
Uniform initial conditions.
|
|
1549
2642
|
INIT_FARFIELD_VALUES_KOMEGA
|
|
1550
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
|
|
1551
2653
|
"""
|
|
1552
2654
|
|
|
1553
2655
|
INIT_TURBULENT_VISCOSITY_RATIO_AND_INTENSITY_KOMEGA = (
|
|
@@ -1570,6 +2672,13 @@ class PotentialFlowPressureInitialization(_IntEnum):
|
|
|
1570
2672
|
Do not initialize the pressure using the potential flow method
|
|
1571
2673
|
INITIALIZATION_POTENTIAL_FLOW_PRESSURE_ON
|
|
1572
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
|
|
1573
2682
|
"""
|
|
1574
2683
|
|
|
1575
2684
|
INITIALIZATION_POTENTIAL_FLOW_PRESSURE_OFF = (
|
|
@@ -1606,6 +2715,22 @@ class VerificationSolutions(_IntEnum):
|
|
|
1606
2715
|
2D planar lattice flow for incompressible NS.
|
|
1607
2716
|
CHECK_FLUX_SYMMETRY
|
|
1608
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
|
|
1609
2734
|
"""
|
|
1610
2735
|
|
|
1611
2736
|
TAYLOR_GREEN_VORTEX = _clientpb.TAYLOR_GREEN_VORTEX
|
|
@@ -1633,6 +2758,14 @@ class PhysicalBehaviorModel(_IntEnum):
|
|
|
1633
2758
|
Behavior inputs associated with actuator lines
|
|
1634
2759
|
SOURCE_POINTS_MODEL
|
|
1635
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
|
|
1636
2769
|
"""
|
|
1637
2770
|
|
|
1638
2771
|
ACTUATOR_DISK_MODEL = _clientpb.ACTUATOR_DISK_MODEL
|
|
@@ -1654,6 +2787,15 @@ class ActuatorDiskModel(_IntEnum):
|
|
|
1654
2787
|
Uses tables of airfoil aerodynamic data to model the effect of rotors and propellers
|
|
1655
2788
|
FAN_CURVE_INTERNAL
|
|
1656
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
|
|
1657
2799
|
"""
|
|
1658
2800
|
|
|
1659
2801
|
ACTUATOR_DISK_UNIFORM_THRUST = _clientpb.ACTUATOR_DISK_UNIFORM_THRUST
|
|
@@ -1672,6 +2814,13 @@ class ActuatorDiskBemStrategy(_IntEnum):
|
|
|
1672
2814
|
Prescribes a rotation rate for the fictitious blades.
|
|
1673
2815
|
BEM_TARGET_THRUST
|
|
1674
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
|
|
1675
2824
|
"""
|
|
1676
2825
|
|
|
1677
2826
|
BEM_ROTATION_RATE = _clientpb.BEM_ROTATION_RATE
|
|
@@ -1686,6 +2835,12 @@ class ActuatorLineModel(_IntEnum):
|
|
|
1686
2835
|
----------
|
|
1687
2836
|
ACTUATOR_LINE_BLADE_ELEMENT
|
|
1688
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
|
|
1689
2844
|
"""
|
|
1690
2845
|
|
|
1691
2846
|
ACTUATOR_LINE_BLADE_ELEMENT = _clientpb.ACTUATOR_LINE_BLADE_ELEMENT
|
|
@@ -1701,6 +2856,13 @@ class ParticleSourceModel(_IntEnum):
|
|
|
1701
2856
|
Injects material into the solver at particle locations
|
|
1702
2857
|
GENERAL_ACCELERATION_SOURCE
|
|
1703
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
|
|
1704
2866
|
"""
|
|
1705
2867
|
|
|
1706
2868
|
GENERAL_MASS_SOURCE = _clientpb.GENERAL_MASS_SOURCE
|
|
@@ -1715,6 +2877,12 @@ class CavitationModel(_IntEnum):
|
|
|
1715
2877
|
----------
|
|
1716
2878
|
SAUER_SCHNERR
|
|
1717
2879
|
Sauer-Schnerr one equation cavitation model.
|
|
2880
|
+
|
|
2881
|
+
|
|
2882
|
+
Examples
|
|
2883
|
+
--------
|
|
2884
|
+
>>> from luminarycloud.params.enum import CavitationModel
|
|
2885
|
+
>>> CavitationModel.SAUER_SCHNERR
|
|
1718
2886
|
"""
|
|
1719
2887
|
|
|
1720
2888
|
SAUER_SCHNERR = _clientpb.SAUER_SCHNERR
|
|
@@ -1728,6 +2896,12 @@ class PorousModelType(_IntEnum):
|
|
|
1728
2896
|
----------
|
|
1729
2897
|
DARCY_FORCHHEIMER
|
|
1730
2898
|
Darcy Forchheimer model.
|
|
2899
|
+
|
|
2900
|
+
|
|
2901
|
+
Examples
|
|
2902
|
+
--------
|
|
2903
|
+
>>> from luminarycloud.params.enum import PorousModelType
|
|
2904
|
+
>>> PorousModelType.DARCY_FORCHHEIMER
|
|
1731
2905
|
"""
|
|
1732
2906
|
|
|
1733
2907
|
DARCY_FORCHHEIMER = _clientpb.DARCY_FORCHHEIMER
|
|
@@ -1743,6 +2917,13 @@ class MpCouplingLinSolCoupling(_IntEnum):
|
|
|
1743
2917
|
Enable enhanced coupling.
|
|
1744
2918
|
MP_COUPLING_LIN_SOL_COUPLING_OFF
|
|
1745
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
|
|
1746
2927
|
"""
|
|
1747
2928
|
|
|
1748
2929
|
MP_COUPLING_LIN_SOL_COUPLING_ON = _clientpb.MP_COUPLING_LIN_SOL_COUPLING_ON
|