luminarycloud.enum¶
Classes¶
Represents an averaging method used to compute average surface quantities. |
|
Represents a calculation type when calculating surface outputs. |
|
Represents a GPU type. |
|
Represents the status of a mesh. |
|
Represents the file format for a mesh file. |
|
Represents a quantity type. |
|
Method of specification for the reference values used in force and moment computations. |
|
Represents a normalization method for residuals. |
|
Represents the status of a simulation. |
Package Contents¶
- class luminarycloud.enum.AveragingType¶
Bases:
enum.IntEnum
Represents an averaging method used to compute average surface quantities.
- Attributes:
- UNSPECIFIED
- AREA
Average using the area of each face divided by the total area.
- MASS_FLOW
Average using the mass flow at each face divided by the total mass flow.
- AREA¶
- MASS_FLOW¶
- UNSPECIFIED¶
- class luminarycloud.enum.CalculationType¶
Bases:
enum.IntEnum
Represents a calculation type when calculating surface outputs.
- Attributes:
- UNSPECIFIED
- AGGREGATE
Calculate a single value for the surfaces altogether.
- PER_SURFACE
Calculate a separate value for each surface.
- AGGREGATE¶
- PER_SURFACE¶
- UNSPECIFIED¶
- class luminarycloud.enum.GPUType¶
Bases:
enum.IntEnum
Represents a GPU type.
- A100¶
- UNSPECIFIED¶
- V100¶
- class luminarycloud.enum.MeshStatus¶
Bases:
enum.IntEnum
Represents the status of a mesh.
- Attributes:
- UNSPECIFIED
A well-formed mesh resource will never have this value.
- CREATING
Mesh is being created.
- COMPLETED
Mesh was created successfully and can be used to create simulations.
- FAILED
Mesh was not created successfully and is unusable.
- COMPLETED¶
- CREATING¶
- FAILED¶
- UNSPECIFIED¶
- class luminarycloud.enum.MeshType¶
Bases:
enum.IntEnum
Represents the file format for a mesh file.
- Attributes:
- UNSPECIFIED
Null value
- ANSYS
ANSYS mesh file (.ansys)
- CGNS
CFD General Notation System (.cgns)
- OPENFOAM
OpenFOAM mesh
- ANSYS¶
- CGNS¶
- OPENFOAM¶
- UNSPECIFIED¶
- class luminarycloud.enum.QuantityType¶
Bases:
enum.IntEnum
Represents a quantity type.
- Attributes:
- DENSITY
- DISK_THRUST
- DISK_TORQUE
- DOWNFORCE
- DOWNFORCE_COEFFICIENT
- DRAG
- DRAG_COEFFICIENT
- ENERGY_FLUX
- FRICTION_FORCE
- FRICTION_FORCE_COEFFICIENT
- LIFT
- LIFT_COEFFICIENT
- MACH
- PITCHING_MOMENT
- PITCHING_MOMENT_COEFFICIENT
- PRESSURE
- PRESSURE_DRAG
- PRESSURE_DRAG_COEFFICIENT
- PRESSURE_FORCE
- PRESSURE_FORCE_COEFFICIENT
- ROLLING_MOMENT
- ROLLING_MOMENT_COEFFICIENT
- SIDEFORCE
- SIDEFORCE_COEFFICIENT
- TEMPERATURE
- TOTAL_FORCE
- TOTAL_FORCE_COEFFICIENT
- TOTAL_MOMENT
- TOTAL_MOMENT_COEFFICIENT
- TOTAL_PRESSURE
- TOTAL_TEMPERATURE
- VELOCITY_MAGNITUDE
- VELOCITY_X
- VELOCITY_Y
- VELOCITY_Z
- VISCOUS_DRAG
- VISCOUS_DRAG_COEFFICIENT
- Y_PLUS
- YAWING_MOMENT
- YAWING_MOMENT_COEFFICIENT
- DENSITY¶
- DISK_THRUST¶
- DISK_TORQUE¶
- DOWNFORCE¶
- DOWNFORCE_COEFFICIENT¶
- DRAG¶
- DRAG_COEFFICIENT¶
- ENERGY_FLUX¶
- FRICTION_FORCE¶
- FRICTION_FORCE_COEFFICIENT¶
- LIFT¶
- LIFT_COEFFICIENT¶
- MACH¶
- PITCHING_MOMENT¶
- PITCHING_MOMENT_COEFFICIENT¶
- PRESSURE¶
- PRESSURE_DRAG¶
- PRESSURE_DRAG_COEFFICIENT¶
- PRESSURE_FORCE¶
- PRESSURE_FORCE_COEFFICIENT¶
- ROLLING_MOMENT¶
- ROLLING_MOMENT_COEFFICIENT¶
- SIDEFORCE¶
- SIDEFORCE_COEFFICIENT¶
- TEMPERATURE¶
- TOTAL_FORCE¶
- TOTAL_FORCE_COEFFICIENT¶
- TOTAL_MOMENT¶
- TOTAL_MOMENT_COEFFICIENT¶
- TOTAL_PRESSURE¶
- TOTAL_TEMPERATURE¶
- UNSPECIFIED¶
- VELOCITY_MAGNITUDE¶
- VELOCITY_X¶
- VELOCITY_Y¶
- VELOCITY_Z¶
- VISCOUS_DRAG¶
- VISCOUS_DRAG_COEFFICIENT¶
- YAWING_MOMENT¶
- YAWING_MOMENT_COEFFICIENT¶
- Y_PLUS¶
- class luminarycloud.enum.ReferenceValuesType¶
Bases:
enum.IntEnum
Method of specification for the reference values used in force and moment computations.
- Attributes:
- UNSPECIFIED
- PRESCRIBE_VALUES
The specified reference values will be used.
- FARFIELD_VALUES
Only the area and length reference values will be used; pressure, temperature, and velocity values will be taken from the far field boundary specification.
- FARFIELD_VALUES¶
- PRESCRIBE_VALUES¶
- UNSPECIFIED¶
- class luminarycloud.enum.ResidualNormalization¶
Bases:
enum.IntEnum
Represents a normalization method for residuals.
- Attributes:
- UNSPECIFIED
- ABSOLUTE
- RELATIVE
- ABSOLUTE¶
- RELATIVE¶
- UNSPECIFIED¶
- class luminarycloud.enum.SimulationStatus¶
Bases:
enum.IntEnum
Represents the status of a simulation.
- Attributes:
- UNSPECIFIED
A well-formed simulation resource will never have this value.
- PENDING
Denotes that the simulation is waiting to be scheduled.
- ACTIVE
Denotes that the simulation is running currently.
- COMPLETED
Denotes that the simulation completed successfully.
- FAILED
Denotes that the simulation completed in a failed state.
- SUSPENDED
Denotes that the simulation has been suspended.
- ACTIVE¶
- COMPLETED¶
- FAILED¶
- PENDING¶
- SUSPENDED¶
- UNSPECIFIED¶