Pymecavideo 8.0
Étude cinématique à l'aide de vidéos
grandeurs.py
1# -*- coding: utf-8 -*-
2
3"""
4 grandeurs, a module for pymecavideo:
5 a program to track moving points in a video frameset
6
7 Copyright (C) 2023 Georges Khaznadar <georgesk@debian.org>
8
9 This program is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
21"""
22
23grandeurs = [
24 "X", # abscisse
25 "Y", # ordonnée
26 "V", # norme de la vitesse
27 "Vx", # abscisse de la vitesse
28 "Vy", # ordonnée de la vitesse
29 "Ec", # énergie cinétique
30 "Epp", # énergie potentielle de pesanteur
31 "Em", # énergie mécanique
32 "A", # norme de l'accélération
33 "Ax", # abscisse de l'accélération
34 "Ay", # ordonnée de l'accélération
35]
36