-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added data-point, measurement and simulation-channel module files
- Loading branch information
Philipp Schmurr
committed
Aug 9, 2024
1 parent
23d100f
commit adc5e9d
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Data point module | ||
|
||
A data point is a certain value in the energy context. | ||
|
||
## Requirements | ||
|
||
### 1) Unit | ||
|
||
### 2) Value range | ||
|
||
### 3) Context | ||
E.g. volume flow rate (a volume flow rate of water should not be compared to volume flow rate of Methane for example.) | ||
Moreover, is it an absolute temperature or a temperature difference. | ||
part of that could be solved with QUDT:quantityKind | ||
|
||
### 4) Data type | ||
what is the computer representation of the values e.g. float, double, int, string, multidimensional? | ||
|
||
|
||
### 5) Description | ||
What is this data point used for | ||
|
||
### 6) Data precision | ||
How many digits will be provided realiably |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Measurment module | ||
|
||
A data point that maps to a sensor and a point in time (optionally also the calibration). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Simulation channel module | ||
|
||
A data point combined with a starting value. | ||
Can be used to describe both inputs and outputs of a model. | ||
|
||
It is either time or event based. |