Animate facet of states¤
exponax.viz.animate_state_1d_facet
¤
animate_state_1d_facet(
trj: Float[Array, "B T C N"],
*,
vlim: tuple[float, float] = (-1.0, 1.0),
labels: list[str] = None,
titles: list[str] = None,
domain_extent: float = None,
dt: float = None,
include_init: bool = False,
grid: tuple[int, int] = (3, 3),
figsize: tuple[float, float] = (10, 10),
**kwargs
)
Animate a trajectory of faceted 1d states.
Requires the input to be a four-axis array with a leading batch axis, a time axis, a channel axis, and a spatial axis. If there is more than one dimension in the channel axis, this will be plotted in a different color. Hence, there are two ways to display multiple states: either via the batch axis (resulting in faceted subplots) or via the channel axis (resulting in different colors).
Periodic boundary conditions will be applied to the spatial axis (the state is wrapped around).
Arguments:
trj
: The trajectory of states to animate. Must be a four-axis array with shape(n_batches, n_timesteps, n_channels, n_spatial)
. If the channel axis has more than one dimension, the different channels will be plotted in different colors.vlim
: The limits of the colorbar. Default is(-1, 1)
.labels
: The labels for each channel. Default isNone
.titles
: The titles for each subplot. Default isNone
.domain_extent
: The extent of the spatial domain. Default isNone
. This affects the x-axis limits of the plot.grid
: The grid of subplots. Default is(3, 3)
.figsize
: The size of the figure. Default is(10, 10)
.**kwargs
: Additional keyword arguments to pass to the plotting function.
Returns:
ani
: The animation object.
Source code in exponax/viz/_animate_facet.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
exponax.viz.animate_state_2d_facet
¤
animate_state_2d_facet(
trj: Union[
Float[Array, "T C N N"], Float[Array, "B T 1 N N"]
],
*,
facet_over_channels: bool = True,
vlim: tuple[float, float] = (-1.0, 1.0),
cmap: str = "RdBu_r",
domain_extent: float = None,
dt: float = None,
include_init: bool = False,
grid: tuple[int, int] = (3, 3),
figsize: tuple[float, float] = (10, 10),
titles=None
)
Animate a facet of trajectories of 2d states.
Requires the input to be either a four-axis array or a five-axis array:
- If
facet_over_channels
isTrue
, the input must be a four-axis array with a leading time axis, a channel axis, and two spatial axes. Each faceted subplot displays a different channel. - If
facet_over_channels
isFalse
, the input must be a five-axis array with a leading batch axis, a time axis, a channel axis, and two spatial axes. Each faceted subplot displays a different batch. Only the zeroth dimension in the channel axis is plotted.
Periodic boundary conditions will be applied to the spatial axes (the state is wrapped around).
Arguments:
trj
: The trajectory of states to animate. Must be a four-axis array with shape(n_timesteps, n_channels, n_spatial, n_spatial)
iffacet_over_channels
isTrue
, or a five-axis array with shape(n_batches, n_timesteps, n_channels, n_spatial, n_spatial)
iffacet_over_channels
isFalse
.facet_over_channels
: Whether to facet over the channel axis or the batch axis. Default isTrue
.vlim
: The limits of the colorbar. Default is(-1, 1)
.cmap
: The colormap to use. Default is"RdBu_r"
.domain_extent
: The extent of the spatial domain. Default isNone
. This affects the x-axis and y-axis limits of the plot.dt
: The time step between each frame. Default isNone
.include_init
: Whether to the state starts at an initial condition (t=0) or at the first frame in the trajectory. This affects is the the time range is [0, (T-1)dt] or [dt, Tdt]. Default isFalse
.grid
: The grid of subplots. Default is(3, 3)
.figsize
: The size of the figure. Default is(10, 10)
.titles
: The titles for each subplot. Default isNone
.
Returns:
ani
: The animation object.
Source code in exponax/viz/_animate_facet.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 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 |
|
exponax.viz.animate_state_3d_facet
¤
animate_state_3d_facet(
trj: Union[
Float[Array, "T C N N N"],
Float[Array, "B T 1 N N N"],
],
*,
facet_over_channels: bool = True,
vlim: tuple[float, float] = (-1.0, 1.0),
grid: tuple[int, int] = (3, 3),
figsize: tuple[float, float] = (10, 10),
titles=None,
domain_extent: float = None,
dt: float = None,
include_init: bool = False,
bg_color: Union[
Literal["black"],
Literal["white"],
tuple[jnp.int8, jnp.int8, jnp.int8, jnp.int8],
] = "white",
resolution: int = 384,
cmap: str = "RdBu_r",
transfer_function: callable = zigzag_alpha,
distance_scale: float = 10.0,
gamma_correction: float = 2.4,
chunk_size: int = 64,
**kwargs
)
Animate a facet of trajectories of 3d states as volume renderings.
Requires the input to be either a five-axis array or a six-axis array:
- If
facet_over_channels
isTrue
, the input must be a five-axis array with a leading time axis, a channel axis, and three spatial axes. Each faceted subplot displays a different channel. - If
facet_over_channels
isFalse
, the input must be a six-axis array with a leading batch axis, a time axis, a channel axis, and three spatial axes. Each faceted subplot displays a different batch. Only the zeroth dimension in the channel axis is plotted.
Arguments:
trj
: The trajectory of states to animate. Must be a five-axis array with shape(n_timesteps, n_channels, n_spatial, n_spatial, n_spatial)
iffacet_over_channels
isTrue
, or a six-axis array with shape(n_batches, n_timesteps, n_channels, n_spatial, n_spatial, n_spatial)
iffacet_over_channels
isFalse
.facet_over_channels
: Whether to facet over the channel axis or the batch axis. Default isTrue
.vlim
: The limits of the colorbar. Default is(-1, 1)
.grid
: The grid of subplots. Default is(3, 3)
.figsize
: The size of the figure. Default is(10, 10)
.titles
: The titles for each subplot. Default isNone
.domain_extent
: The extent of the spatial domain. Default isNone
. This affects the x-axis and y-axis limits of the plot.dt
: The time step between each frame. Default isNone
.include_init
: Whether to the state starts at an initial condition (t=0) or at the first frame in the trajectory. This affects is the the time range is [0, (T-1)dt] or [dt, Tdt]. Default isFalse
.bg_color
: The background color. Either"black"
,"white"
, or a tuple of RGBA values. Default is"white"
.resolution
: The resolution of the output image (affects render time). Default is384
.cmap
: The colormap to use. Default is"RdBu_r"
.transfer_function
: The transfer function to use, i.e., how values within thevlim
range are mapped to alpha values. Default iszigzag_alpha
.distance_scale
: The distance scale of the volume renderer. Default is10.0
.gamma_correction
: The gamma correction to apply to the image. Default is2.4
.chunk_size
: The number of images to render at once. Default is64
.
Returns:
ani
: The animation object.
Note:
- This function requires the
vape
volume renderer package.
Source code in exponax/viz/_animate_facet.py
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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 |
|