-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Tageweise Integration
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 14 Jahren, 6 Monaten von Rudolf Kohler aktualisiert.
-
AutorBeiträge
-
Mai 19, 2010 um 5:43 pm Uhr #12562Rudolf KohlerMitglied
Ich habe äquidistante Messreihen mehrerer Parameter (Abwassermengen) über mehrere Wochen in FlexPro dargestellt.
Gibt es eine Möglichkeit, die Werte über Tage zu integrieren, sprich wieviel Abwasser ist pro Tag angefallen? Und dies möglichst automatisch?Danke
RudolfMai 19, 2010 um 5:43 pm Uhr #8225Rudolf KohlerMitgliedIch habe äquidistante Messreihen mehrerer Parameter (Abwassermengen) über mehrere Wochen in FlexPro dargestellt.
Gibt es eine Möglichkeit, die Werte über Tage zu integrieren, sprich wieviel Abwasser ist pro Tag angefallen? Und dies möglichst automatisch?Danke
RudolfMai 19, 2010 um 6:31 pm Uhr #8907Bernhard KantzTeilnehmerThis is possible with the FPScript functions ValuesInInterval and Integral. With the ValuesInInterval function you calculate the values of one day. After that you can calculate the area under the curve using the function or the Area under Curve analysis object.
Example:
Integral(Data[ValuesInInterval(data.x, '19.05.2010 00:00:00', '19.05.2010 23:59:59')])[-1]
If you want to calculate the area under the curve for different days you could add a loop and collect the results in a variable.
Dim resY, resX, lastDate Dim firstDate = data.x[0] // data is the name of the signal firstDate = Date(Month(firstDate), Day(firstDate), Year(firstDate)) Do lastDate = firstDate + '24:00:00' resY := Integral(Data[ValuesInInterval(data.x, firstDate, lastDate)])[-1] resX := firstDate firstDate = lastDate While lastDate < data.x[-1] Signal(resY, resX)
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.