Introduction This page describes a python mathematical expression tree Code # https://www.teach.cs.toronto.edu/~csc148h/notes/trees/expression_trees.html #from __future__ import annotations fro...
Linked List example in Python
Introduction This page describes a python linked list example Code # https://codingnomads.com/how-to-build-linked-lists-in-python class Node: def __init__(self, value=None): self.val...
VPN in WSL2
Introduction This article is guide to using vpn from inside wsl2. The host windows maybe not on VPN. This can be useful sometimes when you are testing networking codes etc. For this article I am us...
Can Bus Communication using Python
Introduction This article is an installation and use case guide for communicating with can devices using python. For this article I am focussing on using the PCAN-USB usb-to-can hardware, but follo...
Oscilloscope Passive Probes
Introduction This is blank page. another test
Elmer Trials and Tribulation
Introduction ElmerCSC is a versatile FEM package which can potentially do electromagnetics-transient, thermal, mechanical stress calculations. These feature sets it apart and more powerful than th...
Rotating Ring Stress Calculation
Introduction Radial tensile inertia stress [{ \sigma }{ r }=\frac { 3+\upsilon }{ 8 } \cdot \rho \cdot { w }^{ 2 }\cdot ({ R }^{ 2 }+{ R }{ 0 }^{ 2 }-\frac { { R }^{ 2 }{ R }_{...
Git setup for Different Login Credentials
Introduction Sometimes you want to have two different credentials for working with two different repositories. For example lets say that you have a client that wants you to access their Azure accou...
Docker Part 1 - Installation
Introduction Placeholder for docker installation for scientific software like Ansys. References Ansys docker [3]:https://www.cfd-online.com/Forums/ansys/231493-ansys-installation-docker-container...
Installing and configuring Modelsim on docker
Introduction Modelsim is used for simulating vhdl codes. However it has a bunch of 32 bit dependencies and I was worried if it will break my system’s other dependencies. So i decided to write a doc...