OpenPCells (short: opc) is by far my biggest side project. It tries to solve a common problem occuring in analog integrated circuit design: Layout automation. Other than digital circuits, which rely on sophisticated automated tools for circuit synthesis, verification, place & route etc., analog circuits are mainly hand-crafted. This process involves developing a schematic which implements the required functionality. The designer then checks if the circuit also meets all performance requirements under the influence of process variations, temperature, aging and many more. If this works out, a mask layout is developed. The design-rule check (DRC) and the layout-versus-schematic (LVS) help to create a physical version of the schematic which is correct and manufacturable. This usually is an iterative process, as these tools are checked over and over again. If all succeeds, the parasitic elements (capacitors, resistors, inductors) are extracted from the layout and added to the schematic, which is then simulated again to check the performance. Typically, this also involves further steps of refinement. The layout design process therefore is complex and time-consuming, as manual layout takes time to do and some of the tools (and possibly simulations) have large run-times. OpenPCells tries to implement technology- and tool-independent parametric cells (PCells) on which entire system layouts can be based. This shifts the layout creation away from a graphical to a code-based approach.
For the design of linear analog circuits (for example operational amplifiers) the use of small-signal linear analysis is quite common. This involves linearizing the circuit at a suitable operation point and then solving the resulting network. This can be a tedious and error-prone task even for small circuits, when a certain accuracy is required. Eventually, the circuit is tested with a circuit simulator anyway, so the linear analysis is only used for insights on gain, output resistance etc., not for verification. With this, it also plays an important role for the initial design as well as for designers with little experience. Therefore, linear analysis is used a lot in teaching.
When I was still a student I got tired of doing all these calculations, so I started building a symbolic simulator, which does not give numbers as result, but transfer functions in the laplace domain. I started this project during the time between university terms and it evolved for a while after that. The current status of the project can be found at its Github repository. Considering the base features, it is practically finished, as any network can be solved and the results can then be post-processed. There is one exception: Differential circuit noise. The simulator can calculate noise transfer functions, output noise, input noise, integrated noise etc., but I struggled to fully grasp the modelling and math of differential noise. For all other cases, it is a handy tool and calculates circuit solutions in milliseconds, where (possibly errorneous) hand calculations could take a long time.
As a researcher I read a lot of papers, lectures, application notes and other documents. Often I come back to them and for this I need to find them quickly. The simplest way of doing this is having a decent folder structure, but I wanted something more geared towards typical command-line work flows. I use zathura as my PDF viewer, which is a super fast PDF viewer with vim keybindings. Inspired by various tools such as surfraw and others, I wanted to find documents by typing a minimal set of words on the command line and offering me a choice if several documents match. I developed my own tool for this, which I named DocMa (for Document Manager). DocMa allows searching for author names, keywords, titles etc. and has import front-ends for bibtex files and a slightly manual method. It remembers the last searches for refining results and create bibtex entries for including references in a paper. The tool is in a very usable state (I use it probably almost every day), but some features are still missing. Development stalled a bit in the past, but I plan to finish some of the more important features after my PhD.
Part of my day job is writing scientific papers for conferences and journals. These papers contain drawings of circuits. As I create all my figures in LaTeX with TikZ and pgfplots, naturally I also use TikZ to draw circuits. There is a LaTeX package for this (circuitikz), which I tried a few times but never really liked. For integrated circuits specifically (with a lot of MOSFETs) but also in general I don't think that the defaults are very good. Resistors and Capacitors are huge compared to active devices, the line width of wires is different than the one drawn in resistors (which might by a feature but it's not like I want to draw it) etc. Originally, what bugged me most is that when I had to customize a MOSFET I discovered some issues and some lacking customization options (this was a few years back, the situation has likely changed). This motivated me to design my own symbols and drawing commands. These follow more closely the traditional TikZ coding, without placing resistors along paths and special label placement. In general, I prefer explicitness in code over fancy, but sometimes unclear or intransparent constructs.
The project contains the definitions of the shapes as well as some drawing commands. Currently there is (sadly) no documentation, but I included some examples. Feel free to contact me if you have questions or suggestions.