measur-tools-suite 1.0.11-beta.28 → 1.0.11-beta.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/ROADMAP.md +82 -0
- package/bin/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
MEASUR Tools Suite
|
|
2
2
|
---------------
|
|
3
3
|
|
|
4
|
-
##
|
|
4
|
+
## Update (07/03/2025)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
The MEASUR Tools Suite is currently undergoing a major update to improve usability and maintainability. This includes a refactoring of the codebase to follow consistent practices, better organization, and enhanced documentation around the engineering aspects of the calculations. To follow the progress of this update, please refer to the [Roadmap](ROADMAP.md).
|
|
7
7
|
|
|
8
8
|
## About
|
|
9
9
|
|
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Roadmap
|
|
2
|
+
|
|
3
|
+
This document provides an overview of the refactoring and documentation efforts being undertaken to improve the codebase and enhance the understanding of its functionality.
|
|
4
|
+
|
|
5
|
+
## Tasks
|
|
6
|
+
|
|
7
|
+
- [ ] Reorganize project directories to mirror the module structure
|
|
8
|
+
- [ ] `Pumping System Assessments`
|
|
9
|
+
- [ ] Create directory and migrate relevant files
|
|
10
|
+
- [ ] Create associated namespace
|
|
11
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
12
|
+
- [ ] `Process Heating Assessments`
|
|
13
|
+
- [ ] Create directory and migrate relevant files
|
|
14
|
+
- [ ] Create associated namespace
|
|
15
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
16
|
+
- [ ] `Process Cooling Assessments`
|
|
17
|
+
- [ ] Create directory and migrate relevant files
|
|
18
|
+
- [ ] Create associated namespace
|
|
19
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
20
|
+
- [ ] `Fan System Assessments`
|
|
21
|
+
- [ ] Create directory and migrate relevant files
|
|
22
|
+
- [ ] Create associated namespace
|
|
23
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
24
|
+
- [ ] `Steam System Assessments`
|
|
25
|
+
- [ ] Create directory and migrate relevant files
|
|
26
|
+
- [ ] Create associated namespace
|
|
27
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
28
|
+
- [ ] `Compressed Air Assessments`
|
|
29
|
+
- [ ] Create directory and migrate relevant files
|
|
30
|
+
- [ ] Create associated namespace
|
|
31
|
+
- [ ] `Energy Treasure Hunt Module`
|
|
32
|
+
- [ ] Create directory and migrate relevant files
|
|
33
|
+
- [ ] Create associated namespace
|
|
34
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
35
|
+
- [ ] `Simple Equipment and Property Calculators`
|
|
36
|
+
- [ ] Create directory and migrate relevant files
|
|
37
|
+
- [ ] Create associated namespace
|
|
38
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
39
|
+
- [ ] `Waste Water Assessments`
|
|
40
|
+
- [ ] Create directory and migrate relevant files
|
|
41
|
+
- [ ] Create associated namespace
|
|
42
|
+
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
43
|
+
- [ ] Update project `README.md` to reflect the new structure and provide an overview of each module
|
|
44
|
+
- [ ] Create global constants header file and refactor existing code to use it
|
|
45
|
+
- [ ] Create `constants.h` file
|
|
46
|
+
- [ ] Move existing constants from various modules into `constants.h`
|
|
47
|
+
- [ ] Update all modules to include `constants.h` where necessary
|
|
48
|
+
- [ ] Document the purpose and usage of each constant in `constants.h`
|
|
49
|
+
- [ ] Refactor & document `Pump System Assessments` module
|
|
50
|
+
- [ ] Refactor & document `Process Heating Assessments` module
|
|
51
|
+
- [ ] Refactor & document `Process Cooling Assessments` module
|
|
52
|
+
- [ ] Refactor & document `Fan System Assessments` module
|
|
53
|
+
- [ ] Refactor & document `fan203.h`
|
|
54
|
+
- [x] Rename header and associated source files to `fan203.h` and `fan203.cpp`
|
|
55
|
+
- [x] Refactor & document `FanRatedInfo` class
|
|
56
|
+
- [ ] Refactor & document `BaseGasDensity` class
|
|
57
|
+
- [ ] Refactor & document `PlaneData` class
|
|
58
|
+
- [ ] Refactor & document `Fan203` class
|
|
59
|
+
- [ ] Refactor `FanCurve.h`
|
|
60
|
+
- [ ] Rename header and associated source files to `fan_curve.h` and `fan_curve.cpp`
|
|
61
|
+
- [ ] Refactor & document `FanCurveType` enum
|
|
62
|
+
- [ ] Refactor & document `ResultData` class
|
|
63
|
+
- [ ] Refactor & document `FanCurveData` class
|
|
64
|
+
- [ ] Refactor & document `FanCurve` class
|
|
65
|
+
- [ ] Refactor `FanResult.h`
|
|
66
|
+
- [ ] Rename header and associated source files to `fan_result.h` and `fan_result.cpp`
|
|
67
|
+
- [ ] Refactor & document `Input` struct
|
|
68
|
+
- [ ] Refactor & document `FieldDataModified` struct
|
|
69
|
+
- [ ] Refactor & document `FieldDataBaseline` struct
|
|
70
|
+
- [ ] Refactor & document `FanResult` class
|
|
71
|
+
- [ ] Refactor & document `Planar.h`
|
|
72
|
+
- [ ] Rename header and associated source files to `planar.h` and `planar.cpp`
|
|
73
|
+
- [ ] Refactor & document `VelocityPressureTraverseData` class
|
|
74
|
+
- [ ] Refactor & document `Planar` class
|
|
75
|
+
- [ ] Refactor & document `FlangePlane` class
|
|
76
|
+
- [ ] Refactor & document `TraversePlane` class
|
|
77
|
+
- [ ] Refactor & document `MstPlane` class
|
|
78
|
+
- [ ] Refactor & document `Steam System Assessments` module
|
|
79
|
+
- [ ] Refactor & document `Compressed Air Assessments` module
|
|
80
|
+
- [ ] Refactor & document `Energy Treasure Hunt` module
|
|
81
|
+
- [ ] Refactor & document `Simple Equipment and Property Calculators` module
|
|
82
|
+
- [ ] Refactor & document `Waste Water Assessments` module
|
package/bin/package.json
CHANGED