10 lines
292 B
Python
10 lines
292 B
Python
"""
|
|
Basic FDTD functionality
|
|
"""
|
|
|
|
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
|