python-scientific-computing
Python for engineering analysis, numerical computing, and scientific workflows using NumPy, SciPy, SymPy
Profile →npx skills add majiayu000/claude-skill-registry --skill python-scientific-computing --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
What it does
Master Python for engineering analysis, numerical simulations, and scientific workflows using industry-standard libraries.
How it works
- Provides guidance on when to use Python for numerical analysis, engineering calculations, matrix operations, symbolic mathematics, data analysis, and simulations.
- Covers core capabilities in three sections:
- NumPy: demonstrates array creation, special arrays, and common linear algebra operations such as matrix multiplication, inversion, eigen decomposition, solving systems, and determinants.
- SciPy: includes examples for optimization (minimization and root finding), integration and ODE solving, and interpolation (1D and 2D).
- SymPy: shows symbolic mathematics including expression manipulation, differentiation, integration, solving equations, and solving systems.
- Contains complete usage examples and concrete code blocks for practical tasks, plus several end-to-end scenarios (e.g., marine engineering, structural dynamics, wave spectrum, motion integration, mooring optimization, beam deflection).
- Each example uses specific functions and modules from the corresponding libraries, with explicit function calls and parameters.
When to use it
Use Python scientific computing when you need:
- Numerical analysis - Solving equations, optimization, integration
- Engineering calculations - Stress, strain, dynamics, thermodynamics
- Matrix operations - Linear algebra, eigenvalue problems
- Symbolic mathematics - Analytical solutions, equation manipulation
- Data analysis - Statistical analysis, curve fitting
- Simulations - Physical systems, finite element preprocessing
What it can touch
- Tools referenced: claude-code (as the declared tool)
- Libraries and modules: NumPy, SciPy, SymPy, matplotlib (as shown in examples)
Caveats
- Avoid real-time performance-critical tasks in Python; consider C++/Fortran in such cases
- Not intended for simple calculations or when no numerical computation is needed
- Examples assume standard installations of NumPy, SciPy, and SymPy; behavior may vary with versions
# Python Scientific Computing Skill Master Python for engineering analysis, numerical simulations, and scientific workflows using industry-standard libraries. ## When to Use This Skill Use Python scientific computing when you need: - **Numerical analysis** - Solving equations, optimization, integration - **Engineering calculations** - Stress, strain, dynamics, thermodynamics - **Matrix operations** - Linear algebra, eigenvalue problems - **Symbolic mathematics** - Analytical solutions, equation manipulation - **Data analysis** - Statistical analysis, curve fitting - **Simulations** - Physical systems, finite element preprocessing **Avoid when:** - Real-time performance critical (use C++/Fortran) - Simple calculations (use calculator or Excel) - No numerical computation needed ## Core Capabilities ### 1. NumPy - Numerical Arrays and Linear Algebra **Array Operations:** ```python import numpy as np # Create arrays array_1d = np.array([1, 2, 3, 4, 5]) array_2d = np.array([[1, 2, 3], [4, 5, 6]]) # Special arrays zeros = np.zeros((3, 3)) ones = np.ones((2, 4)) identity = np.eye(3) linspace = np.linspace(0, 10, 100) # 100 points from 0 to 10 # Array operations (vectorized - fast!) x = np
- When to Use This Skill
- Core Capabilities
- 1. NumPy - Numerical Arrays and Linear Algebra
- 2. SciPy - Scientific Computing
- 3. SymPy - Symbolic Mathematics
- Complete Examples
- Example 1: Marine Engineering - Catenary Mooring Line
- Example 2: Structural Dynamics - Natural Frequency
- Example 3: Hydrodynamic Analysis - Wave Spectrum
- Example 4: Numerical Integration - Velocity to Displacement
- Example 5: Optimization - Mooring Pretension
- Example 6: Symbolic Mathematics - Beam Deflection
- Best Practices
- 1. Use Vectorization
Using pip pip install numpy scipy sympy matplotlib Using UV (faster) uv pip install numpy scipy sympy matplotlib Specific versions pip install numpy==1.26.0 scipy==1.11.0 sympy==1.12
What does the python-scientific-computing skill do?
Python for engineering analysis, numerical computing, and scientific workflows using NumPy, SciPy, SymPy
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill python-scientific-computing --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 majiayu000/claude-skill-registry, a repository with 534 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.