Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- App / GUI for visualizing contents of `SimulationData` in `tidy3d.plugings.plotly`.
- New `PermittivityMonitor` and `PermittivityData` to store the complex relative permittivity as used in the simulation.

### Changed
- Faster plotting for matplotlib and plotly.
- `SimulationData` normalization keeps track of source index and can be normalized when loading directly from .hdf5 file.
- Monitor data with symmetries now store the minimum required data to file and expands the symmetries on the fly.

## [1.2.1] - 2022-3-30

Expand Down
2 changes: 1 addition & 1 deletion tidy3d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

# monitors
from .components import FieldMonitor, FieldTimeMonitor, FluxMonitor, FluxTimeMonitor
from .components import ModeMonitor, ModeFieldMonitor
from .components import ModeMonitor, ModeFieldMonitor, PermittivityMonitor

# simulation
from .components import Simulation
Expand Down
2 changes: 1 addition & 1 deletion tidy3d/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# monitor
from .monitor import FreqMonitor, TimeMonitor, FieldMonitor, FieldTimeMonitor
from .monitor import Monitor, FluxMonitor, FluxTimeMonitor, ModeMonitor
from .monitor import ModeFieldMonitor
from .monitor import ModeFieldMonitor, PermittivityMonitor

# simulation
from .simulation import Simulation
Expand Down
Loading