Skip to content

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 i, \mathfrak i to avoid confusion with the index i. Index symmetrization () and anti-symmetrization [] will be used throughout. They are defined for an tensor A with two indices by

A(ij)=12(Aij+Aji),
A[ij]=12(AijAji)

The Fourier transform of a field ψ will be denoted ψf, \psi_{\mathfrak f}, and is defined as

ψf(k)=ddreikrf(r),

and the inverse is given by

ψ(r)=1(2π)dddkeikrψf(k),

where d is the spatial dimension.

Vectors a,b,c,Ω are denoted using boldfont (\mathbf, \boldsymbol) , while rank 2 tensors vary more. Typical choices however are non-bold greek letters (σ) lower case Fraktur letters (h, \mathfrak h) or capital letters (Q).

The dot product () is a contraction over the last index

(\nabla \cdot \sigma)_i = \partial_j {\sigma}_{ij}

while the double dot product ˙ is a contraction over the last two indices

(C˙e)ij=Cijklekl

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