PICurv 0.1.0
A Parallel Particle-In-Cell Solver for Curvilinear LES
Loading...
Searching...
No Matches
Developer Portal

This section is for maintainers and contributors changing solver behavior, YAML contracts, or workflow logic. It emphasizes architecture boundaries, method-level reasoning, and safe extension points.

1. Architecture and Contracts

2. Numerical Methods and Models

3. Documentation and Maintenance

4. Suggested Contributor Read Path

  1. Code Architecture
  2. Configuration Contract (YAML -> Generated Artifacts -> Runtime)
  3. Developer Ingestion Map
  4. Configuration Extension Playbook
  5. Modular Selector Extension Guide
  6. C Runtime Execution Map
  7. Methods and Models Overview

5. Expected Outcomes

After working through this section, you should be able to:

  • trace a new YAML key from schema to runtime consumer,
  • identify the right C module for a numerical feature change,
  • update docs/tests/validation alongside code changes,
  • preserve diagnostics and contract clarity while extending behavior.

CFD Reader Guidance and Practical Use

This page describes Developer Portal within the PICurv workflow. For CFD users, the most reliable reading strategy is to map the page content to a concrete run decision: what is configured, what runtime stage it influences, and which diagnostics should confirm expected behavior.

Treat this page as both a conceptual reference and a runbook. If you are debugging, pair the method/procedure described here with monitor output, generated runtime artifacts under runs/<run_id>/config, and the associated solver/post logs so numerical intent and implementation behavior stay aligned.

What To Extract Before Changing A Case

  • Identify which YAML role or runtime stage this page governs.
  • List the primary control knobs (tolerances, cadence, paths, selectors, or mode flags).
  • Record expected success indicators (convergence trend, artifact presence, or stable derived metrics).
  • Record failure signals that require rollback or parameter isolation.

Practical CFD Troubleshooting Pattern

  1. Reproduce the issue on a tiny case or narrow timestep window.
  2. Change one control at a time and keep all other roles/configs fixed.
  3. Validate generated artifacts and logs after each change before scaling up.
  4. If behavior remains inconsistent, compare against a known-good baseline example and re-check grid/BC consistency.