-
Notifications
You must be signed in to change notification settings - Fork 68
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
NGSPICE model referencing based on .spiceinit #161
Closed
Closed
Conversation
This file contains 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
* Remove labels on ESD diodes so they are now recognized as regular d(p)antenna diodes * Increase width to minimum 0.48µm to account for new rule not yet in DRC check. Signed-off-by: Staf Verhaegen <[email protected]>
OpenROAD, OpenROAD flow scripts, Qucs-S added as supported EDA tools. Signed-off-by: Krzysztof Herman <[email protected]>
…nto dev Merging synced dev branch from own forc to local repo
-added partial implementation of class Pin from PyCell API -added partial implementation of class Term from PyCell API -added support for pins/terminals -added support for XOR geometric transformation -added support for text alignment/orientation -fixed dbLayerXorList from geometry.py -added support of npn13G2L and npn13G2V -extended documentation Signed-off-by: ThomasZecha <[email protected]>
Klayout PyCell integration
Some updates on top of IHP-GmbH#121
Signed-off-by: Daniel Arevalos <[email protected]>
Signed-off-by: KrzysztofHerman <[email protected]>
Signed-off-by: KrzysztofHerman <[email protected]>
Layout rule manual update
Signed-off-by: FaragElsayed2 <[email protected]>
Removing NO DRC filter for LVS runset for all layers
Remove NO_DRC filtering
…V mosfets Signed-off-by: KrzysztofHerman <[email protected]>
…m), symbols modified, some testcases modified Signed-off-by: KrzysztofHerman <[email protected]>
-added PyCell parameter type bool -added partial implementation for PyCell API class Net -added partial implementation for PyCell API class Path -added partial implementation for PyCell API class ShapeFilter -added support for Net's -added generic registering of IHP PyCell's in Klayout -added support for inductor2, inductor2_sc, inductor2_sp, inductor3, inductor3_sc and inductor3_sp -updated documentation Signed-off-by: ThomasZecha <[email protected]>
-fixed merge-error Signed-off-by: ThomasZecha <[email protected]>
Klayout PyCell integration
Signed-off-by: Daniel Arevalos <[email protected]>
…sistent w/ internal implementation Signed-off-by: Sergei Andreev <[email protected]>
libs.tech: klayout: Fix Metal density min/max values
Signed-off-by: Sergei Andreev <[email protected]>
…(stdcell, sram) Signed-off-by: Sergei Andreev <[email protected]>
Removing reference to merged.lef which does not exist. Signed-off-by: Peter <[email protected]>
…q) = 5nm Signed-off-by: Sergei Andreev <[email protected]>
…om .lyp file Signed-off-by: Sergei Andreev <[email protected]>
updated PDK contents
-added support for fgAnd, fgNot andfgSize -fixed dbLayerSize -updated documentation Signed-off-by: ThomasZecha <[email protected]>
Signed-off-by: Sergei Andreev <[email protected]>
- maximal DRC script supports ~75% of rules - rename DRC script parameters for OpenROAD compatibility - logfile -> log_file - gdsfile -> in_gds - outfile -> report_file - DRC script parameter "cell" is now optional - output number of DRC errors at the end - DRC script no longer depends on layout dbu - all lengths are given in micrometers - add limits to rule descriptions, e.g., "Min. GatPoly width = 0.13" Signed-off-by: Andreas Krinke <[email protected]>
Update KLayout DRC scripts
Klayout PyCell integration
Signed-off-by: Daniel Schultz <[email protected]>
…tation libs.tech: klayout: macros: Fix intentation
added LVS in PDK contents section Signed-off-by: Sergei Andreev <[email protected]>
Signed-off-by: Sergei Andreev <[email protected]>
Remove merged.lef from klayout setup
OpenROAD requires the sg13g2.map file to correctly place each layer. Fix this here to not overwrite manually changes in OpenROAD-Flow-Scripts. Signed-off-by: Daniel Schultz <[email protected]>
This file was copied from the OpenROAD-flow-scripts repository and should be maintained and kept here. Signed-off-by: Daniel Schultz <[email protected]>
OpenROAD-flow-scripts will search and replace for <lef-files>.*</lef-files>. Therefore, keep it empty in this syntax. Signed-off-by: Daniel Schultz <[email protected]>
libs.tech: Klayout: tech: Add layer map
Signed-off-by: Sergei Andreev <[email protected]>
added 'Digital' tool in PDK contents Signed-off-by: Sergei Andreev <[email protected]>
Added 'Digital' IHP130 cells as submodule
Signed-off-by: Sergei Andreev <[email protected]>
Signed-off-by: FaragElsayed2 <[email protected]>
…ucs-s examples updated Signed-off-by: KrzysztofHerman <[email protected]>
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.
Major change in the operation of the
ngspice
and PDK models.A
.spiceinit
was added underlibs.tech/ngspice/
. Since the pdk directory is referenced there it allows to stream the netlist without user specific location of the.lib
files ie..lib cornerMOSlv.lib mos_tt
The second change refers to the central location of the
psp103_nqs.osdi
model which is now situated inlibs.tech/ngspice/openvaf
. There is no need to usepre_osdi psp103_nqs.osdi
in the spice netlist anymore.The above changes affected
xschem
andqucs-s
examples, which were also updated. In the case ofqucs-s
also the examples are copied to the user's.qucs
directory and appear in the GUI in the project left pane. Some solutions were adopted from PR #120.