From a37ece7ece67a8e97d841bfbc9bdd67a44042a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Boisselier?= Date: Mon, 13 May 2024 17:22:05 +0200 Subject: [PATCH] rename folders in measurement and post-processing --- .../{macros => measurement}/K-SnT_vibrations.cfg | 0 shaketune/{macros => measurement}/__init__.py | 0 shaketune/{macros => measurement}/accelerometer.py | 0 .../{macros => measurement}/axes_input_shaper.py | 0 shaketune/{macros => measurement}/axes_map.py | 0 .../{macros => measurement}/belts_comparison.py | 0 shaketune/{macros => measurement}/resonance_test.py | 0 shaketune/{macros => measurement}/static_freq.py | 0 .../{graph_creators => post_processing}/__init__.py | 0 .../analyze_axesmap.py | 0 .../graph_belts.py | 0 .../graph_creator.py | 0 .../graph_shaper.py | 0 .../graph_vibrations.py | 0 .../klippain.png | Bin shaketune/shaketune.py | 4 ++-- 16 files changed, 2 insertions(+), 2 deletions(-) rename shaketune/{macros => measurement}/K-SnT_vibrations.cfg (100%) rename shaketune/{macros => measurement}/__init__.py (100%) rename shaketune/{macros => measurement}/accelerometer.py (100%) rename shaketune/{macros => measurement}/axes_input_shaper.py (100%) rename shaketune/{macros => measurement}/axes_map.py (100%) rename shaketune/{macros => measurement}/belts_comparison.py (100%) rename shaketune/{macros => measurement}/resonance_test.py (100%) rename shaketune/{macros => measurement}/static_freq.py (100%) rename shaketune/{graph_creators => post_processing}/__init__.py (100%) rename shaketune/{graph_creators => post_processing}/analyze_axesmap.py (100%) rename shaketune/{graph_creators => post_processing}/graph_belts.py (100%) rename shaketune/{graph_creators => post_processing}/graph_creator.py (100%) rename shaketune/{graph_creators => post_processing}/graph_shaper.py (100%) rename shaketune/{graph_creators => post_processing}/graph_vibrations.py (100%) rename shaketune/{graph_creators => post_processing}/klippain.png (100%) diff --git a/shaketune/macros/K-SnT_vibrations.cfg b/shaketune/measurement/K-SnT_vibrations.cfg similarity index 100% rename from shaketune/macros/K-SnT_vibrations.cfg rename to shaketune/measurement/K-SnT_vibrations.cfg diff --git a/shaketune/macros/__init__.py b/shaketune/measurement/__init__.py similarity index 100% rename from shaketune/macros/__init__.py rename to shaketune/measurement/__init__.py diff --git a/shaketune/macros/accelerometer.py b/shaketune/measurement/accelerometer.py similarity index 100% rename from shaketune/macros/accelerometer.py rename to shaketune/measurement/accelerometer.py diff --git a/shaketune/macros/axes_input_shaper.py b/shaketune/measurement/axes_input_shaper.py similarity index 100% rename from shaketune/macros/axes_input_shaper.py rename to shaketune/measurement/axes_input_shaper.py diff --git a/shaketune/macros/axes_map.py b/shaketune/measurement/axes_map.py similarity index 100% rename from shaketune/macros/axes_map.py rename to shaketune/measurement/axes_map.py diff --git a/shaketune/macros/belts_comparison.py b/shaketune/measurement/belts_comparison.py similarity index 100% rename from shaketune/macros/belts_comparison.py rename to shaketune/measurement/belts_comparison.py diff --git a/shaketune/macros/resonance_test.py b/shaketune/measurement/resonance_test.py similarity index 100% rename from shaketune/macros/resonance_test.py rename to shaketune/measurement/resonance_test.py diff --git a/shaketune/macros/static_freq.py b/shaketune/measurement/static_freq.py similarity index 100% rename from shaketune/macros/static_freq.py rename to shaketune/measurement/static_freq.py diff --git a/shaketune/graph_creators/__init__.py b/shaketune/post_processing/__init__.py similarity index 100% rename from shaketune/graph_creators/__init__.py rename to shaketune/post_processing/__init__.py diff --git a/shaketune/graph_creators/analyze_axesmap.py b/shaketune/post_processing/analyze_axesmap.py similarity index 100% rename from shaketune/graph_creators/analyze_axesmap.py rename to shaketune/post_processing/analyze_axesmap.py diff --git a/shaketune/graph_creators/graph_belts.py b/shaketune/post_processing/graph_belts.py similarity index 100% rename from shaketune/graph_creators/graph_belts.py rename to shaketune/post_processing/graph_belts.py diff --git a/shaketune/graph_creators/graph_creator.py b/shaketune/post_processing/graph_creator.py similarity index 100% rename from shaketune/graph_creators/graph_creator.py rename to shaketune/post_processing/graph_creator.py diff --git a/shaketune/graph_creators/graph_shaper.py b/shaketune/post_processing/graph_shaper.py similarity index 100% rename from shaketune/graph_creators/graph_shaper.py rename to shaketune/post_processing/graph_shaper.py diff --git a/shaketune/graph_creators/graph_vibrations.py b/shaketune/post_processing/graph_vibrations.py similarity index 100% rename from shaketune/graph_creators/graph_vibrations.py rename to shaketune/post_processing/graph_vibrations.py diff --git a/shaketune/graph_creators/klippain.png b/shaketune/post_processing/klippain.png similarity index 100% rename from shaketune/graph_creators/klippain.png rename to shaketune/post_processing/klippain.png diff --git a/shaketune/shaketune.py b/shaketune/shaketune.py index 17ff7bf..1c6ffe5 100644 --- a/shaketune/shaketune.py +++ b/shaketune/shaketune.py @@ -3,9 +3,9 @@ from pathlib import Path -from .graph_creators import AxesMapFinder, BeltsGraphCreator, ShaperGraphCreator from .helpers.console_output import ConsoleOutput -from .macros import axes_map_calibration, axes_shaper_calibration, compare_belts_responses, excitate_axis_at_freq +from .measurement import axes_map_calibration, axes_shaper_calibration, compare_belts_responses, excitate_axis_at_freq +from .post_processing import AxesMapFinder, BeltsGraphCreator, ShaperGraphCreator from .shaketune_config import ShakeTuneConfig from .shaketune_thread import ShakeTuneThread