Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (6.2%) to scientific vocabulary
Keywords
Repository
Python interface for Cadence Spectre
Basic Info
- Host: GitHub
- Owner: AugustUnderground
- License: mit
- Language: Python
- Default Branch: master
- Homepage: https://augustunderground.github.io/pyspectre
- Size: 106 KB
Statistics
- Stars: 15
- Watchers: 2
- Forks: 8
- Open Issues: 1
- Releases: 0
Topics
Metadata Files
README.md
PySpectre
Python interface to Cadence Spectre.
Dependencies and Requirements
- Python >= 3.9
- pynut.
- Cadence Spectre, the
spectrecommand should be available in you shell
Installation
sh
$ pip install git+https://github.com/augustunderground/pyspectre.git
Example
Simulate a netlist and retrieve simulation results:
```python import pyspectre.functional as ps
netlist = 'path/to/netlist.scs' includes = ['path/to/pdk/libs']
results = ps.simulate(netlist, includes) ```
Start an interactive session:
```python import pyspectre.functional as ps
netlist = 'path/to/netlist.scs' includes = ['path/to/pdk/libs']
Start Interactive session
session = ps.start_session(netlist, includes)
Retrieve simulation analyses defined in the netlist
analyses = ps.list_analyses(session)
Get values for parameters defined in the netlist
params = ps.get_parameters(session, ['Wcm2', 'Ld'])
Set netlist parameters
ps.set_parameters(session, {'Wcm2': 2.0e-6, 'Ld': 1.0e-6})
Simulate
results = ps.run_all(session)
End Interactive session
ps.stop_session(session) ```
Check ./test/example.py and ./notebooks/introduction.ipynb for more.
Owner
- Name: ynk
- Login: AugustUnderground
- Kind: user
- Location: Innsmouth
- Company: @electronics-and-drives
- Website: https://augustunderground.github.io/
- Repositories: 12
- Profile: https://github.com/AugustUnderground
PhD Student at Reutlingen University
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: PySpectre
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Yannick
family-names: Uhlmann
email: augustunderground@pm.me
affiliation: Electronics & Drives
orcid: 'https://orcid.org/0000-0001-6704-9640'
repository-code: 'https://github.com/AugustUnderground/pyspectre'
url: 'https://augustunderground.github.io/pyspectre/'
abstract: ' Python interface for Cadence Spectre.'
keywords:
- EDA
- Python
- Spectre
license: MIT
GitHub Events
Total
- Watch event: 5
- Issue comment event: 9
- Push event: 5
- Pull request event: 4
- Fork event: 5
Last Year
- Watch event: 5
- Issue comment event: 9
- Push event: 5
- Pull request event: 4
- Fork event: 5
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 3
- Total pull requests: 4
- Average time to close issues: 2 days
- Average time to close pull requests: 1 day
- Total issue authors: 2
- Total pull request authors: 2
- Average comments per issue: 4.67
- Average comments per pull request: 1.5
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 3
- Average time to close issues: about 1 hour
- Average time to close pull requests: about 13 hours
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 2.0
- Average comments per pull request: 1.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- leochand101 (2)
- papageeleni (1)
Pull Request Authors
- padiro (6)
- abhishekjay (1)
- TiMo3654 (1)
- leochand101 (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- pandas *
- pexpect *
- pynut *