About

About Luc

Hi!

I'm a recent graduate from the University of Massachusetts Amherst with degrees in Physics, Computer Science, and Applied Mathematics. Currently, I'm enrolled in the UMass MS Computer Science program as a Bay State Fellow, working on my master's project in the Vardoyan Lab. During my undergraduate studies, I was involved with the MOLLER and nEXO collaborations in the Pocar Lab and Kumar Lab. I also briefly worked on efficiently modeling gaussian quantum systems with the Krastanov Lab. See my CV above for details on these projects.

About This Website

This website is written using Next.JS, and hosted via Vercel. The background is a numerical simulation of the Lorenz system:

$$ \begin{aligned} \dot{x} &= \sigma(y - x) \\ \dot{y} &= x(\rho - z) - y \\ \dot{z} &= x y - \beta z \\ \end{aligned} $$

with the typical values of these parameters, $$\rho =28, \space \sigma=10, \space \beta = \frac{8}{3} $$ For these values, the Lorenz system has chaotic trajectories, around two strange attractors.

The numerical calculations are done using the fourth order Runge-Kutta method, written in Javascript. These trajectories are are rendered using P5.js. The website is otherwise written in React and Next.JS.