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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Added support for `tidy3d-extras`, an optional plugin that enables more accurate local mode solving via subpixel averaging.

### Changed
- Improved performance of antenna metrics calculation by utilizing cached wave amplitude calculations instead of recomputing wave amplitudes for each port excitation in the `TerminalComponentModelerData`.

Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ Contents
api/index
GUI <https://tidy3d.simulation.cloud/>
Photonforge <https://docs.flexcompute.com/projects/photonforge/en/latest/>
extras/index
development/index
changelog
About our Solver <https://www.flexcompute.com/tidy3d/solver/>
Expand Down
17 changes: 17 additions & 0 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,23 @@ Multiple dependency groups can be installed simultaneously:

pip install "tidy3d[design,trimesh]"

Extras Plugin
----------------------

An optional plugin providing additional local functionality,
including a more accurate local mode solver:

.. code-block:: bash

pip install "tidy3d[extras]"

An API key is needed to use the extras plugin.
For more information on the extras plugin, see `Extras Plugin <./extras/index.html>`_.

.. important::

``tidy3d-extras`` is **not compatible with Conda environments**.
Please use a standard Python virtual environment (e.g., ``venv`` or ``virtualenv``) for installation.

Developer Installation
----------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tidy3d"
version = "2.10.0rc2"
version = "2.10.0rc3"
description = "A fast FDTD solver"
authors = ["Tyler Hughes <tyler@flexcompute.com>"]
license = "LGPLv2+"
Expand Down Expand Up @@ -116,7 +116,7 @@ sphinxemoji = { version = "*", optional = true }
devsim = { version = "*", optional = true }
cma = { version = "*", optional = true }
openpyxl = { version = "*", optional = true }
# tidy3d-extras = { version = "2.10.0rc2", optional = true }
# tidy3d-extras = { version = "2.10.0rc3", optional = true }

[tool.poetry.extras]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion schemas/EMESimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -12013,7 +12013,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/HeatChargeSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -9904,7 +9904,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/HeatSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -9904,7 +9904,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/ModeSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11767,7 +11767,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/Simulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -15999,7 +15999,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/TerminalComponentModeler.json
Original file line number Diff line number Diff line change
Expand Up @@ -14700,7 +14700,7 @@
"type": "string"
},
"version": {
"default": "2.10.0rc2",
"default": "2.10.0rc3",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion tidy3d/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "2.10.0rc2"
__version__ = "2.10.0rc3"