.claude/skills/dae-solver-configuration-matlab/SKILL.md
Configure MATLAB's ode15s solver for time evolution simulation of discretized DAE systems. Use when you have a discretized system of equations from finite element or finite difference methods and need to perform time-dependent simulations with adaptive step size control and error tolerance specification.
npx skillsauth add ShaneLogic/SolarLab dae-solver-configuration-matlabInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill configures MATLAB's ode15s solver for time evolution simulations of discretized semiconductor device models.
ode15sGoal: Minimize computational cost by eliminating superfluous variables.
Eliminate the following variables from the state vector:
The state vector u(t) is a column vector of length 4N + 4:
u(t) = [ P(t)^T, φ(t)^T, n(t)^T, p(t)^T ]^T
Where:
Write the system in the standard DAE form:
M * du/dt = f(t, u)
or:
F(t, u, du/dt) = 0
Ensure the form matches what ode15s expects for your specific problem type.
RelTol)AbsTol)A configured MATLAB solver setup ready for time integration via ode15s.
development
Understand and comply with Driftfusion software licensing terms, including the open-source AGPL v3.0 frontend and proprietary MATLAB pdepe solver backend. Use when using, modifying, or distributing Driftfusion code.
development
Initialize the Driftfusion simulation environment and create parameter objects. Use this skill when starting a new MATLAB session or setting up device properties for simulation.
development
Define device layer structure, configure spatial and time meshes, and build device structures with interface grading. Use this skill when setting up the physical geometry and discretization of a simulation device.
research
Analyze simulation solutions, calculate physical quantities, and generate plots. Use this skill when processing completed simulations, extracting currents/densities, or visualizing results.