https://github.com/juliacomputing/xyce.jl
A Julia wrapper for Xyce.
https://github.com/juliacomputing/xyce.jl
Last synced: 4 months ago
JSON representation
A Julia wrapper for Xyce.
- Host: GitHub
- URL: https://github.com/juliacomputing/xyce.jl
- Owner: JuliaComputing
- License: mit
- Created: 2021-04-26T10:28:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T02:03:40.000Z (over 2 years ago)
- Last Synced: 2025-01-20T23:29:43.417Z (5 months ago)
- Language: Julia
- Homepage:
- Size: 26.4 KB
- Stars: 12
- Watchers: 15
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xyce.jl
Xyce.jl is a high-level Julia wrapper for [Xyce](https://xyce.sandia.gov/), a parallel circuit-simulator from Sandia National Laboratories.
# Usage
```julia
using Xyce
using Plots
spice_file = joinpath(dirname(pathof(Xyce)), "../test/VRC.sp")
res = Xyce.simulate(spice_file)
plot(res["TIME"], [res["V(INP)"], res["V(OUT)"]],
label = ["V(inp)" "V(out)"])
```