Jan Petykiewicz
d6e7e3dee1
- Split math into fdmath package - Rename waveguide into _2d _3d and _cyl variants - pdoc-based documentation
10 lines
338 B
Python
10 lines
338 B
Python
"""
|
|
Utilities for running finite-difference time-domain (FDTD) simulations
|
|
"""
|
|
|
|
from .base import maxwell_e, maxwell_h
|
|
from .pml import cpml
|
|
from .energy import (poynting, poynting_divergence, energy_hstep, energy_estep,
|
|
delta_energy_h2e, delta_energy_h2e, delta_energy_j)
|
|
from .boundaries import conducting_boundary
|