1---2name: differentiation-schemes3description: Select and apply numerical differentiation schemes for PDE and ODE discretization — generate finite-difference stencils at arbitrary order and accuracy, choose between central, upwind, compact (Pade), and spectral methods, handle boundary stencils, and estimate truncation error scaling. Use when discretizing spatial derivatives, picking a scheme for advection- or diffusion-dominated problems, building custom stencils for nonstandard operators, or comparing dispersion and dissipation properties of candidate schemes, even if the user just says "how do I approximate this derivative" or "my solution is too diffusive."4---56# Differentiation Schemes78## Goal910Provide a reliable workflow to select a differentiation scheme, generate stencils, and assess accuracy for simulation discretization.1112## Requirements1314- Python 3.10+15- NumPy (for stencil computations)16- No heavy dependencies1718## Inputs to Gather1920| Input | Description | Example |21|-------|-------------|---------|22| Derivative order | First, second, etc. | `1` or `2` |23| Target accuracy | Order of truncation error | `2` or `4` |24| Grid type | Uniform, nonuniform | `uniform` |25| Boundary type | Periodic, Dirichlet, Neumann | `periodic` |26| Smoothness | Smooth or discontinuous | `smooth` |2728## Decision Guidance2930### Scheme Selection Flowchart3132```33Is the field smooth?34├── YES → Is domain periodic?35│ ├── YES → Use central differences or spectral36│ └── NO → Use central interior + one-sided at boundaries37└── NO → Are there shocks/discontinuities?38 ├── YES → Use upwind, TVD, or WENO39 └── NO → Use central with limiters40```4142### Quick Reference4344| Situation | Recommended Scheme |45|-----------|-------------------|46| Smooth, periodic | Central, spectral |47| Smooth, bounded | Central + one-sided BCs |48| Advection-dominated | Upwind |49| Shocks/fronts | TVD, WENO |50| High accuracy needed | Compact (Padé), spectral |5152## Script Outputs (JSON Fields)5354| Script | Key Outputs |55|--------|-------------|56| `scripts/stencil_generator.py` | `offsets`, `coefficients`, `order`, `accuracy`, `scheme` |57| `scripts/scheme_selector.py` | `recommended`, `alternatives`, `notes` |58| `scripts/truncation_error.py` | `error_scale`, `order`, `reduction_if_halved` |5960## Workflow61621. **Identify requirements** - derivative order, accuracy, smoothness632. **Select scheme** - Run `scripts/scheme_selector.py`643. **Generate stencils** - Run `scripts/stencil_generator.py`654. **Estimate error** - Run `scripts/truncation_error.py`665. **Validate** - Test with manufactured solutions or grid refinement6768## Conversational Workflow Example6970**User**: I need to discretize a second derivative for a diffusion equation on a uniform grid. I want 4th-order accuracy.7172**Agent workflow**:731. Select appropriate scheme (boundary type was not stated; if the domain is74 bounded rather than periodic, add `--boundary` to surface one-sided/ghost-cell75 guidance, or ask the user):76 ```bash77 python3 scripts/scheme_selector.py --smooth --order 2 --accuracy 4 --json78 ```792. Generate the stencil:80 ```bash81 python3 scripts/stencil_generator.py --order 2 --accuracy 4 --scheme central --json82 ```833. Result: 5-point stencil with coefficients `[-1/12, 4/3, -5/2, 4/3, -1/12]` / dx².8485## Pre-Discretization Checklist8687- [ ] Confirm derivative order and target accuracy88- [ ] Choose scheme appropriate to smoothness and boundaries89- [ ] Generate and inspect stencils at boundaries90- [ ] Estimate truncation error vs physics scales91- [ ] Verify with grid refinement study9293## CLI Examples9495```bash96# Select scheme for smooth periodic problem97python3 scripts/scheme_selector.py --smooth --periodic --order 1 --accuracy 4 --json9899# Generate central difference stencil for first derivative100python3 scripts/stencil_generator.py --order 1 --accuracy 2 --scheme central --json101102# Generate 4th-order second derivative stencil103python3 scripts/stencil_generator.py --order 2 --accuracy 4 --scheme central --json104105# Estimate truncation error106python3 scripts/truncation_error.py --dx 0.01 --accuracy 2 --scale 1.0 --json107```108109## Error Handling110111| Error | Cause | Resolution |112|-------|-------|------------|113| `order must be positive` | Invalid derivative order | Use 1, 2, 3, ... (max 6) |114| `order must be <= 6` | Derivative order too large | Use 1–6 |115| `accuracy must be even for central` | Odd accuracy requested for central scheme | Use 2, 4, 6, ... |116| `scheme must be central, forward, or backward` | Invalid `--scheme` value | Use `central`, `forward`, or `backward` |117118## Interpretation Guidance119120### Stencil Properties121122| Property | Meaning |123|----------|---------|124| Symmetric offsets | Central scheme (no directional bias) |125| Asymmetric offsets | One-sided or upwind scheme |126| More points | Higher accuracy but wider stencil |127128### Truncation Error Scaling129130| Accuracy Order | Error Scales As | Refinement Factor |131|----------------|-----------------|-------------------|132| 2nd order | O(dx²) | 2× refinement → 4× error reduction |133| 4th order | O(dx⁴) | 2× refinement → 16× error reduction |134| 6th order | O(dx⁶) | 2× refinement → 64× error reduction |135136### Common Stencils137138| Derivative | Accuracy | Points | Coefficients (× 1/dx or 1/dx²) |139|------------|----------|--------|-------------------------------|140| 1st | 2 | 3 | [-1/2, 0, 1/2] |141| 1st | 4 | 5 | [1/12, -2/3, 0, 2/3, -1/12] |142| 2nd | 2 | 3 | [1, -2, 1] |143| 2nd | 4 | 5 | [-1/12, 4/3, -5/2, 4/3, -1/12] |144145## Verification checklist146147Before trusting a generated stencil or accepting a scheme recommendation, record concrete evidence for each item below:148149- [ ] Ran `stencil_generator.py --json` and confirmed `results.accuracy` matches the requested order AND that `len(results.offsets)` equals the expected stencil width (e.g. 5 points for a 4th-order central second derivative); for a `central` scheme also verified the offsets are symmetric about 0.150- [ ] Sanity-checked the returned `coefficients` against `references/stencil_catalog.md`: confirmed they sum to ~0 (consistency: the operator annihilates a constant) and reproduce a known catalog stencil for at least one standard case (e.g. 2nd-order d²/dx² gives `[1, -2, 1]/dx²`).151- [ ] For a `central` scheme, confirmed `--accuracy` is even (odd values exit 2 with `accuracy must be even for central`); recorded the actual exit code rather than assuming the requested order was achieved.152- [ ] Recorded the `error_scale`, `order`, and `reduction_if_halved` from `truncation_error.py` and confirmed `reduction_if_halved == 2**accuracy`, then compared `error_scale` against the smallest physical feature size (dx/L_feature from `references/error_guidance.md`) to confirm the grid actually resolves the physics.153- [ ] Ran an independent grid-refinement / manufactured-solution study on >=3 grids (the scripts do NOT do this) and confirmed the observed order `p_obs = log(e_h/e_{h/2})/log(2)` is within ~10% of the formal `accuracy` before quoting that order.154- [ ] For a bounded (non-periodic) domain, confirmed boundary stencils were generated/selected explicitly (`--scheme forward|backward` or `--boundary` guidance) per `references/boundary_handling.md`, since the interior stencil alone does not define the scheme order at the boundary.155- [ ] For non-smooth fields (shocks/fronts), confirmed `scheme_selector.py` did NOT recommend high-order central FD and that a limiter/WENO/upwind path was chosen instead.156157## Common pitfalls & rationalizations158159| Tempting shortcut | Why it's wrong / what to do |160|-------------------|------------------------------|161| "The stencil generator returned coefficients, so the scheme is the order I asked for." | The `accuracy` field just echoes your request; it is not measured. Verify the achieved order with a grid-refinement study and confirm the coefficients match a catalog stencil and sum to ~0. |162| "I asked for 4th order on a central scheme with `--accuracy 3`, it'll just round up." | It will not — central schemes reject odd accuracy with `accuracy must be even for central` (exit 2). Pass an even accuracy; an odd request is an error, not a silent upgrade. |163| "Higher accuracy order always means lower error here." | `truncation_error.py` reports asymptotic *scaling* (`scale * dx**accuracy`); for a coarse grid or under-resolved feature the higher-order term need not dominate, and roundoff (`O(ε/dx^p)`) can win on very fine grids. Compare `error_scale` to the feature size, do not assume monotone improvement. |164| "Two grids agree closely, so it's converged." | Two grids cannot estimate observed order or confirm the asymptotic range. Use >=3 grids and compute `p_obs` before claiming the formal order (see `references/error_guidance.md`). |165| "The interior stencil is 4th order, so my whole solve is 4th order." | The generator emits interior stencils only; boundary closures often limit the global order. Generate one-sided/ghost-cell stencils explicitly and verify the boundary does not drop the observed order (`references/boundary_handling.md`). |166| "The field has a shock but a wide central stencil is more accurate, so use it." | High-order central FD oscillates (Gibbs) at discontinuities. `scheme_selector.py` recommends FV with limiter/WENO or upwind for `--discontinuous`; follow it rather than maximizing formal order. |167| "Custom `--offsets` let me build any stencil I want." | Offsets must be distinct, length-capped (51), and number more than the derivative order, or the script exits 2. A valid run still does not guarantee the intended accuracy — verify the coefficients and observed order. |168169## Security170171### Input Validation172- `--order` (derivative order) is validated as a positive integer with an upper bound (`order <= 6`)173- `--accuracy` is validated as a positive integer (`<= 8`), and additionally must be even for central schemes174- `--scheme` is validated against a fixed allowlist (`central`, `forward`, `backward`)175- `--offsets` (custom stencil) is length-capped (max 51), parsed as distinct integers, and must exceed the derivative order176- `--dx` and `--scale` are validated as finite, non-negative numbers (`--dx` strictly positive)177- No user-supplied strings are interpolated into code paths or shell commands178179### File Access180- Scripts read no external files; all inputs are provided via CLI arguments181- Scripts write only to stdout (JSON output); no files are created unless the agent explicitly uses the Write tool182183### Tool Restrictions184- **Read**: Used to inspect script source, references, and user configuration files185- **Bash**: Used to execute the three Python scripts (`stencil_generator.py`, `scheme_selector.py`, `truncation_error.py`) with explicit argument lists186- **Write**: Used to save generated stencil coefficients or scheme recommendations; writes are scoped to the user's working directory187- **Grep/Glob**: Used to locate relevant files and search references188189### Safety Measures190- No `eval()`, `exec()`, or dynamic code generation191- All subprocess calls use explicit argument lists (no `shell=True`)192- Stencil computation uses only small, bounded arrays (derivative order capped at 6, accuracy at 8, and custom offset lists capped at 51 points)193- All output is deterministic JSON with no shell-interpretable content194195## Limitations196197- **Boundary handling**: Stencil generator provides interior stencils; boundaries need special treatment198- **Nonuniform grids**: Standard stencils assume uniform spacing199- **Spectral**: Not covered by stencil generator200201## References202203- `references/stencil_catalog.md` - Common stencils204- `references/boundary_handling.md` - One-sided schemes205- `references/scheme_selection.md` - FD/FV/spectral comparison206- `references/error_guidance.md` - Truncation error scaling207208## Version History209210- **v1.2.2** (2026-06-24): Added a Verification checklist (evidence-based, tied to script JSON outputs and the references) and a Common pitfalls & rationalizations table.211- **v1.2.0** (2026-06-23): Enforced even-accuracy and order upper-bound validation, corrected Security/error-handling/output docs to match scripts, fixed CLI/eval examples, hardened input validation212- **v1.1.0** (2024-12-24): Enhanced documentation, decision guidance, examples213- **v1.0.0**: Initial release with 3 differentiation scripts