Skip to main content

3D aerosol particle modeling and optical property computation

Project description

Aerosol3D

CI Python 3.10+ License: MIT

Aerosol3D is a Python toolkit for modeling the 3D geometry and optical properties of atmospheric aerosol particles. It provides a unified pipeline from geometric construction to Discrete Dipole Approximation (DDA) optical computation.

Features

  • 3D Geometry Modeling — Build spheres, ellipsoids, cubes, and import fractal aggregates
  • Coating Algorithms — Apply distance-based, potential-based, CCM (Closed-Cell Model), and CAM (Coated-Aggregate Model) coatings
  • Optical Computation — Solve optical properties via DDA with LDR polarizability (Draine & Goodman 1993) and 4 precision levels, or Mie theory (PyMieScatt, near-instant for spheres)
  • Parallel Orientation Averaging — Distribute DDA orientation averaging across CPU cores via joblib, with tqdm progress bars and error-tolerant execution
  • Effective Medium Approximation — Three EMA methods (volume-weighted, Maxwell-Garnett, Bruggeman) for computing effective refractive indices of mixed-composition particles
  • Core-Shell Mie Solver — Exact Mie solution for coated spheres using PyMieScatt's layered-sphere API
  • Optical Property Export — Multi-wavelength AerosolOpticsData container with auto-computed Legendre moments and NetCDF I/O
  • Optical Visualization — Spectral properties, phase function comparison, Legendre convergence diagnostics, and comparison summary plots
  • 3D Visualization — Generate screenshots and rotation videos using PyVista
  • Material Database — Built-in refractive index data for common aerosol materials
  • Flexible I/O — Export to VTP and voxel formats

Installation

Requires Python >= 3.10.

pip install Aerosol3D

For development:

git clone https://github.com/openEarthModelling/Aerosol3D.git
cd Aerosol3D
pip install -e ".[dev]"

Optional Dependencies

  • Julia backend (required for DDA optical computation): Install Julia and run pip install pyjulia
  • GPU acceleration: Requires CUDA-capable GPU and Julia CUDA packages

Quick Start

from Aerosol3D import (
    AerosolParticle, create_sphere, MixingState,
    preset_material, save_screenshot, solve_optics, SimulationConfig
)

# Create a black carbon sphere
soot = preset_material("black_carbon")
particle = AerosolParticle(
    name="bc_sphere",
    mixing_state=MixingState.INTERNAL,
    unit="nm",
)
particle.add_mesh("core", create_sphere((0, 0, 0), 50.0), soot)

# 3D visualization
save_screenshot(particle, "sphere.png", colors={"core": "black"})

# Optical computation (Mie or DDA)
config = SimulationConfig(wavelength=550.0, source="solar")
result = solve_optics(particle, config, solver="MIE")
print(f"Extinction efficiency: {result.qext}")

Export multi-wavelength results and visualize:

from Aerosol3D.optics import from_optical_results

results = [solve_optics(particle, SimulationConfig(wavelength=w), solver="MIE")
           for w in [450, 550, 650]]
data = from_optical_results(results, n_legendre=32)
data.to_netcdf("optics.nc")

See the examples/ directory for complete workflows including fractal aggregates, coated particles, and DDA-Mie comparison pipelines.

Examples

Example Description
black_carbon_sphere.py Bare BC sphere with DDA optics
black_carbon_fractal.py Fractal aggregate via pyFracAggregate with full pipeline
coated_fractal_aggregate.py Coated fractal aggregate comparing four Mie approximations (volume-weighted, MG, Bruggeman, core-shell)
validate_mie_vs_dda.py Multi-precision DDA vs Mie validation with LDR convergence analysis
dda_mie_pyradtran_pipeline/ 3-stage DDA/Mie optics + DISORT radiative transfer pipeline

API Overview

Core Classes

  • AerosolParticle — Particle container with multiple meshes/materials
  • MixingState — Internal / external mixing state
  • Material — Refractive index and density
  • FractalAggregate — Fractal aggregate geometry

Geometry

  • create_sphere(center, radius)
  • create_ellipsoid(center, radii)
  • create_cube(center, size)

Coating

  • apply_distance_coating(particle, thickness, material)
  • apply_potential_coating(particle, thickness, material)
  • apply_ccm_coating(particle, thickness, material)
  • apply_cam_coating(particle, thickness, material)

Optics

  • solve_optics(particle, config, solver="DDA"|"MIE"|"MIE_CORESHELL", orientational_average=False, n_dirs=50, n_jobs=32, show_progress=True) — Optical solver dispatch with LDR polarizability (DDA) and optional parallel orientation averaging
  • SimulationConfig(wavelength, source, precision="medium") — Simulation parameters; precision controls DDA dipole spacing (low/medium/high/ultra)
  • AerosolOpticsData / from_optical_results(results, n_legendre) — Multi-wavelength optical property container
  • compute_legendre_moments(phase_function, theta) — Legendre expansion of scattering phase function

Effective Medium Approximation

  • volume_weighted(volumes, refractive_indices) — Linear volume-weighted mixing
  • maxwell_garnett(volumes, refractive_indices) — Maxwell-Garnett mixing rule
  • bruggeman(volumes, refractive_indices) — Bruggeman symmetric mixing rule

Core-Shell Optics

  • solve_mie_coreshell(particle, config) — Core-shell Mie solver for coated spheres
  • Particle.coreshell_geometry — Compute core-shell geometry from particle composition

Optical Visualization

  • plot_spectral_properties(data) — Extinction/scattering/absorption spectra
  • plot_phase_function(data) — Phase function P11 vs scattering angle
  • plot_optical_comparison(data1, data2) — Side-by-side comparison of two datasets
  • plot_phase_function_comparison(data1, data2) — Phase function comparison with relative difference
  • plot_legendre_convergence(data) — Legendre moment convergence diagnostics

I/O & Visualization

  • save_screenshot(particle, path)
  • save_rotation_video(particle, path)
  • save_vtp(particle, path) / save_voxel(particle, path)

Development

# Run tests
pytest

# Run tests with coverage
pytest --cov=Aerosol3D --cov-report=term-missing

License

MIT License. See LICENSE for details.

Acknowledgments

DDA optical computation is powered by CEMD.jl via a Python-Julia bridge.

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

aerosol3d-0.8.0.tar.gz (80.5 kB view details)

Uploaded Source

Built Distribution

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

aerosol3d-0.8.0-py3-none-any.whl (64.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for aerosol3d-0.8.0.tar.gz
Algorithm Hash digest
SHA256 2c00115481c807b2a1d42aac3177e21ded331c450ecdfef70a1c4d43c637326c
MD5 b85bd4f49f12b9ff68850be210a78946
BLAKE2b-256 30f9705f119ff10fb48d962a0427687ed0ce1b0fd492c574433ba0bfa23efa65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aerosol3d-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 64.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for aerosol3d-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 edebe9216e2c30c764335de798361c5668930e06e8979adab4470932d0c9c48f
MD5 d8f883708470ec3439466d1a0b995536
BLAKE2b-256 38454bd989e42bd315cd4501fc549ba259a675d00f2bc5d955f0320c34cbd03c

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