Conventions
In this section, we will describe the conventions used in the documentation and code.
Folders and file types
- Documentation is written in markdown.
- Tutorials are written in markdown.
File naming conventions
- Documentation files are named using CamelCase.
- Image files in the docs folder are named using
snake_case
Mathematical conventions
The imaginary unit will be denoted \mathfrak i
to avoid confusion with the index
The Fourier transform of a field \psi_{\mathfrak f}
, and is defined as
and the inverse is given by
where
Vectors \mathbf
, \boldsymbol
) , while rank 2 tensors vary more.
Typical choices however are non-bold greek letters (\mathfrak h
) or capital letters (
The dot product (
while the double dot product
Programming notation conventions
- PEP8 for python programming
- NumPy docstring format for documentation strings
- Import ordering should follow this pattern:
- Standard library imports
- Third-party library imports
- Local application imports
- Each group should be separated by a blank line
Stand-alone functions are documented as follows:
def function_name(
arg1: arg1_type,
arg2: arg2_type,
arg3: Optional[arg3_type] = None,
**kwargs: Any
) -> return_type:
"""Short description of the function (in the imperative mood).
Optional longer description of the function.
Parameters
----------
arg1 : arg1_type
Description of arg1. No need to state default values.
arg2 : arg2_type
Description of arg2.
arg3 : arg3_type, optional
Description of arg3. Defaults to None.
kwargs : Any
Description of additional keyword arguments.
Returns
-------
return_type
Description of the return value.
Raises
------
Exception
Description of the exception.
Examples
--------
>>> function_name(1, 2)
3
"""
pass
If the function is a method of a comfit
model, it should be documented as follows:
from typing import TYPE_CHECKING # Import necessary typing packages
if TYPE_CHECKING:
from comfit.core.base_system import BaseSystem
# General packages
# Import necessary packages from the standard library, e.g.
# import numpy as np
# Comfit packages
# Import necessary packages from comfit from the subpackages, e.g.
# from comfit.core import BaseSystem
def function_name(
self: 'BaseSystem',
arg1: arg1_type,
arg2: arg2_type,
arg3: Optional[arg3_type] = None
) -> return_type:
"""Short description of the function (in the imperative mood).
Optional longer description of the function.
Parameters
----------
arg1 : arg1_type
Description of arg1. No need to state default values.
arg2 : arg2_type
Description of arg2.
arg3 : arg3_type, optional
Description of arg3. Defaults to None.
kwargs : Any (use backslash to escape the asterisk)
Description of additional keyword arguments.
Returns
-------
return_type
Description of the return value.
Raises
------
Exception
Description of the exception.
Examples
--------
>>> function_name(1, 2)
3
"""
pass
- markdownlint for markdown documents.