Quality guidelines and standards for preCICE adapters and related tools
Updated 18 Oct 24

v0.1, published on September 23, 2024 Are you developing a preCICE adapter or related tool? Follow these guidelines to make your adapter easier to publish, easier to integrate it with the rest of the preCICE ecosystem, and more useful for the community.

We distinguish between metadata and best practices, with three levels: bronze, silver, and gold. We plan to publish a list of all adapters that has achieved at least bronze level, together with the respective metadata. Higher levels bring higher visibility and further benefits.

We also differentiate here between adapters and application cases: for example, we consider the “Nutils adapter” to be a collection of application cases instead of an adapter. An adapter can be a stand-alone software project, but can also be a class, a patch, or something else with significant scholarly effort compared to the uncoupled solver. Other tools that interact with the preCICE API or configuration files can also be considered here, on a case-by-case basis.

By submitting your adapter for review, you can expect a thorough check from the preCICE team on whether these guidelines are met. We cannot do a full code review or a scientific review, and listing your adapter here does not in any way replace a traditional publication, which you can link to.

Metadata

  • M.1: Name of the target solver
  • M.2: URL of the adapter
  • M.3: License
  • M.4: Contact
  • M.5: How to cite (DOI or full information)
  • M.6: Type of adapter (curated list: stand-alone, library, patch, integrated, …)

Best practices

We distinguish between three levels: bronze, silver, and gold.

Bronze

We consider an adapter fulfilling all of these criteria as Findable and Accessible. This means that the adapter is working and documented. Others can find, build, and run the code, and they are able to understand what is does.

  • B.1: The adapter is accompanied by at least one application case to test it, covering at least a defined minimum functionality. The test case can be provided as an independent application case or included in the adapter.
  • B.2: There is a README.md file with at least the following information (or links to related resources):
    • application background and/or nature of coupling (e.g., surface vs. volume coupling; transient or steady-state; …)
    • what data can be read and written for a coupling
    • which target solver versions are supported
    • list of dependencies
    • how to build
    • how to configure (including the coupling data, if available)
    • how to run the accompanying application test case
    • geometry assumptions and limitations, e.g., number of dimensions, assumptions on out-of-plane axis for lower dimensions, or support for only a single or also multiple patches.
    • which preCICE features are supported or not supported. Curated list including:
      • implicit coupling
      • mesh connectivity
      • data initialization
      • subcycling: dt = min(dt_solver, dt_precice)
      • multiple meshes
    • restrictions on solver features
      • e.g., cannot be run in parallel or cannot use adaptive time stepping or cannot use higher-order elements
    • how to cite
  • B.3: The adapter has a clear license (open is optional, but strongly encouraged).
  • B.4: The adapter uses a version control system (public is optional, but strongly encouraged).
  • B.5: The adapter uses a versioning scheme, such as semantic versioning (or other clearly defined scheme).
  • B.6: The adapter has comments and error messages for at least its main building blocks and entry points. These comments are in English.

Silver

We consider an adapter fulfilling all of these criteria as Interoperable and maintainable. The adapter plays well with other adapters from the community and feels part of the preCICE ecosystem. The preCICE maintainers are, if necessary, able to maintain the adapter (e.g. update it to newer preCICE versions).

  • S.1: The adapter is accompanied by one or more application cases to test it, covering an extensive part of the claimed functionality. These cases must be provided as independent application cases.
  • S.2: The documentation provides references to related studies or literature necessary to understand the modeling and implementation (at least in preprint state).
  • S.3: The adapter has an open-source license.
  • S.4: The adapter uses a publicly-accessible repository.
  • S.5: The adapter configuration covers the mesh name, data names, participant name, and name of the preCICE configuration file.
  • S.6: In the adapter configuration, standard names are possible for the coupled data (e.g., Displacement).
  • S.7: There is a code formatting specification (e.g., clang-format specification file).
  • S.8: There is a structured changelog, e.g., using the keep a changelog format.
  • S.9: There is an issue tracker.
  • S.10: There is information on how the adapter was validated and how validation could be reproduced.
  • S.11: The documentation is rendered in a user-friendly way, either:
  • S.12: The logging is configurable, with levels at least “no logging, release logging, and debug logging”.

Gold

We consider an adapter fulfilling all of these criteria as Reusable, community-ready, and integrated. Others can easily reuse and extend the adapter for their own needs. Maintaining the adapter could be shared among many. We can integrate the adapter and corresponding application cases into our development workflows and make sure that we will not break it. All tooling works seamlessly.

  • G.1: There is a peer-reviewed paper (at least in pre-print state) with a validation study, with all data available.
  • G.2: There are contribution guidelines described in or linked from a CONTRIBUTING.md file.
  • G.3: There is a pull request template.
  • G.4: The configuration follows a formally defined schema, which will be available in the future.
  • G.5: There are unit tests to test components of the adapter, without running another simulation participant (and ideally, using the upcoming general mocked interface).
  • G.6: The repository is ready to be integrated into the preCICE system tests: A simulation can start using an unsupervised script and there is enough information to create entries under component-templates/ and components.yaml.
  • G.7: There is documentation on how to extend the adapter (i.e., documentation about the software architecture).
  • G.8: The adapter is packaged either on the expected repositories of the respective solver community, or on Spack (Spack packages).

An adapter example

The OpenFOAM adapter currently reaches Bronze level conformity, even if it already satisfies many of the higher-level criteria.

Metadata:

Bronze:

  • B.1: https://precice.org/quickstart.html
  • B.2: https://github.com/precice/openfoam-adapter/blob/develop/README.md
  • B.3: https://precice.org/adapter-openfoam-overview.html
  • B.4: https://github.com/precice/openfoam-adapter/blob/develop/LICENSE
  • B.5: https://github.com/precice/openfoam-adapter (public)
  • B.6: https://precice.org/adapter-openfoam-get.html#what-does-the-adapter-version-mean
  • B.7: See, for example, https://github.com/precice/openfoam-adapter/blob/develop/Adapter.H

Silver:

  • S.1: Several application cases are available as tutorials. The application cases list is not yet available.
  • S.2: https://doi.org/10.51560/ofj.v3.88
  • S.3: GPL-3.0
  • S.4: https://github.com/precice/openfoam-adapter
  • S.5: https://precice.org/adapter-openfoam-config.html
  • S.6: https://precice.org/adapter-openfoam-config.html
  • S.7: https://github.com/precice/openfoam-adapter/blob/develop/.clang-format
  • S.8: https://github.com/precice/openfoam-adapter/blob/develop/CHANGELOG.md
  • S.9: https://github.com/precice/openfoam-adapter/issues
  • S.10: While the adapter has been validated, this is not clearly described in the current documentation
  • S.11: on precice.org
  • S.12: public
  • S.13: yes, but only at compile-time

Gold:

  • G.1: https://doi.org/10.51560/ofj.v3.88
  • G.2: https://github.com/precice/openfoam-adapter/blob/develop/CONTRIBUTING.md
  • G.3: https://github.com/precice/openfoam-adapter/blob/develop/.github/pull_request_template.md
  • G.4: (schema not available yet)
  • G.5: There are no unit tests
  • G.6: Already integrated into the system tests
  • G.7: https://precice.org/adapter-openfoam-extend.html
  • G.8: https://packages.spack.io/package.html?name=of-precice