Skip to content

Latest commit

 

History

History
142 lines (102 loc) · 6.17 KB

contributing.md

File metadata and controls

142 lines (102 loc) · 6.17 KB

Contributing to SPHinXsys

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

The following is a set of guidelines for contributing to SPHinXsys and its packages, which are hosted on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Table Of Contents

Code of Conduct

What should I know before I get started?

How Can I Contribute?

Styleguides

Additional Notes

Code of Conduct

This project and everyone participating in it is governed by the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]

What should I know before I get started?

SPHinXsys Libraries

SPHinXsys (pronunciation: s'finksis) is an acronym from Smoothed Particle Hydrodynamics for industrial compleX systems. It provides C++ APIs for physical accurate simulation and aims to model coupled industrial dynamic systems including fluid, solid, multi-body dynamics and beyond with SPH (smoothed particle hydrodynamics), a meshless computational method using particle discretization.

SPHinXsys has two major components: one is for the modelling classes, such as SPHBodies, Materials, Particles, Particle Configurations; the other is for the physical dynamics which are derived from the base class of ParticleDynamics. Both the models and physical dynamics can be extended.

SPHinXsys Conventions

There are a few conventions that have developed over time around SPHinXsys:

  • The main source is in the folder src and the examples and test problems are in the folder tests.
    • In src, the sources which will be used for both 2D and 3D are in the folder shared.
    • In shared, each folder is spefical model or physical dynamics. For example, the folder materials is for modeling fluid, solid and more complex material properties. Another example is the folder particle dynamics. In it, for each sub field of physical dynamics, a separated folder is assigned.
    • When different codes are required for 2D of 3D implementations. One need to create the folders with the same names in both the folders for 2D and 3D build.
    • Each test case has been assigned with a unique folder in tests.

How Can I Contribute?

Reporting Bugs or Issues

When you are creating a bug or issue report, please include as many details as possible.

Suggesting Enhancements

You are welcomed to submit an enhancement suggestion for SPHinXsys in the issues, including completely new features and minor improvements to existing functionality.

Your First Code Contribution

Unsure where to begin contributing to SPHinXsys? You can start by looking through these good first and help-wanted issues:

  • [Good first issues] - issues which should only require a few lines of code, and a test or two.
  • [Help wanted issues] - issues which should be a bit more involved than beginner issues.

Both issue lists are sorted by total number of comments.

Pull Requests

The process described here has several goals:

  • Maintain SPHinXsys's quality
  • Fix problems that are important to users
  • Engage the community in working toward the best possible SPHinXsys
  • Enable a sustainable system for SPHinXsys's maintainers to review contributions

Please follow these steps to have your contribution considered by the maintainers:

  1. Follow the styleguides
  2. After you submit your pull request, verify that all status checks are passing
    What if the status checks are failing?If a status check is failing, and you believe that the failure is unrelated to your change, please leave a comment on the pull request explaining why you believe the failure is unrelated. A maintainer will re-run the status check for you. If we conclude that the failure was a false positive, then we will open an issue to track that problem with our status check suite.

While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.

Styleguides

Git Commit Messages

  • Use the present tense ("Add feature" not "Added feature")
  • Limit the first line to 72 characters or less
  • Reference issues and pull requests liberally after the first line
  • When only changing documentation, include [ci skip] in the commit title
  • Consider starting the commit message with an applicable emoji:
    • 🎨 :art: when improving the format/structure of the code
    • 🐎 :racehorse: when improving performance
    • 🚱 :non-potable_water: when plugging memory leaks
    • 📝 :memo: when writing docs
    • 🐧 :penguin: when fixing something on Linux
    • 🍎 :apple: when fixing something on macOS
    • 🏁 :checkered_flag: when fixing something on Windows
    • 🐛 :bug: when fixing a bug
    • 🔥 :fire: when removing code or files
    • 💚 :green_heart: when fixing the CI build
    • :white_check_mark: when adding tests
    • 🔒 :lock: when dealing with security
    • ⬆️ :arrow_up: when upgrading dependencies
    • ⬇️ :arrow_down: when downgrading dependencies
    • 👕 :shirt: when removing linter warnings

C++ Styleguide

The code must adhere to Google C++ Style Guide.

Documentation Styleguide