Skip to content
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

Corner mismatch new concept #333

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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: 1 addition & 1 deletion ihp-sg13g2/libs.tech/ngspice/models/capacitors_stat.lib
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*#######################################################################

.param mc_ok=1
* ngspice MC parameters
.param cap_carea = 'gauss(cap_carea_norm, 0.033, mc_ok)'
.param cap_cpara = 'gauss(cap_cpara_norm, 0.067, mc_ok)'
46 changes: 34 additions & 12 deletions ihp-sg13g2/libs.tech/ngspice/models/cornerHBT.lib
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
*#######################################################################
*
* Copyright 2023 IHP PDK Authors
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* https://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
*distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*#######################################################################

.LIB hbt_typ
.param vbic_cje = 1.0
.param vbic_cjc = 1.0
Expand All @@ -37,9 +37,9 @@

.include sg13g2_hbt_mod.lib
.ENDL hbt_typ

.LIB hbt_typ_stat
.param vbic_cje_norm = 1.0
.param vbic_cje_norm = 1.0
.param vbic_cjc_norm = 1.0
.param vbic_cjcp_norm = 1.0
.param vbic_is_norm = 1.0
Expand All @@ -60,7 +60,29 @@
.include sg13g2_hbt_stat.lib
.include sg13g2_hbt_mod.lib
.ENDL hbt_typ_stat


.LIB hbt_typ_mismatch
.param vbic_cje = 1.0
.param vbic_cjc = 1.0
.param vbic_cjcp = 1.0
.param vbic_is = 1.0
.param vbic_ibei = 1.0
.param vbic_re = 1.0
.param vbic_rcx = 1.0
.param vbic_rbx = 1.0
.param vbic_tf = 1.0

.param sgp_mpa_cje = 1.0
.param sgp_mpa_cjc = 1.0
.param sgp_mpa_is = 1.0
.param sgp_mpa_bf = 1.0
.param sgp_mpa_re = 1.0
.param sgp_mpa_rb = 1.0
.param sgp_mpa_rc = 1.0

.include sg13g2_hbt_mod_mismatch.lib
.ENDL hbt_typ_mismatch

.LIB hbt_bcs
.param vbic_cje = 0.83
.param vbic_cjc = 0.87
Expand All @@ -82,9 +104,9 @@

.include sg13g2_hbt_mod.lib
.ENDL hbt_bcs

.LIB hbt_bcs_stat
.param vbic_cje_norm = 0.83
.param vbic_cje_norm = 0.83
.param vbic_cjc_norm = 0.87
.param vbic_cjcp_norm = 0.89
.param vbic_is_norm = 1.26
Expand All @@ -105,7 +127,7 @@
.include sg13g2_hbt_stat.lib
.include sg13g2_hbt_mod.lib
.ENDL hbt_bcs_stat

.LIB hbt_wcs
.param vbic_cje = 1.17
.param vbic_cjc = 1.13
Expand All @@ -127,9 +149,9 @@

.include sg13g2_hbt_mod.lib
.ENDL hbt_wcs

.LIB hbt_wcs_stat
.param vbic_cje_norm = 1.17
.param vbic_cje_norm = 1.17
.param vbic_cjc_norm = 1.13
.param vbic_cjcp_norm = 1.11
.param vbic_is_norm = 0.74
Expand Down
Loading