Agent skill

qutip

Quantum physics simulation library for open quantum systems. Use when studying master equations, Lindblad dynamics, decoherence, quantum optics, or cavity QED. Best for physics research, open system dynamics, and educational simulations. NOT for circuit-based quantum computing—use qiskit, cirq, or pennylane for quantum algorithms and hardware execution.

LeonChaoXgithub.com/LeonChaoXGitHub ↗
claude-codeMIT
Install
npx skills add LeonChaoX/qinyan-academic-skills --skill qutip --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 6
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/10-材料科学与物理计算/qutip/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 759
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# QuTiP: Quantum Toolbox in Python ## Overview QuTiP provides comprehensive tools for simulating and analyzing quantum mechanical systems. It handles both closed (unitary) and open (dissipative) quantum systems with multiple solvers optimized for different scenarios. ## Installation ```bash uv pip install qutip ``` Optional packages for additional functionality: ```bash # Quantum information processing (circuits, gates) uv pip install qutip-qip # Quantum trajectory viewer uv pip install qutip-qtrl ``` ## Quick Start ```python from qutip import * import numpy as np import matplotlib.pyplot as plt # Create quantum state psi = basis(2, 0) # |0⟩ state # Create operator H = sigmaz() # Hamiltonian # Time evolution tlist = np.linspace(0, 10, 100) result = sesolve(H, psi, tlist, e_ops=[sigmaz()]) # Plot results plt.plot(tlist, result.expect[0]) plt.xlabel('Time') plt.ylabel('⟨σz⟩') plt.show() ``` ## Core Capabilities ### 1. Quantum Objects and States Create and manipulate quantum states and operators: ```python # States psi = basis(N, n) # Fock state |n⟩ psi = coherent(N, alpha) # Coherent state |α⟩ rho = thermal_dm(N, n_avg) # Thermal density matrix # Operators a = destroy(N) # Annihilati

What's inside
Steps it walks through
  1. Overview
  2. Installation
  3. Quick Start
  4. Core Capabilities
  5. 1. Quantum Objects and States
  6. 2. Time Evolution and Dynamics
  7. 3. Analysis and Measurement
  8. 4. Visualization
  9. 5. Advanced Methods
  10. Common Workflows
  11. Simulating a Damped Harmonic Oscillator
  12. Two-Qubit Entanglement Dynamics
  13. Jaynes-Cummings Model
  14. Tips for Efficient Simulations
Ships with 5 files
  • references/advanced.md
  • references/analysis.md
  • references/core_concepts.md
  • references/time_evolution.md
  • references/visualization.md
Commands it runs
uv pip install qutip
Quantum information processing (circuits, gates)
uv pip install qutip-qip
Quantum trajectory viewer
uv pip install qutip-qtrl
More from qinyan-academic-skills
All skills →
About this skill
What does the qutip skill do?

Quantum physics simulation library for open quantum systems. Use when studying master equations, Lindblad dynamics, decoherence, quantum optics, or cavity QED. Best for physics research, open system dynamics, and educational simulations. NOT for circuit-based quantum computing—use qiskit, cirq, or pennylane for quantum algorithms and hardware execution.

How do I install it?

Run `npx skills add LeonChaoX/qinyan-academic-skills --skill qutip --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From LeonChaoX/qinyan-academic-skills, a repository with 759 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going