Skip to main content

Simulation and analysis of multifractal fields

Project description

scaleinvariance

FIF 2D Example

Simulation and analysis tools for scale-invariant processes and multifractal fields.

Documentation

View example simulation output in the Multifractal Explorer

Current Features

Analysis

Hurst exponent estimation

  • Haar fluctuation method: haar_fluctuation_hurst()
  • Structure function method: structure_function_hurst()
  • Spectral method: spectral_hurst()

All methods support multi-dimensional arrays, averaging over dimensions that are orthogonal to the specified dimension along which spectra are calculated (specified by axis. Data and fit line for plotting may be returned with return_fit=True.

Simulation

  • 1D fractionally integrated flux (FIF): FIF_1D() - Multifractal cascade simulation; causal/acausal
  • N-D fractionally integrated flux (FIF): FIF_ND() - Isotropic N-D multifractals for arbitrary dimensions (Example shown above)
  • 1D fractional Brownian motion: fBm_1D_circulant() - Fast spectral synthesis
  • N-D fractional Brownian motion: fBm_ND_circulant() - Isotropic N-D (2D, 3D, 4D, etc.) fBm fields
  • 1D fBm (fractional integration): fBm_1D() - Extended Hurst range (-0.5, 1.5) with causal/acausal kernels

For FIF simulation methods (FIF_1D, FIF_ND), the currently supported range is 0.5 <= alpha <= 2 with alpha != 1. FIF methods now require explicit kernel_construction_method_flux= and kernel_construction_method_observable= arguments if you want to override the defaults; the old combined kernel_construction_method= shortcut has been removed. Naive FIF kernels are deprecated because their outputs are not remotely accurate.

Agent Skill (Highly Recommended for Agents)

An agent skill is included in this repository. For Claude Code:

mkdir -p ~/.claude/skills/scaleinvariance
cp .claude/skills/scaleinvariance/SKILL.md ~/.claude/skills/scaleinvariance/

Codex:

mkdir -p ~/.codex/skills/scaleinvariance
cp .claude/skills/scaleinvariance/SKILL.md ~/.codex/skills/scaleinvariance/

Installation

pip install scaleinvariance

Performance

By default, scaleinvariance uses NumPy for all computations. However, if PyTorch is installed, the package automatically detects it and uses PyTorch for simulation functions, providing potentially huge performance gains (depending on your machine):

# NumPy-only installation (minimal dependencies)
pip install scaleinvariance

# With PyTorch for faster simulations
pip install scaleinvariance[torch]

Control backend explicitly:

import scaleinvariance

# Check current backend
print(scaleinvariance.get_backend())  # 'torch' if available, else 'numpy'

# Force specific backend
scaleinvariance.set_backend('numpy')  # Always use NumPy
scaleinvariance.set_backend('torch')  # Use torch (raises error if not installed)

# Configure threading (defaults to 90% CPU count)
scaleinvariance.set_num_threads(8)

Basic Usage

from scaleinvariance import fBm_1D_circulant, fBm_ND_circulant, FIF_1D, haar_fluctuation_hurst

# Generate 1D fractional Brownian motion
fBm_1d = fBm_1D_circulant(1024, H=0.7)

# Generate 2D fractional Brownian motion
fBm_2d = fBm_ND_circulant((512, 512), H=0.7)

# Generate 3D fractional Brownian motion
fBm_3d = fBm_ND_circulant((256, 256, 128), H=0.7)

# Generate multifractal FIF timeseries
fif = FIF_1D(2**16, alpha=1.8, C1=0.1, H=0.3)

# Override FIF kernels explicitly if needed
fif_spectral = FIF_1D(
    2**16,
    alpha=1.8,
    C1=0.1,
    H=0.3,
    causal=False,
    kernel_construction_method_flux='LS2010_spectral',
    kernel_construction_method_observable='LS2010_spectral',
)

# Estimate Hurst exponent
H_est, H_err = haar_fluctuation_hurst(fBm_1d)
print(f"Estimated H = {H_est:.3f} ± {H_err:.3f}")

Testing

# Test 1D fBm generation and Hurst estimation
python tests/visual/test_acausal_fBm_hurst_estimation.py 0.7

# Test 2D fBm with isotropy validation
python tests/visual/test_2d_fbm.py 0.7

FIF validation scripts, which test scaling over multiple ranges of scale, live in tests/numerical/ (see test_1D_FIF_hurst.py, test_2D_FIF_hurst.py, and test_1D_FIF_Kq.py). They are designed to be run as standalone Python programs, not via pytest, and they generate many large FIF realizations to reach statistical convergence. These scripts are also known to produce some failures, especially near grid scales, because finite-size effects are not fully mitigated by the LS2010 corrections.

Kernel Selection

For FIF simulations:

  • kernel_construction_method_flux controls the cascade kernel.
  • kernel_construction_method_observable controls the final observable kernel.
  • Recommended values are 'LS2010' and 'LS2010_spectral'.
  • The old kernel_construction_method= argument is no longer accepted by FIF_1D or FIF_ND.
  • naive FIF kernels remain available only for comparison and debugging and emit a warning because they are not remotely accurate.

For fBm:

  • fBm_1D() still uses the single kernel_construction_method= argument and now defaults to 'LS2010'.
  • fBm_1D(..., kernel_construction_method='spectral') is supported for non-causal runs.
  • fBm_ND_circulant() is already spectral by construction and does not take a kernel selector.

Examples

See the examples/ directory for comprehensive demonstrations:

  • fif_comparison_demo.py: Compare Hurst estimation methods on multifractal FIF simulations with different intermittency parameters
  • multi_dataset_haar_analysis.py: Real-world data analysis using Haar fluctuation method

Run examples:

python examples/fif_comparison_demo.py

Data source for LGMR: https://www.ncei.noaa.gov/access/paleo-search/study/33112

Testing

Tests are organised into three directories under tests/:

Directory Purpose How to run
tests/functional/ Sanity checks and gross-accuracy tests. Should always pass. pytest
tests/numerical/ Theory-validation scripts run directly as Python programs. Some produce failures due to finite-size/discretization effects. python tests/numerical/<script>.py
tests/visual/ Scripts that generate plots for manual inspection. python tests/visual/<script>.py

Run the functional suite:

pytest

Run a specific visual test:

python tests/visual/test_1D_fif_structure_function.py 0.3 0.1 1.8

Requirements

  • Python ≥ 3.8
  • NumPy, SciPy
  • PyTorch (optional, for simulation speedup)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scaleinvariance-0.8.0.tar.gz (29.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scaleinvariance-0.8.0-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file scaleinvariance-0.8.0.tar.gz.

File metadata

  • Download URL: scaleinvariance-0.8.0.tar.gz
  • Upload date:
  • Size: 29.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for scaleinvariance-0.8.0.tar.gz
Algorithm Hash digest
SHA256 7df1b79d312703966889b12ad24321d599a1f24aa3a401d0455879f062a8b91d
MD5 eab1427b14e882fa2eb6df013a1bfe37
BLAKE2b-256 70e1a3487dd451a528df31c8f76f8985c42c9a33891e2bea770accedef5e933b

See more details on using hashes here.

File details

Details for the file scaleinvariance-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for scaleinvariance-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 267408c070a590b1dbd58ad936d2eea6e5e03c18860d8d6bcd9df5ef20ab9677
MD5 3f39a9ccc0e130c58fafb5e364c97787
BLAKE2b-256 a476b81d89a39c52d97123e0e59be183c937d7d0df2ed8c584374f41eb3193ed

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page