-
Notifications
You must be signed in to change notification settings - Fork 65
feat: Band-to-band tunneling and impact ionization [FXC-2838] #2839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e30b4f5 to
6d3483f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
6 files reviewed, 1 comment
Diff CoverageDiff: origin/develop...HEAD, staged and unstaged changes
Summary
|
momchil-flex
reviewed
Oct 2, 2025
a212d91 to
430dc18
Compare
damiano-flex
approved these changes
Oct 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noted a couple of improvements in the docs. But other than that, it looks great!
momchil-flex
approved these changes
Oct 31, 2025
3a176b6 to
70ab47a
Compare
5153f03 to
00ab020
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Greptile Overview
Updated On: 2025-09-29 14:36:05 UTC
Summary
This PR adds the Hurkx model for direct band-to-band tunneling (
HurkxDirectBandToBandTunneling) to the TCAD components. The implementation follows the established patterns in the codebase and includes proper physics equations, parameter validation, and comprehensive integration.Key additions:
HurkxDirectBandToBandTunnelingclass with well-documented physics equation and parametersRecombinationModelTypeunion typeConfidence Score: 4/5
Important Files Changed
File Analysis
Sequence Diagram
sequenceDiagram participant User participant API as Tidy3D API participant HurkxBTBT as HurkxDirectBandToBandTunneling participant RecombModel as RecombinationModelType participant Simulation as ChargeSimulation User->>API: Import tidy3d API-->>User: Module loaded with HurkxDirectBandToBandTunneling User->>HurkxBTBT: Create instance with parameters (A, B, E_0, sigma) HurkxBTBT->>HurkxBTBT: Validate parameters (A > 0, E_0 > 0, sigma required) HurkxBTBT-->>User: HurkxDirectBandToBandTunneling instance User->>RecombModel: Add to RecombinationModelType union RecombModel-->>User: Model type validated User->>Simulation: Use in charge simulation setup Simulation->>HurkxBTBT: Calculate R_BTBT = A * (np - ni²)/((n+ni)(p+ni)) * (|E|/E₀)^σ * exp(-B/|E| * (Eg/Eg300)^1.5) HurkxBTBT-->>Simulation: Band-to-band tunneling recombination rate Simulation-->>User: Simulation ready with Hurkx BTBT model