Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tuple fix #27

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exponax/nonlin_fun/_general_nonlinear.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(
*,
derivative_operator: Complex[Array, "D ... (N//2)+1"],
dealiasing_fraction: float,
scale_list: tuple[float, ...] = [0.0, -1.0, 0.0],
scale_list: tuple[float, float, float] = (0.0, -1.0, 0.0),
zero_mode_fix: bool = True,
):
"""
Expand Down
16 changes: 10 additions & 6 deletions exponax/stepper/generic/_nonlinear.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class GeneralNonlinearStepper(BaseStepper):
coefficients_linear: tuple[float, ...]
coefficients_nonlinear: tuple[float, 3]
coefficients_nonlinear: tuple[float, float, float]
dealiasing_fraction: float

def __init__(
Expand All @@ -22,7 +22,7 @@ def __init__(
dt: float,
*,
coefficients_linear: tuple[float, ...] = (0.0, 0.0, 0.01),
coefficients_nonlinear: tuple[float, 3] = (0.0, -1.0, 0.0),
coefficients_nonlinear: tuple[float, float, float] = (0.0, -1.0, 0.0),
order=2,
dealiasing_fraction: float = 2 / 3,
num_circle_points: int = 16,
Expand Down Expand Up @@ -156,15 +156,19 @@ def _build_nonlinear_fun(

class NormalizedNonlinearStepper(GeneralNonlinearStepper):
normalized_coefficients_linear: tuple[float, ...]
normalized_coefficients_nonlinear: tuple[float, ...]
normalized_coefficients_nonlinear: tuple[float, float, float]

def __init__(
self,
num_spatial_dims: int,
num_points: int,
*,
normalized_coefficients_linear: tuple[float, ...] = (0.0, 0.0, 0.1 * 0.1),
normalized_coefficients_nonlinear: tuple[float, ...] = (0.0, -1.0 * 0.1, 0.0),
normalized_coefficients_nonlinear: tuple[float, float, float] = (
0.0,
-1.0 * 0.1,
0.0,
),
order=2,
dealiasing_fraction: float = 2 / 3,
num_circle_points: int = 16,
Expand Down Expand Up @@ -271,7 +275,7 @@ def __init__(

class DifficultyNonlinearStepper(NormalizedNonlinearStepper):
linear_difficulties: tuple[float, ...]
nonlinear_difficulties: tuple[float, ...]
nonlinear_difficulties: tuple[float, float, float]

def __init__(
self,
Expand All @@ -283,7 +287,7 @@ def __init__(
0.0,
0.1 * 0.1 / 1.0 * 48**2 * 2,
),
nonlinear_difficulties: tuple[float, ...] = (
nonlinear_difficulties: tuple[float, float, float] = (
0.0,
-1.0 * 0.1 / 1.0 * 48,
0.0,
Expand Down
4 changes: 2 additions & 2 deletions exponax/stepper/generic/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def extract_normalized_gradient_norm_scale_from_difficulty(


def reduce_normalized_nonlinear_scales_to_difficulty(
normalized_nonlinear_scales: tuple[float],
normalized_nonlinear_scales: tuple[float, float, float],
*,
num_spatial_dims: int,
num_points: int,
Expand Down Expand Up @@ -501,7 +501,7 @@ def reduce_normalized_nonlinear_scales_to_difficulty(


def extract_normalized_nonlinear_scales_from_difficulty(
nonlinear_difficulties: tuple[float],
nonlinear_difficulties: tuple[float, float, float],
*,
num_spatial_dims: int,
num_points: int,
Expand Down
4 changes: 2 additions & 2 deletions exponax/stepper/reaction/_belousov_zhabotinsky.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __call__(


class BelousovZhabotinsky(BaseStepper):
diffusivities: tuple[float, 3]
diffusivities: tuple[float, float, float]
dealiasing_fraction: float

def __init__(
Expand All @@ -57,7 +57,7 @@ def __init__(
num_points: int,
dt: float,
*,
diffusivities: tuple[float, 3] = (1e-5, 2e-5, 1e-5),
diffusivities: tuple[float, float, float] = (1e-5, 2e-5, 1e-5),
order: int = 2,
dealiasing_fraction: float = 1
/ 2, # Needs lower value due to cubic nonlinearity
Expand Down
Loading