Source code for geopulse.efield.nonuniform

"""Non-uniform (non-plane-wave) source-field E-field — STUB (WP3)."""

from __future__ import annotations

from geopulse.exceptions import NotImplementedYetError

__all__ = ["compute_efield_nonuniform"]


[docs] def compute_efield_nonuniform(*args, **kwargs): """Compute E-field under a spatially non-uniform source (WP3).""" raise NotImplementedYetError("compute_efield_nonuniform", "WP3")