lunta commited on
Commit
c617c5a
·
verified ·
1 Parent(s): 8850c18

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -50
README.md CHANGED
@@ -1,50 +1,49 @@
1
- ---
2
- license: mit
3
- task_categories:
4
- - time-series-forecasting
5
- - robotics
6
- tags:
7
- - physics
8
- - magnetism
9
- - simulation
10
- - trajectory
11
- size_categories:
12
- - n<1K
13
- ---
14
-
15
- # Magnetic Assist Trajectories
16
-
17
- ## Dataset Description
18
-
19
- This dataset contains trajectory data representing the movement of an oscillating magnet interacting with another magnet. The data captures the position of the magnet over time, recorded at a rate of 60 frames per second (FPS).
20
-
21
- ### Purpose
22
- The purpose of this dataset is to analyze the motion dynamics of magnetic interaction, specifically in the context of an "oscillating magnet over another magnet". It can be used for:
23
- - Time-series analysis
24
- - Physics simulation validation
25
- - Trajectory prediction
26
- - Control system design for magnetic assistance devices
27
-
28
- ## Dataset Structure
29
-
30
- The dataset consists of a single file `timeseries.csv` with the following columns:
31
-
32
- - **x**: The x-coordinate of the magnet's position.
33
- - **y**: The y-coordinate of the magnet's position.
34
-
35
- ### Data Format
36
- - **File Format**: CSV (Comma-Separated Values)
37
- - **Sampling Rate**: 60 Hz (60 samples per second)
38
-
39
- ## Data Collection
40
-
41
- The data was generated/recorded from a simulation or experiment involving an oscillating magnet positioned above another magnet. The interaction forces cause the specific trajectory patterns observed in the data.
42
-
43
- ## Usage
44
-
45
- ```python
46
- import pandas as pd
47
-
48
- df = pd.read_csv("timeseries.csv")
49
- print(df.head())
50
- ```
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - time-series-forecasting
5
+ tags:
6
+ - physics
7
+ - magnetism
8
+ - experimental
9
+ - trajectory
10
+ size_categories:
11
+ - n<1K
12
+ ---
13
+
14
+ # Magnetic Assist Trajectories
15
+
16
+ ## Dataset Description
17
+
18
+ This dataset contains trajectory data representing the movement of an oscillating magnet interacting with another magnet. The data captures the position of the magnet over time, recorded at a rate of 60 frames per second (FPS).
19
+
20
+ ### Purpose
21
+ This dataset was created for IYPT 2025 competition problem N9. Magnetic Assist. The purpose of this dataset is to analyze the motion dynamics of magnetic interaction **from top view**, specifically in the context of an "oscillating magnet over another magnet". It can be used for:
22
+ - Time-series analysis
23
+ - Physics simulation validation
24
+ - Trajectory prediction
25
+ - Control system design for magnetic assistance devices
26
+
27
+ ## Dataset Structure
28
+
29
+ The dataset consists of a single file `timeseries.csv` with the following columns:
30
+
31
+ - **x**: The x-coordinate of the magnet's position.
32
+ - **y**: The y-coordinate of the magnet's position.
33
+
34
+ ### Data Format
35
+ - **File Format**: CSV (Comma-Separated Values)
36
+ - **Sampling Rate**: 60 Hz (60 samples per second)
37
+
38
+ ## Data Collection
39
+
40
+ The data was generated/recorded from a simulation or experiment involving an oscillating magnet positioned above another magnet. The interaction forces cause the specific trajectory patterns observed in the data.
41
+
42
+ ## Usage
43
+
44
+ ```python
45
+ import pandas as pd
46
+
47
+ df = pd.read_csv("timeseries.csv")
48
+ print(df.head())
49
+ ```