Feed More Data (STFT) #24

Closed
opened 2024-10-21 12:16:09 +00:00 by nuluh · 0 comments
nuluh commented 2024-10-21 12:16:09 +00:00 (Migrated from github.com)

Issue

Current approach processes only the TEST1 data for each damage case, resulting in STFT files like stft_data1_1.csv containing data solely from D1_TEST01_01.csv. This excludes data from TEST2 to TEST5, preventing comprehensive analysis across all test runs.

Solution Overview

To achieve the goal, I need to:

  1. Iterate Over All Test Runs:

    • For each damage case, process all test runs (TEST1 to TEST5).
  2. Perform STFT on Each Test Run:

    • Apply the STFT to each test run's vibration data.
  3. Aggregate STFT Results:

    • Concatenate the STFT results from all test runs vertically to form a single DataFrame per damage case and sensor.
  4. Export Aggregated STFT Data:

    • Save the aggregated STFT DataFrame to a CSV file with the appropriate naming convention.
## Issue Current approach processes only the `TEST1` data for each damage case, resulting in STFT files like `stft_data1_1.csv` containing data solely from `D1_TEST01_01.csv`. This excludes data from `TEST2` to `TEST5`, preventing comprehensive analysis across all test runs. ## Solution Overview To achieve the goal, I need to: 1. **Iterate Over All Test Runs:** - For each damage case, process all test runs (`TEST1` to `TEST5`). 2. **Perform STFT on Each Test Run:** - Apply the STFT to each test run's vibration data. 3. **Aggregate STFT Results:** - Concatenate the STFT results from all test runs vertically to form a single DataFrame per damage case and sensor. 4. **Export Aggregated STFT Data:** - Save the aggregated STFT DataFrame to a CSV file with the appropriate naming convention.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: nuluh/thesis#24