Pamhyr2/doc/dev/documentation.org

5.3 KiB

Developers documentation

#

#

#

TODO Introduction

Pamhyr2 is free and open source graphical user interface (GUI) for 1D hydro-sedimentary modelling of rivers developed in Python (with version 3.8). It use PyQt at version 5 and matplotlib in version 3.4.1 or later for the user insterface (see for details). The architecture of project code follow the Qt Model/View architecture 1 (see details in section /parouby/Pamhyr2/src/commit/445de3b77746f3e32b979641dca6fdfc318d6ff8/doc/dev/Architecture). Pamhyr2 packages can be build manually (see section /parouby/Pamhyr2/src/commit/445de3b77746f3e32b979641dca6fdfc318d6ff8/doc/dev/Building%20packages), but there are automatically build with the gitlab-ci (see /parouby/Pamhyr2/src/commit/445de3b77746f3e32b979641dca6fdfc318d6ff8/doc/dev/Setup%20the%20CI%20environment).

TODO Architecture

TODO Model

TODO Solver

TODO View

TODO Unit tests

TODO The debug mode

TODO Build the project

TODO Building packages

TODO Linux

TODO Windows

TODO Setup the CI environment

TODO Documentation files

This document and the user documentation are org2 files. This text file format is formatted so that it can be exported in different formats: PDF (with latex), ODT, HTML, etc. It was originally designed for the GNUEmacs3 text editor, but can be edited with any text editor. Here we take a look at the different features used in these documents.

TODO Org-mode

Document structure

Org uses the * character to define a new document section. To add a sub-section, you can add an additional * to the current section[fn:: See document structure documentation: https://orgmode.org/org.html#Headlines (last access 2023-09-15)].

 * Top level headline
 ** Second level
 *** Third level
     some text
 *** Third level
     more text
 * Another top level headline

Format

Org-mode is a markup file, using markup in the text to modify the appearance of a portion of text[fn:: See markup documentation: https://orgmode.org/org.html#Emphasis-and-Monospace (last access 2023-09-15)].

Markup Results
*Bolt* Bolt
/Italic/ Italic
_underline_ underline
=verbatim= verbatim
~code~ code
+strike-through+ strike-through

TODO Code block

Latex

If we export the file to PDF, org-mode use \LaTeX. So we can add some piece of \LaTeX into the document[fn:: See \LaTeX part in documentation: https://orgmode.org/org.html#Embedded-LaTeX (last access 2023-09-15)]. For exemple, we can add math formula like $E=mc^2$ ($E=mc^2$) or \[E=mc^2\]:

\[E=mc^2\]

But we can also add every type of \LaTeX:

# Add latex in line
#+LATEX: <my line of latex>

# Add multiple line of LaTeX
#+BEGIN_EXPORT latex
<my latex here>
#+END_EXPORT

It is also possible to add specific \LaTeX file header with #+LATEX_HEADER. In this document we use the file for all \LaTeX headers.

Macro

In this document, we use a few macros[fn:: See marcos documentation https://orgmode.org/org.html#Macro-Replacement (last access 2023-09-15)] to simplify writing. They allow you to define sequences of text to be replaced, so that the macro name is replaced by its value. They are defined in the file. Once defined, they can be used in the document as follows: {{{<macro-name>}}}. You can also have macros with arguments, in this case: {{{<macro-name>(arg1,...)}}}. Les macros peuvent aussi utiliser du code emacs-lisp.

# Exemple of macro définition

#+MACRO: toto               tata
#+MACRO: add                \(($1 + $2)\)
#+MACRO: emacs-version      (eval (nth 2 (split-string (emacs-version))))

Macro apply:

  • Marco {{{toto}}}: {{{toto}}}
  • Marco {{{add(x,y)}}}:
  • Marco {{{emacs-version}}}: {{{emacs-version}}}

TODO Footnote

TODO References

TODO Export

TODO How to contribute?

TODO Contribution rules

TODO Translate

TODO Code contribution

{{{biblio}}}


1

Qt Model/View documentation: https://doc.qt.io/qt-5/model-view-programming.html (last access 2023-09-15)

2

The org-mode website: https://orgmode.org/ (last access 2023-09-15)

3

The GNUEmacs project website: https://gnu.org/s/emacs/ (last access 2023-09-15)