FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python3-eispice/module/__init__.py at master · Narrat/python3-eispice · GitHub
This repository was archived by the owner on Nov 10, 2022. It is now read-only.
Narrat
/
python3-eispice
Public archive
Notifications
You must be signed in to change notification settings
Fork
1
Star
6
Code
Issues
1
Pull requests
0
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Security and quality
Insights
Expand file tree
Breadcrumbs
python3-eispice
/
module
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
61 lines (52 loc) · 1.98 KB
Breadcrumbs
python3-eispice
/
module
/
__init__.py
Copy path
File metadata and controls
61 lines (52 loc) · 1.98 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# Copyright (C) 2006-2007 Cooper Street Innovations Inc.
# Charles Eidsness <charles@cooper-street.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
"""
eispice is a clone of the Berkley Spice 3 Simulation Engine. It was
originally targeted toward PCB level Signal Integrity Simulation; simulating
IBIS model defined devices, transmission lines, and passive termination but
the scope of the tool has been slowly expanding to include more general
purpose circuit simulation features.
For more information refer to the eispice webpage:
<www.thedigitalmachine.net/eispice>
Please report all bugs to:
<charles@thedigitalmachine.net>
Classes:
Circuit -- an eispice circuit
Functions:
about -- prints info on eispice and it's libraries
logFile -- records the eispice log to the specified file instead of stdout
errFile -- records the eispice error log to the specified file instead of stderr
Modules:
device -- basic device library
ibis -- support for ibis defined models
plot -- simple, default plot utility
subckt -- provides sub-circuit support
waveform -- provides wavefroms that can be used in sources
test -- the eispice test framework
"""
from
simulator_
import
about
,
logFile
,
errorFile
from
circuit
import
*
from
device
import
*
from
ibis
import
*
from
plot
import
*
from
subckt
import
*
from
waveform
import
*
from
test
import
*
import
calc
Back
|
FazBrowse Home
|
New Git URL