From ef5e5c616c9919110cc00856dd5b6aaefbc3b240 Mon Sep 17 00:00:00 2001 From: Clgould99 <155326967+Clgould99@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:12:18 -0700 Subject: [PATCH] Update README.md rough draft of the arch tree --- README.md | 36 ++++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9a8b5d..c252c04 100644 --- a/README.md +++ b/README.md @@ -50,16 +50,32 @@ Lastly, our analysis.py module offers a suite of tools for conducting Principal ## Architecture ### - . - ├── alfred - │ ├── etl.py - │ └── vis.py - | | - ├── doc - │ ├── test_main.py - │ └── test_helper.py - ├── README.md - └── setup.py + alfred/ + ├── analysis.py + ├── etl.py + ├── vis.py + └── data/ + │ ├── test_data.zip + │ ├── KCM-Raw-Data.zip + │ ├── sorted_test_data/ + │ ├── unsorted_test_data/ + │ │ └── incomplete/ + │ └── unzipped_test_data/ + └── tests/ + ├──test_vis.py + ├──test_analysis.py + └── unzipped_test_data/ test_etl.py + examples/ + ├── Example_notebook.ipynbb + └── example_data/ + └── KCM-Raw-Data.zip + doc/ + ├── diagram_battery layout.pdf + ├── CHEME 546 final presentation.pdf + └── Component Specs/ + ├── Data_Breakdown.md + ├── Use_Cases.txt + └── Use_Cases.md