ldc.datastructures.FVParameters#

class ldc.datastructures.FVParameters(Re: float = 100, lid_velocity: float = 1.0, Lx: float = 1.0, Ly: float = 1.0, nx: int = 64, ny: int = 64, max_iterations: int = 500, tolerance: float = 0.0001, method: str = 'FV-SIMPLE', convection_scheme: str = 'Upwind', limiter: str = 'MUSCL', alpha_uv: float = 0.6, alpha_p: float = 0.4, linear_solver_tol: float = 1e-06)[source]#

Bases: Parameters

FV solver parameters (extends Parameters with SIMPLE-specific settings).

Methods

__init__

to_dataframe

Attributes

Lx: float = 1.0#
Ly: float = 1.0#
Re: float = 100#
alpha_p: float = 0.4#
alpha_uv: float = 0.6#
convection_scheme: str = 'Upwind'#
lid_velocity: float = 1.0#
limiter: str = 'MUSCL'#
linear_solver_tol: float = 1e-06#
max_iterations: int = 500#
method: str = 'FV-SIMPLE'#
nx: int = 64#
ny: int = 64#
to_dataframe()#
tolerance: float = 0.0001#