Polynomial¤
exponax.stepper.generic.DifficultyPolynomialStepper
¤
Bases: NormalizedPolynomialStepper
Source code in exponax/stepper/generic/_polynomial.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
__init__
¤
__init__(
num_spatial_dims: int = 1,
num_points: int = 48,
*,
linear_difficulties: tuple[float, ...] = (
10.0 * 0.001 / 10.0**0 * 48**0,
0.0,
1.0 * 0.001 / 10.0**2 * 48**2 * 2**1,
),
polynomial_difficulties: tuple[float, ...] = (
0.0,
0.0,
-10.0 * 0.001,
),
order: int = 2,
dealiasing_fraction: float = 2 / 3,
num_circle_points: int = 16,
circle_radius: float = 1.0
)
Timestepper for difficulty-based d-dimensional (d ∈ {1, 2, 3}
)
semi-linear PDEs consisting of an arbitrary combination of polynomial
nonlinearities and (isotropic) linear derivatives. Uses a
difficulty-based interface where the "intensity" of the dynamics reduces
with increasing resolution. This is intended such that emulator learning
problems on two resolutions are comparibly difficult.
Different to exponax.stepper.generic.NormalizedPolynomialStepper
, the
dynamics are defined by difficulties. The difficulties are a different
combination of normalized dynamics, num_spatial_dims
, and
num_points
.
γᵢ = αᵢ Nⁱ 2ⁱ⁻¹ d
with d
the number of spatial dimensions, N
the number of points, and
αᵢ
the normalized coefficient.
Since the polynomial nonlinearity does not contain any derivatives, we have that
normalized_polynomial_scales = polynomial_difficulties
The default settings correspond to the Fisher-KPP equation.
Arguments:
num_spatial_dims
: The number of spatial dimensionsd
.num_points
: The number of pointsN
used to discretize the domain. This includes the left boundary point and excludes the right boundary point. In higher dimensions; the number of points in each dimension is the same. Hence, the total number of degrees of freedom isNᵈ
.linear_difficulties
: The list of difficultiesγ_j
corresponding to the derivatives. The length of this tuple represents the highest occuring derivative. The default value corresponds to the Fisher-KPP equation.polynomial_difficulties
: The list of difficultiesδₖ
corresponding to the polynomial contributions. The length of this tuple represents the highest occuring polynomial. The default value corresponds to the Fisher-KPP equation.order
: The order of the Exponential Time Differencing Runge Kutta method. Must be one of {0, 1, 2, 3, 4}. The option0
only solves the linear part of the equation. Use higher values for higher accuracy and stability. The default choice of2
is a good compromise for single precision floats.dealiasing_fraction
: The fraction of the wavenumbers to keep before evaluating the nonlinearity. The default 2/3 corresponds to Orszag's 2/3 rule which is sufficient if the highest occuring polynomial is quadratic (i.e., there are at maximum three entries in thepolynomial_difficulties
tuple).num_circle_points
: How many points to use in the complex contour integral method to compute the coefficients of the exponential time differencing Runge Kutta method.circle_radius
: The radius of the contour used to compute the coefficients of the exponential time differencing Runge Kutta method.
Source code in exponax/stepper/generic/_polynomial.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
__call__
¤
__call__(
u: Float[Array, "C ... N"]
) -> Float[Array, "C ... N"]
Perform one step of the time integration for a single state.
Arguments:
u
: The state vector, shape(C, ..., N,)
.
Returns:
u_next
: The state vector after one step, shape(C, ..., N,)
.
Tip
Use this call method together with exponax.rollout
to efficiently
produce temporal trajectories.
Info
For batched operation, use jax.vmap
on this function.
Source code in exponax/_base_stepper.py
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
|