Skip to content

Commit

Permalink
Removed beta features tag and enabled 24.2 features (#187)
Browse files Browse the repository at this point in the history
* removed beta features flags

* removed bata tags and enabled 24.2 features

* applied PR comments
  • Loading branch information
maciej-flexcompute committed Mar 5, 2024
1 parent 5baaadd commit 44bd685
Show file tree
Hide file tree
Showing 18 changed files with 629 additions and 1,085 deletions.
18 changes: 7 additions & 11 deletions flow360/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
from .component.flow360_params import solvers
from .component.flow360_params.boundaries import (
FreestreamBoundary,
HeatFluxWall,
IsothermalWall,
MassInflow,
MassOutflow,
NoSlipWall,
PressureOutflow,
RiemannInvariant,
RotationallyPeriodic,
SlidingInterfaceBoundary,
Expand All @@ -29,7 +31,10 @@
SubsonicInflow,
SubsonicOutflowMach,
SubsonicOutflowPressure,
SupersonicInflow,
SymmetryPlane,
TranslationallyPeriodic,
VelocityInflow,
WallFunction,
)
from .component.flow360_params.flow360_output import Slice, Slices
Expand Down Expand Up @@ -82,6 +87,7 @@
FreestreamInitialCondition,
)
from .component.flow360_params.solvers import (
IncompressibleNavierStokesSolver,
LinearSolver,
NavierStokesSolver,
PressureCorrectionSolver,
Expand All @@ -93,6 +99,7 @@
TimeStepping,
UnsteadyTimeStepping,
)
from .component.flow360_params.turbulence_quantities import TurbulenceQuantities
from .component.flow360_params.unit_system import (
CGS_unit_system,
SI_unit_system,
Expand Down Expand Up @@ -134,14 +141,3 @@
from .flags import Flags
from .user_config import UserConfig
from .version import __version__

if Flags.beta_features():
from .component.flow360_params.boundaries import (
HeatFluxWall,
PressureOutflow,
SupersonicInflow,
SymmetryPlane,
VelocityInflow,
)
from .component.flow360_params.solvers import IncompressibleNavierStokesSolver
from .component.flow360_params.turbulence_quantities import TurbulenceQuantities
Loading

0 comments on commit 44bd685

Please sign in to comment.