Heelyess Tahiri

Physics · Design · Code

Portfolio

Student Dashboard Preview
01

Student Dashboard

schrodinger.py
import numpy as np from scipy import linalg # Harmonic oscillator V = ½x² N = 1000 x = np.linspace(-10, 10, N) dx = x[1] - x[0] V = 0.5 * x**2 E, ψ = linalg.eigh(H)
03

Schrödinger Equation Solver

Plasma Formation in Insulating Gas
05

Plasma Formation in Insulating Gas under Electric Field

phase_classifier.py
import torch.nn as nn class PhaseNet(nn.Module): def __init__(self): self.net = nn.Sequential( nn.Linear(4,64), nn.ReLU(), nn.Linear(64,64), nn.ReLU(), nn.Linear(64,4), )
07

Phase Classification Network

Minimalist CV Resume
02

Minimalist CV / Resume

paschen_fit.py
from scipy.optimize import curve_fit import numpy as np def paschen(pd, A, B, g): t = np.log(1 + 1/g) return B*pd / (np.log(A*pd) - np.log(t)) popt, _ = curve_fit(paschen, df["pd"], df["Vb"])
04

Paschen's Law Verification

Scientific Article Template
06

Scientific Article Template