measur-tools-suite 1.0.11-beta.47 → 1.0.11-beta.49
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/EMSCRIPTEN_BINDINGS_CHANGES.md +15 -0
- package/README.md +2 -2
- package/ROADMAP.md +21 -1
- package/bin/package.json +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Emscripten Bindings Changes
|
|
2
|
+
|
|
3
|
+
The following table summarizes the changes made to the Emscripten bindings in the MEASUR Tools Suite. These changes are part of an ongoing effort to improve the usability and maintainability of the codebase.
|
|
4
|
+
|
|
5
|
+
## WallLosses class
|
|
6
|
+
|
|
7
|
+
| Previous Signature | Updated Signature |
|
|
8
|
+
| ------------------ | --------------------- |
|
|
9
|
+
| getConditionFactor | shapeFactor |
|
|
10
|
+
| getID | ID |
|
|
11
|
+
| getHeatLoss | totalHeatLoss |
|
|
12
|
+
| getSurface | surfaceDescription |
|
|
13
|
+
| setConditionFactor | setShapeFactor |
|
|
14
|
+
| setSurface | setSurfaceDescription |
|
|
15
|
+
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# MEASUR Tools Suite
|
|
2
2
|
|
|
3
|
-
## Update (
|
|
3
|
+
## Update (08/25/2025)
|
|
4
4
|
|
|
5
|
-
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).
|
|
5
|
+
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). As the codebase is refactored, some Emscripten bindings will change. A summary of these changes can be found in the [Emscripten Bindings Changes](EMSCRIPTEN_BINDINGS_CHANGES.md) document.
|
|
6
6
|
|
|
7
7
|
## About
|
|
8
8
|
|
package/ROADMAP.md
CHANGED
|
@@ -46,7 +46,7 @@ This document provides an overview of the refactoring and documentation efforts
|
|
|
46
46
|
- [ ] Create `README.md` file to explain the purpose and functionality
|
|
47
47
|
- [ ] Update project `README.md` to reflect the new structure and provide an overview of each module
|
|
48
48
|
- [ ] Create global constants header file and refactor existing code to use it
|
|
49
|
-
- [
|
|
49
|
+
- [x] Create `constants.h` file
|
|
50
50
|
- [ ] Move existing constants from various modules into `constants.h`
|
|
51
51
|
- [ ] Update all modules to include `constants.h` where necessary
|
|
52
52
|
- [ ] Document the purpose and usage of each constant in `constants.h`
|
|
@@ -85,3 +85,23 @@ This document provides an overview of the refactoring and documentation efforts
|
|
|
85
85
|
- [ ] Refactor & document `Waste Water Assessments` module
|
|
86
86
|
- [ ] Refactor & document `Energy Treasure Hunt` module
|
|
87
87
|
- [ ] Refactor & document `Simple Equipment and Property Calculators` module
|
|
88
|
+
- [ ] Refactor & document `processHeat/losses`
|
|
89
|
+
- [ ] Atmosphere
|
|
90
|
+
- [ ] AuxiliaryPower
|
|
91
|
+
- [ ] EnergyInputEAF
|
|
92
|
+
- [ ] EnergyInputExhaustGasLosses
|
|
93
|
+
- [ ] ExhaustGasEAF
|
|
94
|
+
- [ ] FixtureLosses
|
|
95
|
+
- [ ] GasCoolingLosses
|
|
96
|
+
- [ ] GasFlueGasMaterial
|
|
97
|
+
- [ ] GasLoadChargeMaterial
|
|
98
|
+
- [ ] LeakageLosses
|
|
99
|
+
- [ ] LiquidCoolingLosses
|
|
100
|
+
- [ ] LiquidLoadChargeMaterial
|
|
101
|
+
- [ ] OpeningLosses
|
|
102
|
+
- [ ] SlagOtherMaterialLosses
|
|
103
|
+
- [ ] SolidLiquidFlueGasMaterial
|
|
104
|
+
- [ ] SolidLoadChargeMaterial
|
|
105
|
+
- [x] WallLosses
|
|
106
|
+
- [ ] WaterAssessment
|
|
107
|
+
- [ ] WaterCoolingLosses
|
package/bin/package.json
CHANGED