Skip to content

Commit ee99802

Browse files
fix(validation): relax the number of geometries in ClipOperation
1 parent e03175a commit ee99802

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
### Changed
1616
- Improved performance of antenna metrics calculation by utilizing cached wave amplitude calculations instead of recomputing wave amplitudes for each port excitation in the `TerminalComponentModelerData`.
1717
- Changed hashing method in `Tidy3dBaseModel` from sha256 to md5.
18+
- Allowing for more geometries in a ClipOperation geometry.
1819

1920
### Fixed
2021
- More robust `Sellmeier` and `Debye` material model, and prevent very large pole parameters in `PoleResidue` material model.

tidy3d/components/scene.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
MAX_NUM_MEDIUMS = 65530
8484

8585
# maximum geometry count in a single structure
86-
MAX_GEOMETRY_COUNT = 100
86+
MAX_GEOMETRY_COUNT = 5000
8787

8888
# warn and error out if the same medium is present in too many structures
8989
WARN_STRUCTURES_PER_MEDIUM = 200

0 commit comments

Comments
 (0)