Skip to content

Instantly share code, notes, and snippets.

EEcircuit User Guide

Welcome to EEcircuit! This guide covers the essential operations for creating, simulating, and analyzing circuits. The interface is designed to adapt to your device, offering optimized controls for Mouse, Trackpad, and Touchscreen inputs.

1. Input Profiles

EEcircuit automatically detects your device, but you can manually toggle input profiles using the device icon in the header (Mouse 🖱️ / Trackpad touchpad / Touchscreen 📱).

Profile Zoom Pan Selection
Mouse Shift + Scroll Wheel Scroll Wheel (Click & Drag) Click & Drag Box
@danchitnis
danchitnis / circuit-23.md
Last active November 27, 2023 21:46
EEsim Circuits 2023

Analogue IC Design - Tutorial circuits for EEsim

Simple RC circuit

Basic RC circuit
.include modelcard.CMOS90

r in out 1k
c out 0 1n
@danchitnis
danchitnis / circuit-22.md
Last active November 23, 2022 00:25
Tutorial circuits for EEsim

Analogue IC Design - Tutorial circuits for EEsim

Simple RC circuit

Basic RC circuit
.include modelcard.CMOS90

r in out 1k
c out 0 1n

brainstorming for combined use of mdspan and sycl

Based on an example from Ronan's CppCon21 presentation slide #56.

# include <iostream>
# include <sycl/sycl.hpp>
int main () {
  sycl::buffer<int> v { 10 } ;