diff --git a/.env.example b/.env.example index 7786f008..9f2234cf 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,19 @@ -APP_PORT=3000 -APP_HOST=localhost -APP_NAME=MyApp -POSTGRES_HOST=db.example.com +# Port number where the backend server will run +BACKEND_PORT=3333 +# Hostname for the backend server +BACKEND_HOST=localhost +# Name of the backend application +BACKEND_NAME=MyApp +# Hostname for the PostgreSQL database +POSTGRES_HOST=localhost +# Port number for the PostgreSQL database POSTGRES_PORT=5432 -POSTGRES_USER=myuser -POSTGRES_PASSWORD=mypassword +# Username for accessing the PostgreSQL database +POSTGRES_USER=amos +# Password for the PostgreSQL database user +POSTGRES_PASSWORD=amos +# Name of the PostgreSQL database to be used +POSTGRES_DB=amos + +# Full database connection URL constructed from the above PostgreSQL variables used for Prisma +DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} \ No newline at end of file diff --git a/apps/backend/src/app/app.module.ts b/apps/backend/src/app/app.module.ts index 623c3efb..d4b06d72 100644 --- a/apps/backend/src/app/app.module.ts +++ b/apps/backend/src/app/app.module.ts @@ -10,7 +10,7 @@ import { validateConfig } from './config/validation'; imports: [ ConfigModule.forRoot({ isGlobal: true, - envFilePath: ['apps/backend/.env'], + envFilePath: ['.env'], validate: validateConfig, }), ], diff --git a/apps/backend/src/app/config/classes/environment.class.ts b/apps/backend/src/app/config/classes/environment.class.ts index 028ec33b..cc200108 100644 --- a/apps/backend/src/app/config/classes/environment.class.ts +++ b/apps/backend/src/app/config/classes/environment.class.ts @@ -16,7 +16,7 @@ export class EnvironmentVariables implements IEnvironmentVariables { */ @IsDefined() @IsNumber() - APP_PORT: number; + BACKEND_PORT?: number; /** * Application host for the backend @@ -26,7 +26,7 @@ export class EnvironmentVariables implements IEnvironmentVariables { @IsDefined() @IsString() @MinLength(1) - APP_HOST: string; + BACKEND_HOST?: string; /** * Application name for the backend @@ -36,7 +36,7 @@ export class EnvironmentVariables implements IEnvironmentVariables { @IsDefined() @IsString() @MinLength(1) - APP_NAME: string; + BACKEND_NAME?: string; /* DATABASE */ diff --git a/apps/backend/src/app/config/interfaces/environment.interface.ts b/apps/backend/src/app/config/interfaces/environment.interface.ts index 88939ceb..ae536355 100644 --- a/apps/backend/src/app/config/interfaces/environment.interface.ts +++ b/apps/backend/src/app/config/interfaces/environment.interface.ts @@ -1,8 +1,8 @@ export interface IEnvironmentVariables { /* APP */ - APP_PORT?: number; - APP_HOST?: string; - APP_NAME?: string; + BACKEND_PORT?: number; + BACKEND_HOST?: string; + BACKEND_NAME?: string; /* DATABASE */ POSTGRES_HOST?: string; POSTGRES_PORT?: number; diff --git a/apps/backend/src/app/config/validation.ts b/apps/backend/src/app/config/validation.ts index 4d352ebf..ab522d51 100644 --- a/apps/backend/src/app/config/validation.ts +++ b/apps/backend/src/app/config/validation.ts @@ -36,9 +36,9 @@ export const validateConfig = (config: IEnvironmentVariables): BackendConfig => const generateConfig = (config: IEnvironmentVariables): BackendConfig => plainToInstance(BackendConfig, { app: { - port: config.APP_PORT || 3000, - host: config.APP_HOST || 'localhost', - name: config.APP_NAME, + port: config.BACKEND_PORT || 3333, + host: config.BACKEND_HOST || 'localhost', + name: config.BACKEND_NAME, }, database: { host: config.POSTGRES_HOST, diff --git a/docker-compose.yml b/docker-compose.yml index 4eac957d..26852607 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,12 +8,14 @@ services: volumes: - postgres:/var/lib/postgresql/data restart: unless-stopped + env_file: + - .env ports: - '5432:5432' environment: - POSTGRES_USER: amos - POSTGRES_PASSWORD: amos - POSTGRES_DB: amos + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + POSTGRES_DB: ${POSTGRES_DB} networks: - db_network - backend_network @@ -36,11 +38,11 @@ services: dockerfile: apps/backend/Dockerfile restart: unless-stopped ports: - - '3000:3000' + - '${BACKEND_PORT}:${BACKEND_PORT}' networks: - backend_network env_file: - - apps/backend/.env + - .env frontend: depends_on: diff --git a/package.json b/package.json index 2db9732c..6ce9d901 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "@nestjs/platform-express": "^10.0.2", "@nx/angular": "18.3.3", "@siemens/ix": "^2.2.1", + "@prisma/client": "^5.13.0", "@siemens/ix-angular": "^2.2.1", "@siemens/ix-icons": "^2.1.0", "axios": "^1.6.8", @@ -36,7 +37,6 @@ "dotenv": "^16.4.5", "lodash": "^4.17.21", "postgres": "^3.4.4", - "prisma": "^5.13.0", "reflect-metadata": "^0.1.13", "rxjs": "~7.8.0", "ts-enum-util": "^4.1.0", @@ -97,6 +97,7 @@ "lint-staged": "^15.2.2", "nx": "18.3.4", "prettier": "^3.2.5", + "prisma": "^5.13.0", "stylelint": "^16.4.0", "stylelint-config-recess-order": "^5.0.1", "stylelint-config-standard": "^36.0.0", @@ -107,5 +108,8 @@ "typescript": "~5.4.5", "webpack-cli": "^5.1.4" }, + "prisma": { + "seed": "ts-node prisma/seed.ts" + }, "packageManager": "pnpm@8.15.1+sha512.831cf4c5f8b8374af71521d4d153db49d7086de615c2af7cb5e9d7eb8ba630ddac46fea495d643e552ef2e68a3aa99a3e5e9fbee8696702967504df5c59cb273" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 67e5d025..c4fd93a8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -47,6 +47,9 @@ dependencies: '@nx/angular': specifier: 18.3.3 version: 18.3.3(@angular-devkit/build-angular@17.3.7)(@angular-devkit/core@17.3.7)(@angular-devkit/schematics@17.3.7)(@schematics/angular@17.3.7)(@swc-node/register@1.9.1)(@swc/core@1.5.5)(@types/node@20.12.7)(eslint@8.56.0)(nx@18.3.4)(rxjs@7.8.1)(typescript@5.4.5)(webpack-cli@5.1.4) + '@prisma/client': + specifier: ^5.13.0 + version: 5.13.0(prisma@5.13.0) '@siemens/ix': specifier: ^2.2.1 version: 2.2.1(@popperjs/core@2.11.8)(@siemens/ix-icons@2.1.0)(bootstrap@5.2.3) @@ -74,9 +77,6 @@ dependencies: postgres: specifier: ^3.4.4 version: 3.4.4 - prisma: - specifier: ^5.13.0 - version: 5.13.0 reflect-metadata: specifier: ^0.1.13 version: 0.1.14 @@ -250,6 +250,9 @@ devDependencies: prettier: specifier: ^3.2.5 version: 3.2.5 + prisma: + specifier: ^5.13.0 + version: 5.13.0 stylelint: specifier: ^16.4.0 version: 16.5.0(typescript@5.4.5) @@ -5518,13 +5521,24 @@ packages: resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} dev: false + /@prisma/client@5.13.0(prisma@5.13.0): + resolution: {integrity: sha512-uYdfpPncbZ/syJyiYBwGZS8Gt1PTNoErNYMuqHDa2r30rNSFtgTA/LXsSk55R7pdRTMi5pHkeP9B14K6nHmwkg==} + engines: {node: '>=16.13'} + requiresBuild: true + peerDependencies: + prisma: '*' + peerDependenciesMeta: + prisma: + optional: true + dependencies: + prisma: 5.13.0 + dev: false + /@prisma/debug@5.13.0: resolution: {integrity: sha512-699iqlEvzyCj9ETrXhs8o8wQc/eVW+FigSsHpiskSFydhjVuwTJEfj/nIYqTaWFYuxiWQRfm3r01meuW97SZaQ==} - dev: false /@prisma/engines-version@5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b: resolution: {integrity: sha512-AyUuhahTINGn8auyqYdmxsN+qn0mw3eg+uhkp8zwknXYIqoT3bChG4RqNY/nfDkPvzWAPBa9mrDyBeOnWSgO6A==} - dev: false /@prisma/engines@5.13.0: resolution: {integrity: sha512-hIFLm4H1boj6CBZx55P4xKby9jgDTeDG0Jj3iXtwaaHmlD5JmiDkZhh8+DYWkTGchu+rRF36AVROLnk0oaqhHw==} @@ -5534,7 +5548,6 @@ packages: '@prisma/engines-version': 5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b '@prisma/fetch-engine': 5.13.0 '@prisma/get-platform': 5.13.0 - dev: false /@prisma/fetch-engine@5.13.0: resolution: {integrity: sha512-Yh4W+t6YKyqgcSEB3odBXt7QyVSm0OQlBSldQF2SNXtmOgMX8D7PF/fvH6E6qBCpjB/yeJLy/FfwfFijoHI6sA==} @@ -5542,13 +5555,11 @@ packages: '@prisma/debug': 5.13.0 '@prisma/engines-version': 5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b '@prisma/get-platform': 5.13.0 - dev: false /@prisma/get-platform@5.13.0: resolution: {integrity: sha512-B/WrQwYTzwr7qCLifQzYOmQhZcFmIFhR81xC45gweInSUn2hTEbfKUPd2keAog+y5WI5xLAFNJ3wkXplvSVkSw==} dependencies: '@prisma/debug': 5.13.0 - dev: false /@rollup/rollup-android-arm-eabi@4.17.2: resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} @@ -12159,7 +12170,6 @@ packages: requiresBuild: true dependencies: '@prisma/engines': 5.13.0 - dev: false /proc-log@3.0.0: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} diff --git a/prisma/README.md b/prisma/README.md new file mode 100644 index 00000000..c1e95380 --- /dev/null +++ b/prisma/README.md @@ -0,0 +1,66 @@ +# Docs + +### Setup 🛠 + +Install Prisma + +```sh +pnpm add -D @prisma/cli +``` + +Install the Prisma Client + +```sh +pnpm add prisma +``` + +Initialize Prisma + +```sh +pnpx prisma init +``` + +generating the Prisma Client + +```sh +pnpx prisma generate +``` + +### Usage 🚀 + +First you need to apply the migrations to your database with the following command: + +```sh +pnpx prisma migrate dev +``` + +Then u can use the Prisma Client in your code to access your database: + +```ts +import { PrismaClient } from '@prisma/client'; + +const prisma = new PrismaClient(); + +async function main() { + const allUsers = await prisma.user.findMany(); + console.log(allUsers); +} +``` + +### Seeding the database 🌱 + +If you want to seed the database with some initial data, you can use the following command: + +```sh +pnpx prisma db seed +``` + +### Inspecting the database 🕵️‍♂️ + +If you want to inspect the database, you can use Prisma Studio. You can start it with the following command: + +```sh +pnpx prisma studio +``` + +Or you can also use alternative tools like [DataGrip](https://www.jetbrains.com/datagrip/) ... diff --git a/prisma/demo_data/PUMP-002_Environment_20240422-220000000_20240423-220000000.json b/prisma/demo_data/PUMP-002_Environment_20240422-220000000_20240423-220000000.json new file mode 100644 index 00000000..96d55709 --- /dev/null +++ b/prisma/demo_data/PUMP-002_Environment_20240422-220000000_20240423-220000000.json @@ -0,0 +1,542 @@ +[ + { + "Pressure_qc": 1, + "Temperature": 2.19, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 69, + "Pressure": 102, + "_time": "2024-04-22T22:06:03.695Z" + }, + { + "Pressure_qc": 1, + "Temperature": 1.29, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 76, + "Pressure": 102, + "_time": "2024-04-22T22:26:03.696Z" + }, + { + "Pressure_qc": 1, + "Temperature": 1.29, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 76, + "Pressure": 102, + "_time": "2024-04-22T22:46:03.701Z" + }, + { + "Pressure_qc": 1, + "Temperature": 1.29, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 76, + "Pressure": 102, + "_time": "2024-04-22T23:06:03.781Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.08, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.9, + "_time": "2024-04-22T23:26:03.757Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.08, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.9, + "_time": "2024-04-22T23:46:03.755Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.08, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.9, + "_time": "2024-04-23T00:06:03.734Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.3, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 81, + "Pressure": 101.9, + "_time": "2024-04-23T00:26:03.759Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.3, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 81, + "Pressure": 101.9, + "_time": "2024-04-23T00:46:03.732Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.3, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 81, + "Pressure": 101.9, + "_time": "2024-04-23T01:06:03.806Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.51, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 79, + "Pressure": 101.9, + "_time": "2024-04-23T01:26:03.702Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.51, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 79, + "Pressure": 101.9, + "_time": "2024-04-23T01:46:03.713Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.51, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 79, + "Pressure": 101.9, + "_time": "2024-04-23T02:06:03.756Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.58, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 78, + "Pressure": 101.8, + "_time": "2024-04-23T02:26:03.766Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.58, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 78, + "Pressure": 101.8, + "_time": "2024-04-23T02:46:03.696Z" + }, + { + "Pressure_qc": 1, + "Temperature": -0.58, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 78, + "Pressure": 101.8, + "_time": "2024-04-23T03:06:03.778Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.37, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.8, + "_time": "2024-04-23T03:26:04.239Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.37, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.8, + "_time": "2024-04-23T03:46:03.706Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.37, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 80, + "Pressure": 101.8, + "_time": "2024-04-23T04:06:03.762Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.78, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 85, + "Pressure": 101.8, + "_time": "2024-04-23T04:26:03.806Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.78, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 85, + "Pressure": 101.8, + "_time": "2024-04-23T04:46:03.696Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.78, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 85, + "Pressure": 101.8, + "_time": "2024-04-23T05:06:03.700Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.71, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 84, + "Pressure": 101.8, + "_time": "2024-04-23T05:26:03.713Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.71, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 84, + "Pressure": 101.8, + "_time": "2024-04-23T05:46:03.793Z" + }, + { + "Pressure_qc": 1, + "Temperature": -1.71, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 84, + "Pressure": 101.8, + "_time": "2024-04-23T06:06:03.732Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.35, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 75, + "Pressure": 101.8, + "_time": "2024-04-23T06:26:03.754Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.35, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 75, + "Pressure": 101.8, + "_time": "2024-04-23T06:46:03.740Z" + }, + { + "Pressure_qc": 1, + "Temperature": 0.35, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 75, + "Pressure": 101.8, + "_time": "2024-04-23T07:06:03.831Z" + }, + { + "Pressure_qc": 1, + "Temperature": 3.11, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 63, + "Pressure": 101.8, + "_time": "2024-04-23T07:26:03.882Z" + }, + { + "Pressure_qc": 1, + "Temperature": 3.11, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 63, + "Pressure": 101.8, + "_time": "2024-04-23T07:46:03.850Z" + }, + { + "Pressure_qc": 1, + "Temperature": 3.11, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 63, + "Pressure": 101.8, + "_time": "2024-04-23T08:06:03.806Z" + }, + { + "Pressure_qc": 1, + "Temperature": 4.97, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 59, + "Pressure": 101.7, + "_time": "2024-04-23T08:26:03.755Z" + }, + { + "Pressure_qc": 1, + "Temperature": 4.97, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 59, + "Pressure": 101.7, + "_time": "2024-04-23T08:46:03.750Z" + }, + { + "Pressure_qc": 1, + "Temperature": 4.97, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 59, + "Pressure": 101.7, + "_time": "2024-04-23T09:06:03.782Z" + }, + { + "Pressure_qc": 1, + "Temperature": 6.96, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.7, + "_time": "2024-04-23T09:26:03.797Z" + }, + { + "Pressure_qc": 1, + "Temperature": 6.96, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.7, + "_time": "2024-04-23T09:46:03.740Z" + }, + { + "Pressure_qc": 1, + "Temperature": 6.96, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.7, + "_time": "2024-04-23T10:06:03.802Z" + }, + { + "Pressure_qc": 1, + "Temperature": 7.69, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 52, + "Pressure": 101.7, + "_time": "2024-04-23T10:26:05.110Z" + }, + { + "Pressure_qc": 1, + "Temperature": 7.69, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 52, + "Pressure": 101.7, + "_time": "2024-04-23T10:46:04.455Z" + }, + { + "Pressure_qc": 1, + "Temperature": 7.69, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 52, + "Pressure": 101.7, + "_time": "2024-04-23T11:06:04.552Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.02, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.6, + "_time": "2024-04-23T11:26:04.507Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.02, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.6, + "_time": "2024-04-23T11:46:04.491Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.02, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.6, + "_time": "2024-04-23T12:06:13.738Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.64, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 48, + "Pressure": 101.5, + "_time": "2024-04-23T12:26:08.712Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.64, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 48, + "Pressure": 101.5, + "_time": "2024-04-23T12:46:08.760Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.64, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 48, + "Pressure": 101.5, + "_time": "2024-04-23T13:06:08.797Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.48, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.5, + "_time": "2024-04-23T13:26:08.770Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.48, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.5, + "_time": "2024-04-23T13:46:08.732Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.48, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.5, + "_time": "2024-04-23T14:06:08.704Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.06, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.4, + "_time": "2024-04-23T14:26:08.708Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.06, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.4, + "_time": "2024-04-23T14:46:08.710Z" + }, + { + "Pressure_qc": 1, + "Temperature": 10.06, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 47, + "Pressure": 101.4, + "_time": "2024-04-23T15:06:08.707Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.24, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.4, + "_time": "2024-04-23T15:26:08.719Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.24, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.4, + "_time": "2024-04-23T15:46:08.700Z" + }, + { + "Pressure_qc": 1, + "Temperature": 9.24, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 49, + "Pressure": 101.4, + "_time": "2024-04-23T16:06:08.777Z" + }, + { + "Pressure_qc": 1, + "Temperature": 8.53, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.4, + "_time": "2024-04-23T16:26:08.735Z" + }, + { + "Pressure_qc": 1, + "Temperature": 8.53, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.4, + "_time": "2024-04-23T16:46:08.709Z" + }, + { + "Pressure_qc": 1, + "Temperature": 8.53, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 54, + "Pressure": 101.4, + "_time": "2024-04-23T17:06:08.761Z" + }, + { + "Pressure_qc": 1, + "Temperature": 7.93, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 58, + "Pressure": 101.3, + "_time": "2024-04-23T17:26:08.726Z" + }, + { + "Pressure_qc": 1, + "Temperature": 7.93, + "Temperature_qc": 1, + "Humidity_qc": 1, + "Humidity": 58, + "Pressure": 101.3, + "_time": "2024-04-23T17:46:08.722Z" + } +] diff --git a/prisma/demo_data/PUMP-002_PumpData_20240422-220000000_20240423-220000000.json b/prisma/demo_data/PUMP-002_PumpData_20240422-220000000_20240423-220000000.json new file mode 100644 index 00000000..d97408e2 --- /dev/null +++ b/prisma/demo_data/PUMP-002_PumpData_20240422-220000000_20240423-220000000.json @@ -0,0 +1,40002 @@ +[ + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-22T22:00:01.334Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-22T22:00:11.316Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-22T22:00:21.346Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-22T22:00:31.351Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-22T22:00:41.317Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-22T22:00:51.362Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T22:01:01.322Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T22:01:11.324Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-22T22:01:21.319Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-22T22:01:31.358Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-22T22:01:41.336Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-22T22:01:51.327Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:01.351Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:11.370Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:21.334Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:31.336Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:41.322Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:02:51.329Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:01.355Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:11.329Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:21.323Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:31.391Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:41.327Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:03:51.354Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:01.334Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:11.349Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:21.334Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:31.327Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:41.334Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:04:51.328Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:01.374Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:11.344Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:21.338Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:31.332Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:41.330Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:05:51.357Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:01.438Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:11.347Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:21.328Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:31.352Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:41.339Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:06:51.336Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:01.347Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:11.332Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:21.336Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:31.341Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:41.338Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:07:51.345Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:01.348Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:11.352Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:21.367Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:31.354Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:41.350Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:08:51.347Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:01.353Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:11.359Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:21.361Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:31.349Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:41.350Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:09:51.359Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:01.395Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:11.407Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:21.390Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:31.402Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:41.396Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:10:51.398Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:01.430Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:11.405Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:21.402Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:31.409Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:41.418Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:11:51.407Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:01.495Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:11.446Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:21.456Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:31.450Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:41.454Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:12:51.457Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:01.463Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:11.456Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:21.464Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:31.463Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:41.468Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:13:51.463Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:01.488Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:11.470Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:21.466Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:31.469Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:41.465Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:14:51.464Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:01.558Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:11.500Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:21.476Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:31.478Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:41.482Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:15:51.508Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:01.483Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:11.471Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:21.498Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:31.477Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:41.479Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:16:51.473Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:01.534Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:11.482Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:21.485Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:31.481Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:41.492Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:17:51.485Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:01.495Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:11.495Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:21.501Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:31.482Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:41.481Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:18:51.504Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:01.480Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:11.495Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:21.480Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:31.509Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:41.482Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:19:51.488Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:01.532Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:11.486Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:21.493Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:31.501Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:41.493Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:20:51.516Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:01.501Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:11.511Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:21.521Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:31.670Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:41.505Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:21:51.536Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:01.538Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:11.506Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:21.504Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:31.523Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:41.505Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:22:51.512Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:01.538Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:11.506Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:21.501Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:31.512Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:41.504Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:23:51.508Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:01.537Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:11.513Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:21.511Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:31.523Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:41.513Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:24:51.538Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:01.554Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:11.512Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:21.502Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:31.509Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:41.526Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:25:51.506Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:01.509Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:11.504Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:21.509Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:31.512Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:41.535Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:26:51.520Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:01.523Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:11.521Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:21.510Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:31.510Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:41.536Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:27:51.531Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:01.519Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:11.515Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:21.516Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:31.517Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:41.543Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:28:51.523Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:01.648Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:11.509Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:21.517Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:31.521Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:41.515Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:29:51.518Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:01.585Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:11.512Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:21.514Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:31.517Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:41.528Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:30:51.525Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:01.837Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:11.508Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:21.511Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:31.550Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:41.538Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:31:51.516Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:01.513Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:11.519Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:21.516Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:31.554Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:41.533Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:32:51.524Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:33:01.557Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:33:11.519Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:33:21.526Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:33:31.542Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-22T22:33:41.518Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-22T22:33:51.540Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-22T22:34:01.618Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T22:34:11.576Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T22:34:21.582Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-22T22:34:31.614Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-22T22:34:41.601Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-22T22:34:51.604Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-22T22:35:01.634Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-22T22:35:11.595Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-22T22:35:21.631Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-22T22:35:31.609Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-22T22:35:41.601Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-22T22:35:51.592Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-22T22:36:01.634Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-22T22:36:11.617Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-22T22:36:21.614Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-22T22:36:31.644Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-22T22:36:41.748Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-22T22:36:51.664Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-22T22:37:01.668Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-22T22:37:11.648Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-22T22:37:21.624Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-22T22:37:31.665Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-22T22:37:41.637Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-22T22:37:51.643Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-22T22:38:01.656Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-22T22:38:11.642Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-22T22:38:21.648Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-22T22:38:31.636Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-22T22:38:41.667Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-22T22:38:51.647Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-22T22:39:01.679Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-22T22:39:11.627Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-22T22:39:21.702Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-22T22:39:31.701Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-22T22:39:41.675Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-22T22:39:51.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-22T22:40:01.729Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-22T22:40:11.724Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-22T22:40:21.696Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-22T22:40:31.703Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-22T22:40:41.701Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-22T22:40:51.722Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T22:41:01.728Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T22:41:11.700Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-22T22:41:21.708Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-22T22:41:31.697Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-22T22:41:41.726Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-22T22:41:51.735Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:02.595Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:11.746Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:21.714Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:31.740Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:41.716Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:42:51.764Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:01.724Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:11.723Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:21.690Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:31.718Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:41.717Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:43:51.714Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:01.774Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:11.745Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:21.742Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:31.717Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:41.715Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:44:51.710Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:01.782Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:12.458Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:21.732Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:31.725Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:41.717Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:45:51.989Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:01.781Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:11.737Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:21.730Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:31.756Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:41.744Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:46:51.730Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:01.743Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:11.806Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:21.743Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:31.732Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:41.727Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:47:51.722Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:01.825Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:11.749Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:21.745Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:31.745Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:41.743Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:48:51.769Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:01.761Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:11.801Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:21.762Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:31.775Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:41.759Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:49:51.783Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:01.852Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:11.770Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:21.761Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:31.776Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:41.762Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:50:51.765Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:01.769Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:11.789Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:21.774Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:31.757Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:41.767Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:51:53.767Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:02.900Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:12.806Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:22.804Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:32.808Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:42.807Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:52:52.832Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:02.806Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:12.803Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:22.848Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:32.811Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:42.827Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:53:52.817Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:02.818Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:12.808Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:22.829Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:32.816Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:42.810Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:54:52.815Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:02.786Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:12.818Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:22.823Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:32.816Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:42.824Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:55:52.831Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:02.818Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:12.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:22.822Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:32.813Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:42.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:56:52.822Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:02.838Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:12.839Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:22.828Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:32.820Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:42.823Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:57:52.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:02.872Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:12.821Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:22.852Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:32.834Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:42.849Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:58:52.819Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:02.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:12.854Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:22.818Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:32.837Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:42.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T22:59:52.821Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:03.709Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:13.517Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:23.417Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:33.392Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:43.398Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:00:53.409Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:03.445Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:13.479Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:23.452Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:33.445Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:43.469Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:01:53.469Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:03.468Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:13.469Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:23.465Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:34.359Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:44.087Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:02:54.083Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:04.070Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:14.168Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:24.146Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:34.144Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:44.159Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:03:54.154Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:04.153Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:14.149Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:24.159Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:34.160Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:44.161Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:04:54.136Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:04.770Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:14.311Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:24.315Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:34.315Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:44.313Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:05:54.320Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:04.314Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:14.325Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:24.320Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:34.326Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:44.321Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:06:54.317Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:04.321Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:14.458Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:24.352Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:34.359Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:44.382Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:07:54.353Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:04.364Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:14.367Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:24.669Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:34.386Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:44.385Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:08:54.388Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:04.383Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:14.410Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:24.403Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:34.391Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:44.397Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:09:54.381Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:04.436Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:14.392Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:24.394Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:34.390Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:44.396Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:10:54.591Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:04.422Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:14.428Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:24.442Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:34.419Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:44.429Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:11:54.442Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:04.437Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:14.438Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:24.429Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:34.431Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:44.426Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:12:54.421Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:13:04.434Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:13:14.428Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:13:24.584Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:13:34.438Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-22T23:13:44.439Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-22T23:13:54.434Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-22T23:14:04.443Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T23:14:14.442Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T23:14:24.438Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-22T23:14:34.442Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-22T23:14:44.472Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-22T23:14:54.462Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-22T23:15:04.445Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-22T23:15:14.445Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-22T23:15:24.446Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-22T23:15:34.480Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-22T23:15:44.465Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-22T23:15:54.462Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-22T23:16:04.464Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-22T23:16:14.460Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-22T23:16:24.473Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-22T23:16:34.462Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-22T23:16:44.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-22T23:16:54.516Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-22T23:17:04.511Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-22T23:17:14.521Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-22T23:17:24.504Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-22T23:17:34.509Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-22T23:17:44.500Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-22T23:17:54.541Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-22T23:18:04.502Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-22T23:18:14.517Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-22T23:18:24.524Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-22T23:18:34.500Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-22T23:18:44.505Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-22T23:18:54.518Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-22T23:19:04.498Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-22T23:19:14.867Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-22T23:19:24.545Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-22T23:19:34.595Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-22T23:19:44.571Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-22T23:19:54.576Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-22T23:20:04.623Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-22T23:20:14.576Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-22T23:20:24.580Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-22T23:20:34.570Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-22T23:20:44.578Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-22T23:20:54.576Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T23:21:04.591Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T23:21:14.577Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-22T23:21:24.575Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-22T23:21:34.570Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-22T23:21:44.849Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-22T23:21:54.657Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:04.686Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:14.668Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:24.667Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:34.946Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:44.813Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:22:54.835Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:04.851Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:14.814Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:24.824Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:34.851Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:44.827Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:23:54.829Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:04.847Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:14.835Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:24.827Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:34.843Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:44.839Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:24:54.826Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:04.880Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:14.858Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:24.847Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:34.876Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:44.866Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:25:54.855Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:04.876Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:14.856Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:24.860Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:34.871Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:44.856Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:26:54.872Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:05.300Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:15.301Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:25.308Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:35.320Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:45.320Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:27:55.290Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:05.318Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:15.324Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:25.301Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:35.335Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:45.309Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:28:55.309Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:05.326Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:15.308Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:25.313Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:35.348Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:45.315Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:29:55.318Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:05.344Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:15.319Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:25.313Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:35.332Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:45.335Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:30:55.322Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:05.327Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:15.325Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:25.321Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:35.341Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:45.368Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:31:55.336Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:05.349Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:15.321Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:25.320Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:35.349Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:45.331Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:32:55.321Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:05.365Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:15.331Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:25.325Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:35.435Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:45.350Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:33:55.347Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:05.378Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:15.340Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:25.349Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:35.373Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:45.359Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:34:55.352Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:05.867Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:15.396Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:25.389Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:35.414Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:45.390Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:35:55.389Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:05.621Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:15.609Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:25.583Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:35.602Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:45.585Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:36:55.604Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:05.600Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:15.609Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:25.601Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:35.715Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:45.619Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:37:55.595Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:05.640Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:15.590Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:25.604Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:35.649Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:45.620Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:38:55.640Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:05.634Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:15.658Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:25.642Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:35.639Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:45.621Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:39:55.657Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:05.830Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:15.803Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:25.774Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:35.797Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:45.785Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:40:55.802Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:05.787Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:15.785Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:25.795Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:35.798Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:45.786Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:41:55.786Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:05.786Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:15.779Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:25.777Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:35.940Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:45.920Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:42:55.916Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:05.941Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:15.924Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:25.923Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:35.939Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:45.929Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:43:55.917Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:05.950Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:15.923Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:25.947Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:35.947Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:45.968Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:44:55.935Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:05.984Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:15.965Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:25.925Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:35.949Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:45.931Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:45:55.937Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:05.944Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:15.940Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:25.944Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:35.964Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:45.940Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:46:55.941Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:05.973Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:15.939Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:25.940Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:35.987Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:45.944Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:47:55.942Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:05.990Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:15.948Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:25.975Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:35.969Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:45.944Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:48:55.948Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:05.972Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:15.942Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:25.953Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:35.992Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:45.918Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:49:55.948Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:06.028Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:15.979Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:25.979Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:35.997Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:46.018Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:50:55.971Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:06.033Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:15.989Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:25.978Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:36.022Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:45.986Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:51:55.983Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:05.998Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:15.987Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:26.001Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:36.008Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:45.989Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:52:56.012Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:53:08.558Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:53:16.078Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:53:26.083Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-22T23:53:36.077Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-22T23:53:46.096Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-22T23:53:56.071Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-22T23:54:06.160Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-22T23:54:16.087Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-22T23:54:26.065Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-22T23:54:36.079Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-22T23:54:46.070Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-22T23:54:56.078Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-22T23:55:06.151Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-22T23:55:16.082Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-22T23:55:26.066Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-22T23:55:36.138Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-22T23:55:46.083Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-22T23:55:56.072Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-22T23:56:06.149Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-22T23:56:16.085Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-22T23:56:26.077Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-22T23:56:36.088Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-22T23:56:46.074Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-22T23:56:56.078Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-22T23:57:06.234Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-22T23:57:16.074Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-22T23:57:26.091Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-22T23:57:36.149Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-22T23:57:46.080Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-22T23:57:56.091Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-22T23:58:06.152Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-22T23:58:16.086Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-22T23:58:26.089Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-22T23:58:36.129Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-22T23:58:46.082Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-22T23:58:56.090Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-22T23:59:06.154Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-22T23:59:16.098Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-22T23:59:26.074Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-22T23:59:36.204Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-22T23:59:46.115Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-22T23:59:56.101Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T00:00:06.329Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T00:00:16.139Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T00:00:26.083Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T00:00:36.159Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T00:00:46.139Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T00:00:56.117Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T00:01:06.216Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T00:01:16.089Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T00:01:26.105Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T00:01:36.172Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T00:01:46.094Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T00:01:56.089Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:06.156Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:16.088Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:26.090Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:36.195Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:46.117Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:02:56.129Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:06.159Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:16.113Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:26.128Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:36.180Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:46.110Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:03:56.109Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:06.193Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:16.132Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:26.123Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:36.197Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:46.119Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:04:56.130Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:06.249Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:16.119Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:26.124Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:36.168Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:46.153Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:05:56.120Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:06.196Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:16.128Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:26.124Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:36.165Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:46.124Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:06:56.125Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:06.212Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:16.142Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:26.127Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:36.220Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:46.122Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:07:56.140Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:06.193Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:16.165Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:26.140Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:36.147Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:46.131Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:08:56.122Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:06.156Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:16.138Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:26.133Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:36.164Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:46.143Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:09:56.146Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:06.169Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:16.137Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:26.137Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:36.174Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:46.167Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:10:56.142Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:06.245Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:16.156Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:26.142Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:38.405Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:46.633Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:11:56.628Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:06.700Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:16.689Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:26.650Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:36.733Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:46.764Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:12:56.693Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:06.772Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:16.717Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:26.701Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:36.945Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:46.762Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:13:56.688Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:06.764Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:16.768Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:26.696Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:36.758Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:46.768Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:14:56.718Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:06.806Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:16.789Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:26.716Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:36.966Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:46.733Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:15:56.747Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:06.886Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:16.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:26.742Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:36.793Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:46.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:16:56.735Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:06.802Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:16.763Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:26.749Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:36.791Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:46.776Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:17:56.748Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:06.782Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:16.774Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:26.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:36.848Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:46.793Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:18:56.800Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:06.880Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:16.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:26.815Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:36.907Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:46.834Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:19:56.817Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:06.988Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:16.838Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:26.818Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:36.967Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:46.843Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:20:56.815Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:06.962Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:16.817Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:26.837Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:36.971Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:46.835Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:21:56.838Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:07.015Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:16.827Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:26.871Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:36.938Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:47.096Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:22:57.030Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:07.137Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:17.041Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:27.089Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:39.690Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:47.138Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:23:57.142Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:07.184Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:17.161Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:27.154Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:37.323Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:47.273Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:24:57.281Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:07.445Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:17.311Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:27.284Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:37.487Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:47.416Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:25:57.417Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:07.658Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:17.527Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:27.524Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:37.567Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:47.513Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:26:57.530Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:07.684Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:17.633Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:27.708Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:37.693Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:47.685Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:27:57.699Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:07.724Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:17.688Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:27.705Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:37.773Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:47.697Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:28:57.701Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:07.687Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:17.714Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:27.706Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:37.723Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:47.691Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:29:57.691Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:07.720Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:17.695Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:27.698Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:38.177Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:48.149Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:30:58.147Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:08.151Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:18.147Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:28.154Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:38.217Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:48.146Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:31:58.136Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:08.150Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:18.142Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:28.202Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:38.163Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:48.147Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:32:58.146Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:33:08.158Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:33:18.178Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:33:28.227Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:33:38.165Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T00:33:48.183Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T00:33:58.149Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T00:34:08.232Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T00:34:18.194Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T00:34:28.185Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T00:34:38.185Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T00:34:48.188Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T00:34:58.183Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T00:35:08.230Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T00:35:18.175Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T00:35:28.196Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T00:35:38.229Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T00:35:48.219Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T00:35:58.184Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T00:36:08.203Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T00:36:18.192Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T00:36:28.180Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T00:36:38.208Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T00:36:48.202Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T00:36:58.194Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T00:37:08.201Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T00:37:18.187Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T00:37:28.211Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T00:37:38.212Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T00:37:48.190Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T00:37:58.199Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T00:38:08.208Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T00:38:18.230Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T00:38:28.199Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T00:38:38.191Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T00:38:48.221Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T00:38:58.202Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T00:39:08.217Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T00:39:18.216Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T00:39:28.201Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T00:39:38.216Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T00:39:48.215Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T00:39:58.200Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T00:40:08.224Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T00:40:18.211Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T00:40:28.211Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T00:40:38.209Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T00:40:48.216Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T00:40:58.201Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T00:41:08.211Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T00:41:18.199Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T00:41:28.208Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T00:41:38.224Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T00:41:48.198Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T00:41:58.223Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:08.203Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:18.228Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:28.209Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:38.214Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:48.203Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:42:58.208Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:08.214Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:18.225Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:28.207Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:38.227Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:48.228Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:43:58.207Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:08.240Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:18.209Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:28.214Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:38.219Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:48.217Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:44:58.221Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:08.277Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:18.221Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:28.211Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:38.217Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:48.212Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:45:58.211Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:08.223Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:18.212Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:28.219Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:38.244Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:48.218Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:46:58.219Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:08.224Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:18.244Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:28.247Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:38.272Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:48.223Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:47:58.226Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:08.236Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:18.220Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:28.222Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:38.232Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:48.221Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:48:58.222Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:08.239Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:18.224Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:28.231Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:38.235Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:48.198Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:49:58.225Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:08.285Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:18.357Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:28.269Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:38.301Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:48.272Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:50:58.288Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:08.295Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:18.263Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:28.296Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:38.292Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:48.331Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:51:58.291Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:08.305Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:18.320Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:28.315Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:38.521Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:48.462Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:52:58.477Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:08.490Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:18.467Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:28.472Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:38.478Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:48.480Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:53:58.501Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:09.842Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:19.438Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:29.425Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:39.438Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:49.447Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:54:59.450Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:09.467Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:19.438Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:29.432Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:39.449Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:49.466Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:55:59.439Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:09.430Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:19.442Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:29.452Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:39.430Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:49.433Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:56:59.448Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:09.456Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:19.443Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:29.431Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:39.456Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:49.439Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:57:59.434Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:09.482Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:19.465Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:29.436Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:39.436Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:49.477Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:58:59.437Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:09.446Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:19.459Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:29.448Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:39.443Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:49.452Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T00:59:59.428Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:00:11.186Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:00:20.806Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:00:30.809Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:00:40.850Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:00:50.818Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:01.489Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:10.981Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:20.995Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:30.968Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:40.985Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:01:51.021Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:00.980Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:10.961Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:20.987Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:30.971Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:40.959Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:02:50.969Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:00.982Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:10.984Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:20.968Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:30.998Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:40.996Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:03:50.998Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:00.980Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:11.011Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:21.002Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:30.991Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:41.014Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:04:51.017Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:01.014Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:11.022Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:21.042Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:31.015Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:41.026Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:05:51.043Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:01.034Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:11.021Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:21.023Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:31.029Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:41.026Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:06:51.069Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:01.048Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:11.026Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:21.024Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:31.035Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:41.046Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:07:51.048Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:01.047Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:11.036Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:21.050Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:31.041Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:41.035Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:08:51.076Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:01.035Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:11.044Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:21.061Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:31.035Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:41.079Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:09:51.041Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:01.043Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:11.079Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:21.056Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:31.043Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:41.041Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:10:51.055Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:01.059Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:11.058Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:21.069Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:31.048Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:41.041Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:11:51.097Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:01.083Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:11.057Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:21.051Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:31.062Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:41.050Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:12:51.058Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:13:01.096Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:13:11.045Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:13:21.053Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:13:31.069Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:13:41.050Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T01:13:51.053Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T01:14:01.049Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T01:14:11.070Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T01:14:21.053Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T01:14:31.065Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T01:14:41.057Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T01:14:51.048Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T01:15:01.096Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T01:15:11.098Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T01:15:21.057Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T01:15:31.053Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T01:15:41.065Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T01:15:51.055Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T01:16:01.052Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T01:16:11.058Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T01:16:21.057Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T01:16:31.063Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T01:16:41.051Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T01:16:51.053Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T01:17:01.055Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T01:17:11.050Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T01:17:21.064Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T01:17:31.067Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T01:17:41.057Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T01:17:51.060Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T01:18:01.092Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T01:18:11.067Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T01:18:21.056Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T01:18:31.064Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T01:18:41.062Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T01:18:51.079Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T01:19:01.095Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T01:19:11.069Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T01:19:21.066Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T01:19:31.069Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T01:19:41.063Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T01:19:51.066Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T01:20:01.061Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T01:20:11.081Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T01:20:21.072Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T01:20:31.075Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T01:20:41.071Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T01:20:51.073Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T01:21:01.062Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T01:21:11.073Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T01:21:21.066Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T01:21:31.073Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T01:21:41.075Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T01:21:51.078Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:01.081Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:11.066Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:21.069Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:31.062Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:41.075Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:22:51.070Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:01.068Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:11.090Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:21.071Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:31.071Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:41.063Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:23:51.070Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:01.101Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:11.068Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:21.077Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:31.088Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:41.135Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:24:51.111Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:01.131Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:11.123Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:21.109Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:31.132Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:41.114Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:25:51.136Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:01.129Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:11.112Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:21.118Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:31.117Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:41.120Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:26:51.124Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:01.117Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:11.124Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:21.152Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:31.128Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:41.132Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:27:51.128Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:01.128Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:11.130Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:21.123Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:31.147Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:41.164Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:28:51.129Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:01.175Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:11.143Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:21.130Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:31.170Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:41.189Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:29:51.155Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:01.242Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:11.228Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:21.200Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:31.213Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:41.190Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:30:51.197Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:01.215Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:11.211Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:21.200Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:31.197Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:41.195Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:31:51.661Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:01.252Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:11.238Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:21.224Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:31.221Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:41.231Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:32:51.221Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:01.238Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:11.217Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:21.217Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:31.234Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:41.219Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:33:51.220Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:01.267Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:11.226Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:21.295Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:31.272Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:41.252Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:34:51.221Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:01.276Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:11.243Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:21.231Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:31.253Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:41.237Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:35:51.277Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:01.311Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:11.237Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:21.249Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:31.228Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:41.269Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:36:51.245Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:01.267Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:11.249Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:21.250Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:31.245Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:41.257Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:37:51.242Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:01.228Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:11.239Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:21.234Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:31.246Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:41.239Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:38:51.246Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:01.239Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:11.240Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:21.246Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:31.243Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:41.240Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:39:51.268Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:01.258Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:11.238Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:21.245Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:31.240Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:41.264Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:40:51.264Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:01.283Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:11.242Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:21.250Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:31.246Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:41.261Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:41:51.249Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:01.279Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:11.267Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:21.264Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:31.300Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:41.257Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:42:51.255Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:01.300Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:11.242Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:21.247Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:31.253Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:41.260Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:43:51.253Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:01.274Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:11.249Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:21.267Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:31.289Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:41.282Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:44:51.275Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:01.290Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:11.256Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:21.259Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:31.260Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:41.264Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:45:51.256Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:01.283Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:11.276Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:21.274Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:31.271Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:41.289Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:46:51.276Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:01.301Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:11.308Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:21.277Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:31.271Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:41.294Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:47:51.286Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:01.373Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:11.279Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:21.283Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:31.319Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:41.304Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:48:51.305Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:01.285Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:11.295Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:21.299Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:31.289Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:41.336Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:49:51.258Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:01.285Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:11.312Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:21.303Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:31.306Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:41.297Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:50:51.309Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:01.323Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:11.369Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:21.358Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:31.287Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:41.606Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:51:51.309Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:01.384Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:11.431Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:21.429Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:31.441Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:41.463Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:52:51.475Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:53:01.562Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:53:11.500Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:53:21.515Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:53:31.504Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T01:53:41.523Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T01:53:51.515Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T01:54:01.611Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T01:54:11.514Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T01:54:21.514Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T01:54:31.505Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T01:54:41.509Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T01:54:51.564Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T01:55:01.797Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T01:55:12.613Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T01:55:22.561Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T01:55:32.591Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T01:55:42.582Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T01:55:52.565Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T01:56:02.576Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T01:56:12.570Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T01:56:22.589Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T01:56:32.585Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T01:56:42.574Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T01:56:52.570Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T01:57:02.578Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T01:57:12.573Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T01:57:22.578Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T01:57:32.584Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T01:57:42.611Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T01:57:52.604Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T01:58:02.668Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T01:58:12.639Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T01:58:22.650Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T01:58:32.635Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T01:58:42.646Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T01:58:52.642Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T01:59:02.639Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T01:59:12.648Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T01:59:22.640Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T01:59:32.639Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T01:59:42.647Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T01:59:52.647Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T02:00:03.177Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T02:00:13.028Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T02:00:22.977Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T02:00:32.986Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T02:00:42.979Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T02:00:52.993Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T02:01:03.004Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T02:01:13.018Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T02:01:23.017Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T02:01:33.007Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T02:01:43.016Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T02:01:53.058Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:03.085Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:13.069Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:23.040Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:33.037Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:43.018Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:02:53.051Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:03.055Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:13.026Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:23.055Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:33.047Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:43.060Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:03:53.040Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:03.023Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:13.044Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:23.073Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:33.064Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:43.047Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:04:53.051Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:03.053Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:13.139Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:23.055Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:33.050Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:43.056Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:05:53.050Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:03.159Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:13.050Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:23.043Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:33.035Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:43.054Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:06:53.059Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:03.037Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:13.044Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:23.041Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:33.038Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:43.105Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:07:53.059Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:03.046Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:13.052Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:23.047Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:33.063Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:43.050Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:08:53.049Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:03.059Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:13.073Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:23.067Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:33.062Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:43.061Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:09:53.054Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:03.060Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:13.050Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:23.104Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:33.110Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:43.138Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:10:53.135Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:03.178Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:13.213Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:23.206Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:33.230Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:43.236Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:11:53.223Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:03.326Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:13.293Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:23.314Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:33.307Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:43.362Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:12:53.365Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:03.375Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:13.355Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:23.340Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:33.404Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:43.369Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:13:53.403Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:03.369Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:13.396Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:23.403Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:33.362Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:43.393Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:14:53.366Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:03.408Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:13.364Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:23.375Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:33.360Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:43.347Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:15:53.351Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:03.379Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:13.350Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:23.365Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:33.372Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:43.349Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:16:53.402Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:03.382Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:13.362Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:23.379Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:33.366Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:43.382Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:17:53.373Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:03.371Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:13.349Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:23.389Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:33.417Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:43.369Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:18:53.404Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:03.369Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:13.364Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:23.378Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:33.379Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:43.383Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:19:53.421Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:03.378Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:13.401Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:23.385Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:33.391Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:43.367Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:20:53.368Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:03.392Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:13.394Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:23.393Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:33.380Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:43.385Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:21:53.403Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:03.392Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:13.377Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:23.392Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:33.376Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:43.385Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:22:53.382Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:03.390Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:13.388Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:23.389Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:33.372Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:43.380Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:23:53.388Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:03.371Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:13.384Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:23.457Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:33.419Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:43.415Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:24:53.396Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:03.399Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:13.389Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:23.404Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:33.412Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:43.432Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:25:53.410Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:03.406Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:13.389Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:23.399Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:33.395Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:43.386Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:26:53.437Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:03.385Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:13.395Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:23.399Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:33.403Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:43.391Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:27:53.398Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:03.414Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:13.397Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:23.424Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:33.437Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:43.428Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:28:53.428Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:03.459Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:13.458Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:23.440Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:33.443Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:43.428Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:29:53.458Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:03.433Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:13.454Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:23.445Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:33.474Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:43.450Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:30:53.441Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:03.442Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:13.456Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:23.448Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:33.447Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:43.434Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:31:53.440Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:03.469Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:13.442Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:23.477Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:33.442Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:43.451Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:32:53.450Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:33:03.449Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:33:13.438Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:33:23.437Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:33:33.452Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:33:43.463Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T02:33:53.455Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T02:34:03.443Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T02:34:13.441Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T02:34:23.447Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T02:34:33.442Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T02:34:43.442Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T02:34:53.448Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T02:35:03.452Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T02:35:13.459Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T02:35:23.448Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T02:35:33.441Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T02:35:43.445Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T02:35:53.443Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T02:36:03.447Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T02:36:13.446Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T02:36:23.531Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T02:36:33.459Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T02:36:43.457Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T02:36:53.477Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T02:37:03.455Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T02:37:13.459Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T02:37:23.466Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T02:37:33.448Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T02:37:43.453Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T02:37:53.450Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T02:38:03.452Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T02:38:13.468Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T02:38:23.467Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T02:38:33.455Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T02:38:43.470Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T02:38:53.487Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T02:39:03.452Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T02:39:13.454Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T02:39:23.456Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T02:39:33.466Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T02:39:43.459Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T02:39:53.461Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T02:40:03.462Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T02:40:13.458Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T02:40:23.457Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T02:40:33.458Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T02:40:43.472Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T02:40:53.519Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T02:41:03.498Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T02:41:13.461Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T02:41:23.498Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T02:41:33.500Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T02:41:43.465Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T02:41:53.464Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:03.493Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:13.468Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:23.493Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:33.460Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:43.464Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:42:53.469Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:03.472Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:13.481Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:23.463Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:33.467Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:43.463Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:43:53.467Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:03.463Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:13.465Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:23.457Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:33.462Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:43.459Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:44:53.462Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:03.462Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:13.465Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:23.479Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:33.465Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:43.480Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:45:53.466Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:03.466Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:13.462Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:23.465Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:33.463Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:43.472Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:46:53.462Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:03.460Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:13.464Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:23.467Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:33.467Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:43.480Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:47:53.492Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:03.501Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:13.467Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:23.481Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:33.486Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:43.469Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:48:53.473Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:03.469Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:13.478Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:23.487Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:33.498Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:43.483Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:49:53.437Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:03.496Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:13.474Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:23.481Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:33.468Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:43.472Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:50:53.508Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:03.478Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:13.468Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:23.483Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:33.475Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:43.477Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:51:53.487Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:03.469Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:13.475Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:23.468Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:33.479Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:43.477Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:52:53.474Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:03.470Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:13.469Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:23.482Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:33.475Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:43.482Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:53:53.476Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:03.486Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:13.473Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:23.479Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:33.482Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:43.470Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:54:53.495Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:03.476Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:13.480Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:23.482Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:33.472Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:43.481Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:55:53.520Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:03.483Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:13.498Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:23.473Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:33.477Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:43.495Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:56:53.483Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:03.498Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:13.480Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:23.483Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:33.482Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:43.485Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:57:53.492Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:03.480Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:13.484Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:23.494Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:33.499Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:43.481Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:58:53.478Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:03.481Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:13.494Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:23.481Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:33.500Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:43.488Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T02:59:53.487Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:03.720Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:13.486Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:23.495Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:33.495Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:43.493Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:00:53.493Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:03.520Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:13.496Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:23.493Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:33.489Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:43.559Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:01:53.498Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:03.504Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:13.518Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:23.504Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:33.529Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:43.490Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:02:53.495Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:03.523Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:13.499Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:23.491Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:33.497Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:43.495Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:03:53.493Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:03.494Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:13.504Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:23.496Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:33.496Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:43.504Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:04:53.496Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:03.496Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:13.507Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:23.508Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:33.495Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:43.495Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:05:53.496Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:03.548Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:13.492Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:23.494Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:33.508Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:43.518Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:06:53.500Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:03.554Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:13.512Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:23.502Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:33.512Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:43.504Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:07:53.495Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:03.532Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:13.526Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:23.512Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:33.519Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:43.521Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:08:53.549Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:03.527Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:13.511Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:23.532Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:33.513Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:43.544Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:09:53.531Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:03.519Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:13.514Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:23.516Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:33.531Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:43.522Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:10:53.519Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:03.518Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:13.516Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:23.707Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:33.710Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:43.685Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:11:53.677Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:03.681Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:13.683Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:23.689Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:33.692Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:43.716Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:12:53.686Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:13:03.722Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:13:13.675Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:13:23.689Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:13:33.681Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:13:43.677Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T03:13:53.690Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T03:14:03.696Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T03:14:13.687Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T03:14:23.691Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T03:14:33.700Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T03:14:43.697Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T03:14:53.689Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T03:15:03.686Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T03:15:13.690Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T03:15:23.684Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T03:15:33.697Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T03:15:43.681Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T03:15:53.698Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T03:16:03.689Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T03:16:13.697Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T03:16:23.686Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T03:16:33.684Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T03:16:43.682Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T03:16:53.938Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T03:17:03.721Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T03:17:13.712Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T03:17:23.719Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T03:17:33.720Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T03:17:43.702Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T03:17:53.707Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T03:18:03.704Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T03:18:13.708Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T03:18:23.706Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T03:18:33.716Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T03:18:43.709Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T03:18:53.723Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T03:19:03.709Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T03:19:13.714Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T03:19:23.720Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T03:19:33.726Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T03:19:43.709Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T03:19:53.715Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T03:20:03.708Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T03:20:13.746Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T03:20:23.741Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T03:20:33.726Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T03:20:43.729Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T03:20:53.742Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T03:21:03.740Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T03:21:13.719Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T03:21:23.715Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T03:21:33.711Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T03:21:43.712Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T03:21:53.734Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:03.732Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:13.714Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:23.719Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:33.722Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:43.721Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:22:53.720Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:03.728Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:13.710Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:23.716Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:33.719Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:43.731Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:23:53.715Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:03.740Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:13.719Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:23.723Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:33.712Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:43.720Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:24:53.710Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:03.759Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:13.721Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:23.729Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:33.715Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:43.715Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:25:53.719Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:03.952Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:13.739Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:23.736Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:33.778Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:43.771Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:26:53.749Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:03.742Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:13.750Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:23.740Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:33.746Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:43.741Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:27:53.738Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:03.742Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:13.739Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:23.740Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:33.751Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:43.757Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:28:53.798Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:03.738Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:13.741Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:23.743Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:33.748Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:43.748Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:29:53.811Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:03.784Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:13.771Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:23.750Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:33.747Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:43.741Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:30:53.778Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:03.750Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:13.747Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:23.769Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:33.751Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:43.749Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:31:53.750Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:03.746Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:13.762Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:23.785Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:33.756Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:43.787Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:32:53.748Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:03.756Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:13.792Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:23.757Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:33.768Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:43.758Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:33:53.752Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:03.754Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:13.760Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:23.757Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:33.773Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:43.757Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:34:53.763Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:03.752Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:13.754Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:23.755Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:33.756Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:43.749Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:35:53.779Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:03.763Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:13.758Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:23.755Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:33.753Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:43.777Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:36:53.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:03.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:13.756Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:23.755Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:33.754Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:43.768Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:37:53.756Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:03.757Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:13.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:23.763Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:33.756Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:43.758Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:38:53.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:03.787Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:13.759Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:23.762Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:33.768Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:43.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:39:53.771Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:03.774Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:13.763Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:23.791Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:33.761Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:43.783Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:40:53.787Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:03.763Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:13.766Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:23.761Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:33.773Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:43.762Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:41:53.812Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:03.909Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:13.765Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:23.764Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:33.768Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:43.767Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:42:53.787Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:03.770Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:13.777Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:23.770Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:33.771Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:43.785Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:43:53.771Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:03.776Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:13.781Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:23.770Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:33.770Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:43.772Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:44:53.772Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:03.802Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:13.778Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:23.778Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:33.770Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:43.783Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:45:53.781Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:03.812Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:13.778Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:23.789Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:33.783Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:43.789Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:46:53.792Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:03.796Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:13.791Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:23.797Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:33.785Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:43.830Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:47:53.838Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:03.785Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:13.957Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:23.825Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:33.792Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:43.801Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:48:53.796Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:03.826Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:13.820Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:23.800Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:33.803Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:43.810Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:49:53.766Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:03.802Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:14.102Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:23.861Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:33.876Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:43.862Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:50:53.853Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:03.891Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:13.856Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:23.878Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:33.879Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:43.869Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:51:53.859Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:03.880Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:13.872Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:23.866Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:33.894Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:43.900Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:52:53.913Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:53:03.890Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:53:13.857Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:53:23.864Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:53:33.914Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T03:53:43.894Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T03:53:53.917Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T03:54:03.913Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T03:54:13.893Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T03:54:23.891Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T03:54:33.895Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T03:54:43.880Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T03:54:53.884Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T03:55:03.944Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T03:55:13.869Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T03:55:23.875Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T03:55:33.881Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T03:55:43.875Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T03:55:53.869Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T03:56:03.895Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T03:56:13.880Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T03:56:23.881Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T03:56:33.888Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T03:56:43.877Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T03:56:53.881Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T03:57:03.881Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T03:57:13.979Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T03:57:23.955Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T03:57:33.904Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T03:57:43.887Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T03:57:53.889Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T03:58:03.896Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T03:58:13.888Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T03:58:23.883Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T03:58:33.917Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T03:58:43.891Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T03:58:53.887Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T03:59:03.905Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T03:59:13.891Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T03:59:23.887Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T03:59:33.907Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T03:59:43.904Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T03:59:53.901Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T04:00:04.059Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T04:00:13.980Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T04:00:23.970Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T04:00:33.944Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T04:00:43.938Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T04:00:53.936Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T04:01:03.944Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T04:01:13.945Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T04:01:23.948Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T04:01:33.937Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T04:01:43.940Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T04:01:53.946Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:03.951Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:13.946Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:23.950Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:33.975Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:43.937Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:02:53.938Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:03.942Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:13.945Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:23.958Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:33.948Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:43.941Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:03:53.971Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:03.947Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:13.985Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:23.950Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:33.946Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:43.962Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:04:53.952Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:03.972Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:13.957Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:23.950Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:33.955Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:43.983Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:05:53.992Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:03.950Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:13.957Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:23.948Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:33.954Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:43.952Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:06:53.965Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:03.969Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:13.956Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:23.950Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:33.973Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:43.956Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:07:53.982Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:03.949Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:13.950Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:23.954Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:33.962Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:43.952Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:08:53.956Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:03.960Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:13.950Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:23.973Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:33.953Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:43.966Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:09:53.976Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:03.958Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:13.961Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:23.981Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:33.958Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:43.963Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:10:53.986Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:03.972Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:13.984Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:23.957Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:33.962Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:43.960Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:11:53.977Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:03.955Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:14Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:23.976Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:33.993Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:44.059Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:12:53.968Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:03.971Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:13.975Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:23.974Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:34.009Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:43.974Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:13:53.975Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:03.974Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:13.989Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:23.979Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:34.013Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:43.987Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:14:54.023Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:04.004Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:13.995Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:23.986Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:34.032Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:44.023Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:15:53.998Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:03.993Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:13.990Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:23.996Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:33.992Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:44.005Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:16:53.992Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:04.010Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:13.999Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:23.994Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:33.998Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:43.995Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:17:54.011Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:04.009Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:14.004Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:24.017Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:33.997Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:44.008Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:18:54.007Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:04.018Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:14.005Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:24.029Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:34.017Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:44.006Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:19:53.999Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:04.004Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:14.026Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:24.004Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:34.012Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:44.030Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:20:54.013Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:04.018Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:14.019Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:24.019Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:34.020Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:44.027Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:21:54.025Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:04.030Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:14.039Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:24.050Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:34.010Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:44.013Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:22:54.016Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:04.015Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:14.014Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:24.021Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:34.043Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:44.018Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:23:54.019Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:04.050Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:14.032Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:24.035Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:34.033Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:44.048Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:24:54.029Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:04.044Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:14.048Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:24.060Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:34.051Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:44.051Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:25:54.091Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:04.065Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:14.061Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:24.073Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:34.044Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:44.061Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:26:54.070Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:04.051Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:14.077Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:24.083Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:34.075Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:44.055Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:27:54.149Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:04.094Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:14.066Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:24.057Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:34.063Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:44.070Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:28:54.059Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:04.058Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:14.091Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:24.064Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:34.079Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:44.061Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:29:54.087Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:04.065Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:14.068Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:24.082Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:34.091Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:44.062Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:30:54.120Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:04.083Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:14.073Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:24.069Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:34.067Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:44.107Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:31:54.079Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:04.072Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:14.073Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:24.079Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:34.067Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:44.097Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:32:54.109Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:33:04.098Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:33:14.144Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:33:24.072Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:33:34.074Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:33:44.070Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T04:33:54.124Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T04:34:04.072Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T04:34:14.069Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T04:34:24.082Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T04:34:34.073Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T04:34:44.073Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T04:34:54.113Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T04:35:04.130Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T04:35:14.106Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T04:35:24.072Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T04:35:34.088Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T04:35:44.077Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T04:35:54.086Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T04:36:04.077Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T04:36:14.084Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T04:36:24.125Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T04:36:34.094Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T04:36:44.130Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T04:36:54.082Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T04:37:04.132Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T04:37:14.077Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T04:37:24.106Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T04:37:34.110Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T04:37:44.097Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T04:37:54.105Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T04:38:04.080Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T04:38:14.116Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T04:38:24.092Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T04:38:34.090Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T04:38:44.098Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T04:38:54.118Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T04:39:04.141Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T04:39:14.127Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T04:39:24.087Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T04:39:34.089Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T04:39:44.094Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T04:39:54.129Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T04:40:04.106Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T04:40:14.092Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T04:40:24.092Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T04:40:34.101Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T04:40:44.096Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T04:40:54.105Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T04:41:04.100Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T04:41:14.167Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T04:41:24.091Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T04:41:34.084Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T04:41:44.110Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T04:41:54.131Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:04.126Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:14.095Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:24.108Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:34.112Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:44.134Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:42:54.141Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:09.796Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:15.356Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:25.337Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:35.378Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:45.392Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:43:55.345Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:05.363Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:15.605Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:25.351Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:35.368Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:45.372Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:44:55.363Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:05.383Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:15.367Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:25.374Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:35.376Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:45.374Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:45:55.357Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:05.400Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:15.387Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:25.361Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:35.390Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:45.795Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:46:55.627Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:05.733Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:15.658Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:25.663Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:35.905Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:45.887Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:47:55.891Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:05.908Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:15.889Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:25.896Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:35.911Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:45.890Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:48:55.890Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:05.910Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:15.899Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:25.898Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:35.935Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:45.905Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:49:55.875Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:08.011Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:16.651Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:26.661Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:36.734Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:46.783Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:50:56.664Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:06.735Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:16.717Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:26.680Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:36.793Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:46.713Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:51:56.670Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:06.739Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:16.674Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:26.678Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:37.248Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:47.236Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:52:57.227Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:07.379Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:17.234Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:27.241Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:37.490Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:47.260Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:53:57.262Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:07.378Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:17.258Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:27.257Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:37.375Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:47.258Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:54:57.292Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:07.428Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:17.283Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:27.276Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:37.381Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:47.286Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:55:57.305Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:07.383Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:17.309Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:27.309Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:37.461Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:47.296Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:56:57.298Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:07.439Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:17.316Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:27.316Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:37.891Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:47.802Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:57:57.797Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:07.815Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:17.811Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:27.857Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:37.855Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:47.814Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:58:57.807Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:07.935Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:17.847Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:27.841Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:37.860Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:47.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T04:59:57.845Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:00:10.999Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:00:20.796Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:00:30.690Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:00:40.715Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:00:50.695Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:00.722Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:10.762Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:20.755Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:30.717Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:40.707Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:01:50.723Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:00.747Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:10.703Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:20.787Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:30.707Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:40.746Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:02:50.739Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:00.743Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:10.841Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:20.805Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:30.828Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:40.876Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:03:50.813Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:00.815Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:10.812Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:20.866Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:30.888Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:40.845Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:04:50.860Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:00.858Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:10.867Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:20.848Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:30.860Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:40.862Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:05:50.851Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:00.853Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:10.935Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:20.874Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:30.932Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:40.928Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:06:50.893Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:00.900Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:10.866Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:20.888Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:30.895Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:40.876Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:07:50.890Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:00.945Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:10.895Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:20.943Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:30.884Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:41.010Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:08:50.899Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:00.951Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:10.929Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:20.916Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:30.916Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:40.915Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:09:50.963Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:00.930Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:11.001Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:20.955Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:30.907Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:41.022Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:10:50.969Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:00.960Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:11.099Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:21.015Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:31.021Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:40.988Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:11:51.042Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:01.009Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:10.978Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:20.966Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:30.987Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:40.995Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:12:51.041Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:01.002Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:11.047Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:20.984Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:31.009Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:41.096Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:13:51.028Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T05:14:01.051Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T05:14:10.997Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T05:14:21.055Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T05:14:31.024Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T05:14:41.003Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T05:14:51.006Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T05:15:01.055Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T05:15:12.512Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T05:15:22.445Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T05:15:32.442Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T05:15:42.445Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T05:15:52.444Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T05:16:02.460Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T05:16:12.446Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T05:16:22.441Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T05:16:32.502Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T05:16:42.501Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T05:16:52.499Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T05:17:02.553Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T05:17:12.514Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T05:17:22.504Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T05:17:32.504Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T05:17:42.589Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T05:17:52.570Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T05:18:02.609Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T05:18:12.593Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T05:18:22.597Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T05:18:32.576Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T05:18:42.575Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T05:18:52.597Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T05:19:02.619Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T05:19:12.590Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T05:19:22.580Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T05:19:32.635Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T05:19:42.628Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T05:19:52.603Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T05:20:02.783Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T05:20:12.716Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T05:20:22.700Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T05:20:32.691Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T05:20:42.705Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T05:20:52.713Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T05:21:02.699Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T05:21:12.690Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T05:21:22.691Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T05:21:32.725Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T05:21:42.706Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T05:21:52.727Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T05:22:02.723Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T05:22:12.708Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T05:22:22.701Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T05:22:32.702Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:22:42.703Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:22:52.708Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:02.695Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:12.702Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:22.844Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:32.749Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:42.777Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:23:52.799Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:02.783Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:12.762Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:22.833Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:32.777Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:42.764Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:24:52.793Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:02.760Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:12.762Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:22.783Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:32.782Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:42.761Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:25:52.777Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:03.542Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:13.491Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:23.510Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:33.517Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:43.527Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:26:53.505Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:03.505Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:13.510Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:23.500Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:33.518Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:43.508Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:27:53.548Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:03.537Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:13.552Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:23.508Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:33.537Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:43.519Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:28:53.569Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:03.586Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:13.590Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:23.595Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:33.575Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:43.584Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:29:53.573Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:03.574Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:13.600Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:23.584Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:33.605Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:43.622Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:30:53.573Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:03.579Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:13.607Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:23.579Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:33.576Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:43.625Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:31:53.618Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:03.588Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:13.621Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:23.584Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:33.577Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:43.637Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:32:53.651Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:03.643Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:13.634Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:23.636Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:33.655Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:43.688Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:33:53.664Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:03.654Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:13.650Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:23.669Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:33.646Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:43.656Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:34:53.690Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:03.661Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:13.653Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:23.648Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:33.660Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:43.642Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:35:53.669Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:03.665Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:13.648Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:23.645Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:33.654Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:43.645Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:36:53.669Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:03.684Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:13.678Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:23.649Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:33.658Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:43.674Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:37:53.664Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:03.662Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:13.664Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:23.669Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:33.658Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:43.661Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:38:53.705Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:03.666Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:13.684Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:23.665Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:33.663Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:43.665Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:39:53.669Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:03.676Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:13.666Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:23.667Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:33.662Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:43.694Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:40:53.673Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:03.695Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:13.689Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:23.677Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:33.683Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:43.676Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:41:53.725Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:03.728Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:13.708Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:23.699Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:33.678Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:43.685Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:42:53.691Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:03.679Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:13.695Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:23.704Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:33.683Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:43.684Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:43:53.691Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:03.683Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:13.731Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:23.753Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:33.735Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:43.748Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:44:53.766Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:03.718Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:13.744Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:23.741Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:33.726Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:43.728Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:45:53.725Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:03.719Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:13.716Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:23.724Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:33.723Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:43.729Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:46:53.723Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:03.789Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:13.747Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:23.737Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:33.726Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:43.818Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:47:53.821Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:03.892Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:13.821Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:23.858Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:33.832Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:43.825Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:48:53.833Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:03.833Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:13.817Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:23.850Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:33.829Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:43.835Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:49:53.827Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:03.791Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:13.824Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:23.832Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:33.848Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:43.825Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:50:53.824Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:03.861Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:13.824Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:23.829Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:33.824Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:43.845Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:51:53.844Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:03.870Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:13.826Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:23.845Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:33.851Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:43.829Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:52:53.838Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:03.868Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:13.833Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:23.951Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:34.113Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:43.842Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T05:53:53.834Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T05:54:03.844Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T05:54:13.830Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T05:54:23.840Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T05:54:33.843Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T05:54:43.834Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T05:54:53.831Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T05:55:03.868Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T05:55:13.831Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T05:55:23.832Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T05:55:33.849Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T05:55:43.839Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T05:55:53.832Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T05:56:03.874Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T05:56:13.835Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T05:56:23.848Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T05:56:33.855Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T05:56:43.832Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T05:56:53.851Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T05:57:03.850Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T05:57:13.836Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T05:57:23.838Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T05:57:33.854Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T05:57:43.844Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T05:57:53.834Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T05:58:03.879Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T05:58:13.860Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T05:58:23.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T05:58:33.849Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T05:58:43.847Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T05:58:53.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T05:59:03.846Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T05:59:13.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T05:59:23.843Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T05:59:33.912Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T05:59:43.850Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T05:59:53.925Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T06:00:04.248Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T06:00:13.911Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T06:00:23.871Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T06:00:33.883Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T06:00:43.875Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T06:00:53.879Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T06:01:03.912Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T06:01:13.882Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T06:01:23.884Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T06:01:33.886Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T06:01:43.883Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T06:01:53.904Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T06:02:03.899Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T06:02:13.878Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T06:02:23.916Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T06:02:33.938Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:02:43.903Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:02:53.892Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:03.916Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:13.895Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:23.896Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:33.910Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:43.891Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:03:53.924Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:03.919Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:13.892Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:23.893Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:33.890Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:43.897Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:04:53.889Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:03.895Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:13.915Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:23.899Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:33.934Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:43.911Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:05:53.913Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:03.933Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:13.906Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:23.910Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:33.911Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:43.908Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:06:53.961Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:03.912Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:13.928Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:23.921Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:33.917Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:43.953Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:07:53.925Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:03.928Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:13.928Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:23.933Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:33.930Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:43.932Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:08:53.935Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:03.931Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:13.925Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:23.932Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:33.953Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:43.926Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:09:53.952Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:03.973Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:13.934Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:23.931Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:33.932Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:43.937Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:10:53.933Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:03.927Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:13.935Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:23.959Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:33.995Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:43.954Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:11:53.947Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:03.946Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:13.974Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:23.965Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:33.939Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:43.948Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:12:53.956Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:03.950Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:13.953Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:23.952Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:33.961Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:43.947Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:13:53.964Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:03.944Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:13.953Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:23.949Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:33.949Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:43.951Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:14:53.969Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:03.954Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:13.957Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:23.965Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:33.967Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:43.949Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:15:53.949Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:03.995Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:13.994Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:24.048Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:34.033Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:44.068Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:16:54.061Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:04.084Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:14.063Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:24.068Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:34.076Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:44.059Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:17:54.076Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:04.060Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:14.072Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:24.075Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:34.065Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:44.070Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:18:54.108Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:04.089Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:14.066Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:24.075Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:34.062Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:44.066Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:19:54.065Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:04.067Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:14.079Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:24.069Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:34.072Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:44.080Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:20:54.086Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:04.072Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:14.070Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:24.085Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:34.086Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:44.079Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:21:54.084Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:04.072Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:14.071Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:24.076Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:34.085Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:44.076Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:22:54.118Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:04.088Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:14.079Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:24.089Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:34.082Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:44.195Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:23:54.115Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:04.077Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:14.087Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:24.140Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:34.080Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:44.078Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:24:54.079Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:04.082Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:14.080Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:24.097Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:34.087Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:44.078Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:25:54.099Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:04.083Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:14.081Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:24.110Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:34.087Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:44.092Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:26:54.092Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:04.095Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:14.088Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:24.105Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:34.103Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:44.081Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:27:54.104Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:04.143Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:14.088Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:24.085Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:34.104Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:44.083Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:28:54.106Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:04.099Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:14.085Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:24.090Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:34.092Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:44.090Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:29:54.085Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:04.132Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:14.990Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:24.684Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:34.707Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:44.701Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:30:54.687Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:04.707Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:14.685Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:24.681Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:34.712Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:44.685Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:31:54.681Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:04.707Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:14.699Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:24.701Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:34.700Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:44.682Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:32:54.688Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:04.703Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:14.707Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:24.730Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:34.748Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:44.726Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:33:54.736Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T06:34:04.724Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T06:34:14.697Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T06:34:24.725Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T06:34:34.714Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T06:34:44.704Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T06:34:54.712Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T06:35:04.758Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T06:35:14.727Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T06:35:24.731Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T06:35:34.725Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T06:35:44.721Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T06:35:54.724Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T06:36:04.729Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T06:36:14.720Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T06:36:24.725Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T06:36:34.740Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T06:36:44.714Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T06:36:54.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T06:37:04.763Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T06:37:14.719Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T06:37:24.726Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T06:37:34.739Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T06:37:44.727Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T06:37:54.713Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T06:38:04.757Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T06:38:14.719Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T06:38:24.719Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T06:38:34.759Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T06:38:44.729Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T06:38:54.730Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T06:39:04.769Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T06:39:14.726Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T06:39:24.734Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T06:39:34.743Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T06:39:44.728Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T06:39:54.728Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T06:40:04.755Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T06:40:14.722Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T06:40:24.731Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T06:40:34.750Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T06:40:44.728Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T06:40:54.738Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T06:41:05.433Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T06:41:15.298Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T06:41:25.289Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T06:41:35.307Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T06:41:45.303Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T06:41:55.297Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T06:42:05.311Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T06:42:15.302Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T06:42:25.314Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T06:42:35.311Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:42:45.315Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:42:55.298Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:05.322Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:15.322Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:25.308Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:35.341Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:45.322Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:43:55.305Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:05.350Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:15.328Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:25.310Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:35.319Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:45.334Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:44:55.310Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:05.327Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:15.355Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:25.372Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:35.375Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:45.361Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:45:55.347Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:05.362Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:15.346Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:25.345Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:35.655Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:45.649Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:46:55.636Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:05.659Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:15.659Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:25.655Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:35.844Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:45.831Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:47:55.841Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:05.844Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:15.824Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:25.852Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:35.852Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:45.823Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:48:55.830Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:05.867Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:15.840Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:25.859Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:35.905Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:45.843Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:49:55.847Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:05.807Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:15.842Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:25.851Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:35.860Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:45.845Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:50:55.858Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:05.860Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:15.847Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:25.843Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:35.872Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:45.844Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:51:55.862Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:05.889Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:15.880Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:25.860Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:35.871Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:45.848Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:52:55.852Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:05.873Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:15.868Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:25.861Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:35.870Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:45.851Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:53:55.918Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:05.936Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:15.944Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:25.918Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:35.933Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:45.927Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:54:55.914Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:05.955Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:15.918Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:25.918Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:35.946Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:45.925Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:55:55.933Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:05.939Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:15.932Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:25.919Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:35.963Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:45.923Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:56:55.929Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:05.947Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:15.928Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:25.942Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:35.946Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:46.105Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:57:56.053Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:06.066Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:16.067Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:26.068Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:36.282Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:46.270Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:58:56.267Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:06.308Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:16.269Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:26.275Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:36.512Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:46.461Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T06:59:56.461Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:09.232Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:16.548Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:26.531Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:39.932Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:49.715Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:00:59.721Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:09.714Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:19.717Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:29.711Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:39.708Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:49.715Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:01:59.713Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:09.720Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:19.716Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:29.723Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:39.722Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:49.739Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:02:59.709Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:09.721Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:19.711Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:29.714Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:39.727Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:49.721Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:03:59.722Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:09.718Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:19.720Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:29.747Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:39.732Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:49.725Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:04:59.770Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:09.719Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:19.723Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:29.723Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:39.714Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:49.771Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:05:59.723Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:09.717Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:19.744Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:29.729Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:39.717Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:49.720Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:06:59.714Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:09.727Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:19.720Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:29.721Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:39.716Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:49.714Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:07:59.738Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:09.738Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:19.717Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:29.727Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:39.724Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:49.749Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:08:59.737Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:09.722Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:19.724Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:29.723Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:39.767Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:49.736Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:09:59.743Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:09.734Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:19.736Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:29.739Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:39.731Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:49.755Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:10:59.768Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:09.731Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:19.741Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:29.766Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:39.739Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:49.728Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:11:59.792Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:09.747Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:19.740Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:29.748Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:39.745Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:49.740Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:12:59.765Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:09.738Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:19.737Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:29.757Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:39.743Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:49.735Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:13:59.773Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T07:14:09.747Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T07:14:19.768Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T07:14:29.752Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T07:14:39.736Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T07:14:49.751Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T07:14:59.748Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T07:15:09.743Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T07:15:19.744Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T07:15:29.742Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T07:15:39.745Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T07:15:49.769Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T07:15:59.828Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T07:16:09.795Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T07:16:19.780Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T07:16:29.787Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T07:16:39.788Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T07:16:49.790Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T07:16:59.804Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T07:17:09.776Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T07:17:19.782Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T07:17:29.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T07:17:39.784Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T07:17:49.826Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T07:17:59.794Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T07:18:09.818Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T07:18:19.788Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T07:18:29.810Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T07:18:39.806Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T07:18:49.793Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T07:18:59.788Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T07:19:09.792Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T07:19:19.794Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T07:19:29.788Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T07:19:39.791Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T07:19:49.804Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T07:19:59.805Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T07:20:09.815Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T07:20:19.838Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T07:20:29.818Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T07:20:39.831Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T07:20:49.840Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T07:20:59.834Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T07:21:09.832Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T07:21:19.836Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T07:21:29.824Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T07:21:39.834Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T07:21:49.832Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T07:21:59.829Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T07:22:09.826Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T07:22:19.833Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T07:22:29.826Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T07:22:39.840Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:22:49.826Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:22:59.843Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:09.827Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:19.839Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:29.853Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:39.835Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:49.832Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:23:59.856Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:09.860Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:19.885Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:29.902Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:39.909Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:49.908Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:24:59.876Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:09.859Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:19.880Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:29.862Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:39.882Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:49.943Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:25:59.908Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:09.882Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:19.875Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:29.874Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:39.862Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:49.880Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:26:59.977Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:09.886Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:19.943Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:29.874Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:39.865Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:49.913Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:27:59.870Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:09.867Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:19.875Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:29.859Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:39.871Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:49.862Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:28:59.863Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:09.874Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:19.918Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:29.863Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:39.879Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:49.867Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:29:59.896Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:09.878Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:19.925Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:29.897Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:39.894Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:49.868Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:30:59.866Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:31:11.043Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:31:19.964Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:31:29.958Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:31:39.963Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:31:50.022Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:00.223Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:10.120Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:20.171Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:30.184Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:40.201Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:32:50.218Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:00.285Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:10.292Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:20.271Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:30.284Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:40.281Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:33:50.278Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:00.271Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:10.269Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:20.270Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:30.324Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:40.271Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:34:50.287Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:00.293Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:10.274Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:20.306Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:30.313Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:40.293Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:35:50.279Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:00.273Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:10.314Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:20.314Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:30.317Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:40.302Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:36:50.311Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:00.306Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:10.298Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:20.298Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:30.298Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:40.313Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:37:50.311Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:00.308Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:10.300Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:20.301Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:30.316Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:40.355Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:38:50.313Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:00.341Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:10.317Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:20.315Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:30.321Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:40.508Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:39:50.319Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:00.367Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:10.322Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:20.329Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:30.318Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:40.328Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:40:50.316Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:00.337Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:10.321Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:20.327Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:30.331Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:40.332Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:41:50.340Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:00.341Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:10.324Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:20.328Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:30.332Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:40.328Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:42:50.332Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:00.405Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:10.325Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:20.359Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:30.328Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:40.348Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:43:50.338Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:00.409Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:10.368Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:20.337Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:30.328Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:40.370Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:44:50.328Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:00.341Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:10.346Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:20.348Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:30.375Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:40.363Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:45:50.339Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:00.340Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:10.341Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:20.341Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:30.449Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:40.342Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:46:50.342Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:00.405Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:10.370Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:20.338Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:30.351Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:40.343Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:47:50.363Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:00.446Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:10.344Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:20.346Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:30.355Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:40.343Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:48:50.353Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:00.344Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:10.367Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:20.357Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:30.380Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:40.352Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:49:50.338Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:00.383Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:10.311Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:20.345Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:30.374Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:40.357Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:50:50.349Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:00.364Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:10.353Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:20.346Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:30.364Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:40.358Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:51:50.384Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:00.543Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:10.351Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:20.343Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:30.347Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:40.353Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:52:50.354Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:00.345Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:10.353Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:20.368Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:30.407Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:40.363Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:53:50.358Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T07:54:00.358Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T07:54:10.364Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T07:54:20.399Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T07:54:30.361Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T07:54:40.353Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T07:54:50.353Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T07:55:00.383Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T07:55:10.366Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T07:55:20.363Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T07:55:30.369Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T07:55:40.488Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T07:55:50.404Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T07:56:00.417Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T07:56:10.405Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T07:56:20.409Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T07:56:30.405Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T07:56:40.405Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T07:56:50.421Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T07:57:00.424Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T07:57:10.418Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T07:57:20.406Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T07:57:30.410Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T07:57:40.425Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T07:57:50.420Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T07:58:00.439Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T07:58:10.413Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T07:58:20.404Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T07:58:30.420Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T07:58:40.421Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T07:58:50.403Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T07:59:00.454Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T07:59:10.422Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T07:59:20.414Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T07:59:30.445Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T07:59:40.419Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T07:59:50.424Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T08:00:00.457Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T08:00:10.827Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T08:00:20.530Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T08:00:30.523Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T08:00:40.541Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T08:00:50.544Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T08:01:00.544Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T08:01:10.519Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T08:01:20.544Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T08:01:30.524Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T08:01:40.641Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T08:01:50.651Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T08:02:00.533Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T08:02:10.527Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T08:02:20.546Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T08:02:30.560Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T08:02:40.529Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:02:50.553Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:00.538Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:10.564Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:20.559Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:30.531Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:40.554Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:03:50.583Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:00.561Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:10.578Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:20.636Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:30.651Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:40.624Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:04:50.620Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:00.629Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:10.606Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:20.609Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:30.609Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:40.612Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:05:50.613Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:00.607Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:10.651Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:20.624Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:30.623Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:40.632Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:06:51.123Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:00.744Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:10.729Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:20.750Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:30.753Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:40.733Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:07:50.730Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:00.731Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:10.726Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:20.736Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:30.739Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:40.786Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:08:50.746Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:00.788Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:10.773Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:20.723Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:30.760Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:40.725Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:09:50.748Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:00.779Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:10.750Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:20.729Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:30.722Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:40.736Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:10:50.725Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:00.783Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:10.832Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:20.760Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:30.732Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:40.755Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:11:50.740Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:00.728Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:10.739Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:20.734Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:30.738Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:40.731Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:12:50.741Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:00.739Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:10.731Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:20.728Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:30.736Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:40.737Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:13:50.736Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:00.738Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:10.734Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:20.757Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:30.728Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:40.753Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:14:50.745Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:00.754Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:10.730Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:20.740Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:30.728Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:40.733Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:15:50.733Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:00.731Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:10.735Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:20.734Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:30.735Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:40.746Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:16:50.754Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:00.805Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:10.745Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:20.768Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:30.755Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:40.740Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:17:50.754Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:00.768Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:10.786Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:20.755Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:30.754Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:40.741Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:18:50.733Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:00.746Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:10.738Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:20.759Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:30.747Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:40.742Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:19:50.766Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:00.769Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:10.772Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:20.780Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:30.760Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:40.772Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:20:50.751Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:00.742Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:10.743Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:20.739Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:30.753Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:40.761Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:21:50.739Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:00.771Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:10.757Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:20.747Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:30.733Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:40.733Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:22:50.740Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:00.757Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:10.735Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:20.746Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:30.747Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:40.737Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:23:50.772Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:00.747Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:10.742Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:20.791Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:30.772Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:40.749Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:24:50.762Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:00.747Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:10.737Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:20.799Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:30.741Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:40.750Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:25:50.746Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:00.735Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:10.749Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:20.769Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:30.779Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:40.785Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:26:50.752Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:00.767Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:10.758Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:20.772Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:30.774Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:40.793Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:27:50.760Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:00.766Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:10.766Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:20.745Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:30.777Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:40.757Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:28:50.754Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:00.747Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:10.747Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:20.745Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:30.757Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:40.760Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:29:50.763Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:00.769Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:10.757Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:20.775Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:30.749Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:40.753Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:30:50.748Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:00.763Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:10.792Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:20.765Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:30.792Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:40.758Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:31:50.756Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:00.759Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:10.785Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:20.798Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:30.800Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:40.763Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:32:50.770Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:00.751Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:10.791Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:20.770Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:30.769Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:40.773Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:33:50.757Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:34:00.760Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T08:34:10.757Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T08:34:20.767Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T08:34:30.767Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T08:34:40.772Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T08:34:50.773Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T08:35:00.760Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T08:35:10.769Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T08:35:20.769Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T08:35:30.763Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T08:35:40.759Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T08:35:50.756Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T08:36:00.774Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T08:36:10.757Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T08:36:20.776Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T08:36:30.762Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T08:36:40.768Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T08:36:50.766Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T08:37:00.805Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T08:37:10.763Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T08:37:20.793Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T08:37:30.761Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T08:37:40.780Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T08:37:50.778Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T08:38:00.766Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T08:38:10.767Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T08:38:20.762Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T08:38:30.760Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T08:38:40.772Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T08:38:50.791Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T08:39:00.765Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T08:39:10.765Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T08:39:20.769Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T08:39:30.763Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T08:39:40.769Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T08:39:50.762Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T08:40:00.785Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T08:40:10.799Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T08:40:20.789Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T08:40:30.767Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T08:40:40.773Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T08:40:50.781Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T08:41:00.773Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T08:41:10.767Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T08:41:20.771Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T08:41:30.782Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T08:41:40.773Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T08:41:50.776Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T08:42:00.763Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T08:42:10.767Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T08:42:20.788Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T08:42:30.768Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T08:42:40.774Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:42:50.770Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:00.773Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:10.773Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:20.786Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:30.782Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:40.775Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:43:50.771Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:00.779Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:10.776Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:20.770Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:30.773Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:40.785Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:44:50.782Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:00.799Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:10.774Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:20.780Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:30.768Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:40.775Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:45:50.776Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:00.794Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:10.785Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:20.785Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:30.781Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:40.778Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:46:50.789Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:00.792Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:10.822Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:20.794Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:30.830Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:40.807Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:47:50.787Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:00.796Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:10.794Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:20.779Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:30.770Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:40.774Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:48:50.792Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:00.813Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:10.781Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:20.801Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:30.803Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:40.802Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:49:50.822Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:00.780Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:10.745Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:20.790Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:30.783Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:40.782Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:50:50.780Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:00.782Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:10.786Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:20.794Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:30.777Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:40.788Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:51:50.812Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:00.801Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:10.794Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:20.799Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:30.806Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:40.811Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:52:50.783Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:00.788Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:10.802Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:20.792Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:30.787Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:40.794Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:53:50.785Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:00.788Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:10.784Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:20.791Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:30.913Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:40.791Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:54:50.787Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:00.798Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:10.793Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:20.794Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:30.804Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:40.791Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:55:50.806Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:00.795Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:10.787Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:20.793Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:30.805Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:40.789Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:56:50.803Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:00.807Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:10.799Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:20.798Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:30.830Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:40.808Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:57:50.805Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:00.816Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:10.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:20.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:30.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:40.800Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:58:50.807Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:00.790Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:10.818Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:20.809Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:30.840Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:40.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T08:59:50.801Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:00.824Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:11.417Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:21.372Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:31.359Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:41.368Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:00:51.367Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:01.451Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:11.364Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:21.378Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:31.374Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:41.367Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:01:51.389Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:01.399Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:11.371Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:21.373Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:31.365Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:41.365Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:02:51.459Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:01.416Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:11.393Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:21.397Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:31.401Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:41.391Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:03:51.399Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:01.433Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:11.401Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:21.391Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:31.404Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:41.399Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:04:51.425Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:01.401Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:11.396Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:21.395Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:31.413Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:41.422Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:05:51.410Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:01.543Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:11.410Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:21.408Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:31.390Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:41.406Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:06:51.428Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:01.479Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:11.417Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:21.393Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:31.420Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:41.403Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:07:51.439Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:01.589Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:11.540Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:21.537Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:31.569Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:41.562Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:08:51.567Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:01.543Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:11.565Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:21.570Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:31.540Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:41.535Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:09:51.584Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:01.610Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:11.594Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:21.552Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:31.582Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:41.565Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:10:51.555Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:01.599Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:11.549Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:21.545Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:31.549Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:41.548Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:11:51.566Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:01.636Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:11.581Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:21.588Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:31.593Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:41.559Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:12:51.666Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:01.602Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:11.579Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:21.558Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:31.549Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:41.543Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:13:51.569Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:14:01.586Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T09:14:11.566Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T09:14:21.555Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T09:14:31.575Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T09:14:41.549Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T09:14:51.567Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T09:15:01.662Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T09:15:11.577Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T09:15:21.578Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T09:15:31.572Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T09:15:41.558Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T09:15:51.605Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T09:16:01.608Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T09:16:11.609Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T09:16:21.561Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T09:16:31.582Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T09:16:41.575Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T09:16:51.596Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T09:17:01.645Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T09:17:11.601Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T09:17:21.583Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T09:17:31.578Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T09:17:41.585Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T09:17:51.579Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T09:18:02.640Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T09:18:11.734Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T09:18:21.574Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T09:18:31.570Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T09:18:41.570Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T09:18:51.687Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T09:19:01.613Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T09:19:11.594Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T09:19:21.608Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T09:19:31.573Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T09:19:41.602Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T09:19:51.596Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T09:20:01.756Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T09:20:11.595Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T09:20:21.577Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T09:20:31.598Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T09:20:41.594Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T09:20:51.593Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T09:21:01.625Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T09:21:11.603Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T09:21:21.578Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T09:21:31.615Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T09:21:41.580Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T09:21:51.639Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T09:22:01.616Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T09:22:11.591Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T09:22:21.582Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T09:22:31.588Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T09:22:41.583Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:22:51.586Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:01.632Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:11.583Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:21.600Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:31.600Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:41.588Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:23:51.589Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:01.647Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:11.591Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:21.588Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:31.596Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:41.770Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:24:51.629Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:01.664Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:11.644Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:21.655Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:31.614Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:41.643Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:25:51.609Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:01.712Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:11.656Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:21.617Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:31.630Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:41.629Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:26:51.639Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:01.665Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:11.655Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:21.641Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:31.637Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:41.661Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:27:51.707Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:01.666Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:11.639Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:21.671Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:31.643Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:41.645Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:28:51.637Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:01.662Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:11.655Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:21.648Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:31.646Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:41.645Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:29:51.640Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:02.510Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:11.653Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:21.654Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:31.658Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:41.666Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:30:51.810Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:01.704Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:11.676Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:21.690Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:31.677Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:41.668Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:31:51.687Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:01.786Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:11.684Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:21.673Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:31.876Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:41.697Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:32:51.693Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:01.730Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:11.709Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:21.922Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:31.711Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:41.696Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:33:51.736Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:01.735Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:11.695Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:21.723Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:31.696Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:41.693Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:34:51.709Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:01.761Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:11.725Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:21.694Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:31.707Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:41.707Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:35:51.700Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:01.868Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:11.687Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:21.701Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:31.719Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:41.690Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:36:51.785Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:01.725Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:11.703Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:21.711Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:31.715Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:41.688Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:37:51.736Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:01.771Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:11.710Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:21.690Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:31.699Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:41.700Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:38:51.707Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:01.708Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:11.708Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:21.709Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:31.712Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:41.697Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:39:51.778Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:01.791Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:11.715Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:21.743Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:31.724Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:41.705Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:40:51.714Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:01.761Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:11.734Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:21.705Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:31.708Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:41.715Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:41:51.724Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:02.587Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:11.735Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:21.712Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:31.719Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:41.729Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:42:51.773Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:01.774Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:11.727Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:21.731Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:31.723Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:41.711Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:43:51.716Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:01.796Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:11.751Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:21.722Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:31.720Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:41.761Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:44:51.739Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:02.187Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:11.955Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:21.967Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:32.008Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:41.952Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:45:52.154Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:02.063Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:12.013Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:22.006Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:31.999Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:41.980Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:46:52.007Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:02.088Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:12.006Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:22.052Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:31.993Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:42.020Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:47:52.031Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:02.135Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:11.984Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:22.006Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:32.508Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:42.522Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:48:52.912Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:02.392Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:12.394Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:22.386Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:32.366Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:42.370Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:49:52.372Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:02.419Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:12.321Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:22.376Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:32.393Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:42.381Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:50:52.366Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:02.447Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:12.381Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:22.394Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:32.373Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:42.409Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:51:52.475Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:02.702Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:12.522Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:22.514Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:32.517Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:42.526Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:52:52.519Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:02.520Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:12.519Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:22.545Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:32.514Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:42.515Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:53:52.516Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T09:54:02.538Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T09:54:12.543Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T09:54:22.519Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T09:54:32.574Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T09:54:42.543Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T09:54:53.955Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T09:55:03.406Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T09:55:14.725Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T09:55:24.199Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T09:55:34.196Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T09:55:44.202Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T09:55:54.194Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T09:56:04.200Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T09:56:14.211Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T09:56:24.187Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T09:56:34.185Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T09:56:44.226Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T09:56:54.183Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T09:57:04.228Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T09:57:14.221Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T09:57:24.203Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T09:57:34.195Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T09:57:44.228Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T09:57:54.218Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T09:58:04.211Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T09:58:14.306Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T09:58:24.308Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T09:58:34.300Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T09:58:44.292Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T09:58:54.356Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T09:59:04.286Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T09:59:14.287Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T09:59:24.301Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T09:59:34.296Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T09:59:44.282Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T09:59:54.289Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T10:00:04.343Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T10:00:14.289Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T10:00:24.366Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T10:00:34.327Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T10:00:44.309Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T10:00:54.296Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T10:01:04.296Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T10:01:14.321Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T10:01:24.294Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T10:01:34.320Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T10:01:44.291Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T10:01:54.284Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T10:02:04.285Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T10:02:14.301Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T10:02:24.303Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T10:02:34.330Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T10:02:44.290Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:02:54.302Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:04.308Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:14.306Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:24.311Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:34.306Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:44.294Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:03:54.436Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:04.312Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:14.318Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:24.321Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:34.313Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:44.319Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:04:54.314Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:04.305Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:14.289Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:24.301Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:34.293Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:44.290Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:05:54.350Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:04.316Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:14.298Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:24.294Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:34.288Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:44.299Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:06:54.674Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:04.313Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:14.338Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:24.317Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:34.318Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:44.315Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:07:54.321Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:04.316Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:14.311Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:24.315Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:34.314Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:44.314Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:08:54.321Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:04.330Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:14.322Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:24.397Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:34.349Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:44.354Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:09:54.340Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:04.349Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:14.357Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:24.343Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:34.378Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:44.339Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:10:54.347Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:04.354Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:14.344Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:24.343Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:34.339Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:44.342Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:11:54.429Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:04.351Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:14.349Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:24.359Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:34.350Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:44.349Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:12:54.339Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:04.370Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:14.349Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:24.340Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:34.362Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:44.336Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:13:54.345Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:04.369Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:14.345Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:24.341Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:34.348Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:44.342Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:14:54.351Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:04.375Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:14.489Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:24.349Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:34.346Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:44.345Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:15:54.348Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:04.342Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:14.350Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:24.341Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:34.352Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:44.348Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:16:54.347Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:04.388Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:14.354Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:24.355Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:34.362Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:44.715Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:17:54.434Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:04.439Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:14.447Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:24.467Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:34.433Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:44.448Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:18:54.434Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:04.441Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:14.448Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:24.439Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:34.443Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:44.445Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:19:54.441Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:04.433Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:14.730Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:24.445Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:34.447Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:44.444Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:20:54.453Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:04.452Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:14.455Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:24.450Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:34.461Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:44.455Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:21:54.447Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:04.449Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:14.451Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:24.447Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:34.446Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:44.444Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:22:54.444Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:04.447Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:14.446Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:24.445Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:34.649Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:44.454Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:23:54.452Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:04.459Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:14.458Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:24.459Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:34.460Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:44.452Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:24:54.451Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:04.486Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:14.459Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:24.458Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:34.463Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:44.495Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:25:54.450Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:04.806Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:14.606Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:24.608Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:34.667Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:44.609Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:26:54.603Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:04.629Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:14.608Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:24.616Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:34.623Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:44.610Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:27:54.605Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:04.642Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:14.609Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:24.605Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:34.751Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:44.711Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:28:54.711Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:04.733Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:14.713Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:24.721Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:34.738Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:44.719Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:29:54.716Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:04.734Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:14.716Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:24.716Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:34.752Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:44.728Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:30:54.728Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:04.750Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:14.721Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:24.738Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:34.744Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:44.714Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:31:54.731Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:04.737Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:14.724Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:24.714Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:34.821Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:44.716Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:32:54.720Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:04.735Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:14.718Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:24.726Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:34.761Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:44.743Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:33:54.733Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:34:04.908Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T10:34:14.842Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T10:34:25.771Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T10:34:35.250Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T10:34:45.116Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T10:34:55.057Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T10:35:09.512Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T10:35:15.209Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T10:35:25.181Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T10:35:35.201Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T10:35:45.194Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T10:35:55.183Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T10:36:05.194Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T10:36:15.196Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T10:36:25.183Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T10:36:35.194Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T10:36:45.191Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T10:36:55.182Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T10:37:05.219Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T10:37:15.182Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T10:37:25.183Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T10:37:35.233Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T10:37:45.181Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T10:37:55.180Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T10:38:05.216Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T10:38:15.177Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T10:38:25.228Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T10:38:35.192Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T10:38:45.220Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T10:38:55.188Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T10:39:05.198Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T10:39:15.206Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T10:39:25.181Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T10:39:35.219Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T10:39:45.203Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T10:39:55.186Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T10:40:05.196Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T10:40:15.180Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T10:40:25.191Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T10:40:35.218Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T10:40:45.200Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T10:40:55.200Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T10:41:05.208Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T10:41:15.209Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T10:41:25.190Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T10:41:35.209Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T10:41:45.184Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T10:41:55.206Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T10:42:05.233Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T10:42:15.207Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T10:42:25.209Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T10:42:35.220Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T10:42:45.204Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:42:55.196Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:05.229Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:15.204Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:25.207Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:35.212Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:45.219Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:43:55.207Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:05.221Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:15.246Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:25.205Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:35.228Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:45.207Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:44:55.215Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:05.245Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:15.219Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:25.206Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:35.245Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:45.215Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:45:55.207Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:05.282Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:15.224Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:25.207Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:35.235Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:45.224Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:46:55.212Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:05.341Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:15.207Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:25.213Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:35.226Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:45.216Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:47:55.214Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:05.223Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:15.215Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:25.211Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:35.242Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:45.216Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:48:55.206Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:05.246Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:15.214Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:25.207Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:35.257Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:45.238Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:49:55.230Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:05.245Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:15.196Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:25.244Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:35.242Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:45.235Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:50:55.251Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:05.263Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:15.227Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:25.231Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:35.263Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:45.280Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:51:55.250Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:05.259Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:15.261Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:25.232Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:35.254Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:45.268Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:52:55.236Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:05.271Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:15.234Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:25.232Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:35.331Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:45.272Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:53:55.279Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:05.279Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:15.276Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:25.273Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:35.296Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:45.261Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:54:55.264Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:05.283Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:15.414Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:25.265Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:35.276Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:45.292Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:55:55.264Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:05.282Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:15.289Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:25.262Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:35.281Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:45.298Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:56:55.279Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:05.284Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:15.279Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:25.319Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:35.323Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:45.292Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:57:55.293Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:05.341Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:15.327Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:25.367Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:35.469Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:45.421Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:58:55.418Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:05.457Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:15.427Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:25.474Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:35.442Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:45.423Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T10:59:55.425Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:07.900Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:16.312Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:26.261Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:36.299Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:46.260Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:00:56.260Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:06.274Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:16.269Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:26.258Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:36.280Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:46.257Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:01:56.266Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:06.287Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:16.262Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:26.264Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:36.296Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:46.264Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:02:56.272Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:06.285Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:16.262Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:26.262Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:36.311Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:46.261Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:03:56.269Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:06.279Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:16.272Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:26.279Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:36.277Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:46.265Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:04:56.278Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:06.528Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:16.303Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:26.280Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:36.300Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:46.279Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:05:56.313Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:06.301Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:16.285Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:26.284Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:36.386Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:46.280Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:06:56.274Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:06.371Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:16.302Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:26.292Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:36.310Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:46.302Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:07:56.285Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:06.426Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:16.287Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:26.290Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:36.303Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:46.288Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:08:56.292Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:06.311Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:16.290Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:26.290Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:36.312Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:46.286Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:09:56.296Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:06.306Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:16.297Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:26.301Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:36.372Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:46.291Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:10:56.306Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:06.395Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:16.354Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:26.344Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:36.449Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:46.340Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:11:56.341Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:06.405Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:16.340Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:26.340Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:36.389Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:46.334Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:12:56.340Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:06.394Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:16.339Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:26.343Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:36.387Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:46.342Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:13:56.360Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:14:06.362Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0098, + "_time": "2024-04-23T11:14:16.365Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0095, + "_time": "2024-04-23T11:14:26.345Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0275, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0087, + "_time": "2024-04-23T11:14:36.438Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T11:14:46.341Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T11:14:56.340Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.019, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0025, + "_time": "2024-04-23T11:15:06.405Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.016, + "StuffingBoxTemperature": 25, + "PressureIn": 0.0006, + "_time": "2024-04-23T11:15:16.350Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 25.05, + "PressureIn": 0.0002, + "_time": "2024-04-23T11:15:26.353Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25.19, + "PressureIn": 0.0001, + "_time": "2024-04-23T11:15:36.385Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 44, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 25.4, + "PressureIn": 0, + "_time": "2024-04-23T11:15:46.345Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.004, + "StuffingBoxTemperature": 25.48, + "PressureIn": 0, + "_time": "2024-04-23T11:15:56.345Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 25.63, + "PressureIn": 0, + "_time": "2024-04-23T11:16:06.389Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 25.78, + "PressureIn": 0, + "_time": "2024-04-23T11:16:16.345Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 36, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 25.93, + "PressureIn": 0, + "_time": "2024-04-23T11:16:26.350Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 26.08, + "PressureIn": 0, + "_time": "2024-04-23T11:16:36.374Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 32, + "PressureOut": 0, + "StuffingBoxTemperature": 26.23, + "PressureIn": 0, + "_time": "2024-04-23T11:16:46.365Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 30.5, + "PressureOut": 0, + "StuffingBoxTemperature": 26.38, + "PressureIn": 0, + "_time": "2024-04-23T11:16:56.344Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.53, + "PressureIn": 0, + "_time": "2024-04-23T11:17:06.407Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 26.68, + "PressureIn": 0, + "_time": "2024-04-23T11:17:16.347Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.83, + "PressureIn": 0, + "_time": "2024-04-23T11:17:26.352Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 26.98, + "PressureIn": 0, + "_time": "2024-04-23T11:17:36.388Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.13, + "PressureIn": 0, + "_time": "2024-04-23T11:17:46.366Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.28, + "PressureIn": 0, + "_time": "2024-04-23T11:17:56.349Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 27.43, + "PressureIn": 0, + "_time": "2024-04-23T11:18:06.381Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.58, + "PressureIn": 0, + "_time": "2024-04-23T11:18:16.350Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 27.73, + "PressureIn": 0, + "_time": "2024-04-23T11:18:26.353Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 27.88, + "PressureIn": 0, + "_time": "2024-04-23T11:18:36.401Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 28.03, + "PressureIn": 0, + "_time": "2024-04-23T11:18:46.355Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.18, + "PressureIn": 0, + "_time": "2024-04-23T11:18:56.363Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.33, + "PressureIn": 0, + "_time": "2024-04-23T11:19:06.410Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.48, + "PressureIn": 0, + "_time": "2024-04-23T11:19:16.350Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.63, + "PressureIn": 0, + "_time": "2024-04-23T11:19:26.349Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 28.78, + "PressureIn": 0, + "_time": "2024-04-23T11:19:36.400Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 28.93, + "PressureIn": 0, + "_time": "2024-04-23T11:19:46.346Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.08, + "PressureIn": 0, + "_time": "2024-04-23T11:19:56.356Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0, + "StuffingBoxTemperature": 29.23, + "PressureIn": 0, + "_time": "2024-04-23T11:20:06.434Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0, + "StuffingBoxTemperature": 29.38, + "PressureIn": 0, + "_time": "2024-04-23T11:20:17.792Z", + "Flow": 0 + }, + { + "MotorCurrent": 31, + "PressureOut": 0, + "StuffingBoxTemperature": 29.53, + "PressureIn": 0, + "_time": "2024-04-23T11:20:26.679Z", + "Flow": 0 + }, + { + "MotorCurrent": 29, + "PressureOut": 0.0002, + "StuffingBoxTemperature": 29.68, + "PressureIn": 0, + "_time": "2024-04-23T11:20:36.732Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0003, + "StuffingBoxTemperature": 29.83, + "PressureIn": 0, + "_time": "2024-04-23T11:20:46.797Z", + "Flow": 0 + }, + { + "MotorCurrent": 30, + "PressureOut": 0.0006, + "StuffingBoxTemperature": 29.98, + "PressureIn": 0.0001, + "_time": "2024-04-23T11:20:56.657Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 31, + "PressureOut": 0.0015, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0002, + "_time": "2024-04-23T11:21:06.796Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 34, + "PressureOut": 0.004, + "StuffingBoxTemperature": 30, + "PressureIn": 0.0006, + "_time": "2024-04-23T11:21:16.736Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 38, + "PressureOut": 0.006999999999999999, + "StuffingBoxTemperature": 29.8, + "PressureIn": 0.0025, + "_time": "2024-04-23T11:21:26.699Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.01, + "StuffingBoxTemperature": 29.5, + "PressureIn": 0.0045000000000000005, + "_time": "2024-04-23T11:21:37.176Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.013000000000000001, + "StuffingBoxTemperature": 29.25, + "PressureIn": 0.006500000000000001, + "_time": "2024-04-23T11:21:46.813Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.016, + "StuffingBoxTemperature": 28.7, + "PressureIn": 0.0087, + "_time": "2024-04-23T11:21:56.797Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 28.15, + "PressureIn": 0.0095, + "_time": "2024-04-23T11:22:06.893Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.6, + "PressureIn": 0.0098, + "_time": "2024-04-23T11:22:16.802Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.019, + "StuffingBoxTemperature": 27.05, + "PressureIn": 0.01, + "_time": "2024-04-23T11:22:26.789Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.019, + "StuffingBoxTemperature": 26.5, + "PressureIn": 0.01, + "_time": "2024-04-23T11:22:36.936Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25.95, + "PressureIn": 0.01, + "_time": "2024-04-23T11:22:46.791Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0309487, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:22:56.802Z", + "Flow": 2.41892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029414600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:07.230Z", + "Flow": 2.47939 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030086300000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:17.003Z", + "Flow": 2.43057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029923500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:27.001Z", + "Flow": 2.46347 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0298201, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:37.080Z", + "Flow": 2.41149 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030199600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:47.014Z", + "Flow": 2.47207 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:23:57.039Z", + "Flow": 2.46379 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030182600000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:07.079Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029049900000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:17.038Z", + "Flow": 2.47475 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030692, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:27.064Z", + "Flow": 2.42092 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030560200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:37.114Z", + "Flow": 2.40428 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:47.032Z", + "Flow": 2.4148300000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030462799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:24:57.047Z", + "Flow": 2.49095 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308578, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:07.224Z", + "Flow": 2.46889 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029357, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:17.045Z", + "Flow": 2.42701 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293033, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:27.055Z", + "Flow": 2.40368 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295901, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:37.092Z", + "Flow": 2.44037 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:47.038Z", + "Flow": 2.44591 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030019200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:25:57.051Z", + "Flow": 2.45186 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0307509, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:07.052Z", + "Flow": 2.49327 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308587, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:17.039Z", + "Flow": 2.46024 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.02944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:27.085Z", + "Flow": 2.43912 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030417700000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:37.061Z", + "Flow": 2.45927 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0302289, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:47.064Z", + "Flow": 2.46393 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029989, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:26:57.057Z", + "Flow": 2.42277 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030910600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:07.124Z", + "Flow": 2.4516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030325099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:17.052Z", + "Flow": 2.4171 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029099200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:27.066Z", + "Flow": 2.4504200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030286200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:37.143Z", + "Flow": 2.42876 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0300607, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:47.078Z", + "Flow": 2.43398 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:27:57.081Z", + "Flow": 2.44047 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0308884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:07.211Z", + "Flow": 2.4885300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030514600000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:17.153Z", + "Flow": 2.4641300000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:27.160Z", + "Flow": 2.4231800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296713, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:37.174Z", + "Flow": 2.45654 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304408, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:47.151Z", + "Flow": 2.42968 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0290406, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:28:57.172Z", + "Flow": 2.41587 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029129000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:07.196Z", + "Flow": 2.47291 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305132, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:17.151Z", + "Flow": 2.49594 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0298867, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:27.166Z", + "Flow": 2.43321 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029932900000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:37.188Z", + "Flow": 2.49452 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0292081, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:47.165Z", + "Flow": 2.4099600000000003 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030293, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:29:57.152Z", + "Flow": 2.48293 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303644, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:07.180Z", + "Flow": 2.49549 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0297076, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:17.174Z", + "Flow": 2.4599100000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030966999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:27.156Z", + "Flow": 2.40101 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029884, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:37.232Z", + "Flow": 2.4460200000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0294345, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:47.199Z", + "Flow": 2.42534 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030405099999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:30:57.199Z", + "Flow": 2.49716 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295434, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:07.236Z", + "Flow": 2.46405 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029429, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:17.180Z", + "Flow": 2.42101 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0291227, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:27.195Z", + "Flow": 2.42516 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296864, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:37.194Z", + "Flow": 2.43966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0296758, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:47.178Z", + "Flow": 2.4089500000000004 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291411, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:31:57.183Z", + "Flow": 2.46822 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030528200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:07.199Z", + "Flow": 2.487 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0296368, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:17.181Z", + "Flow": 2.48612 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.03026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:27.206Z", + "Flow": 2.44152 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295318, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:39.486Z", + "Flow": 2.47593 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0299376, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:47.200Z", + "Flow": 2.46315 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030963599999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:32:57.191Z", + "Flow": 2.4083099999999997 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029253499999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:07.255Z", + "Flow": 2.4153800000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302512, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:17.184Z", + "Flow": 2.47179 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:27.206Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:37.203Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0302, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:47.188Z", + "Flow": 2.45 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.025, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:33:57.190Z", + "Flow": 2.42 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:07.237Z", + "Flow": 2.38 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.013999999999999999, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:17.200Z", + "Flow": 2.3000000000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:27.184Z", + "Flow": 2.15 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:37.205Z", + "Flow": 1.9000000000000001 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:47.198Z", + "Flow": 1.5 + }, + { + "MotorCurrent": 48, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:34:57.223Z", + "Flow": 1.05 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:07.206Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:17.204Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:27.854Z", + "Flow": 0.45 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:40.085Z", + "Flow": 0.33 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:49.188Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:35:59.202Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:09.212Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:19.188Z", + "Flow": 0.02 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:29.196Z", + "Flow": 0.015 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:39.188Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:49.194Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:36:59.191Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:09.215Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:19.194Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:29.193Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:39.219Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:49.187Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:37:59.226Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:09.202Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:19.187Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:29.222Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:39.191Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:49.204Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:38:59.226Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:09.200Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:19.192Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:29.215Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:39.199Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:49.229Z", + "Flow": 0 + }, + { + "MotorCurrent": 40, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:39:59.211Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:09.199Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.01, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:19.191Z", + "Flow": 0 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0102, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:29.205Z", + "Flow": 0 + }, + { + "MotorCurrent": 39, + "PressureOut": 0.0103, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:39.229Z", + "Flow": 0.01 + }, + { + "MotorCurrent": 40.5, + "PressureOut": 0.0106, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:49.211Z", + "Flow": 0.05 + }, + { + "MotorCurrent": 41, + "PressureOut": 0.0115, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:40:59.205Z", + "Flow": 0.13 + }, + { + "MotorCurrent": 42, + "PressureOut": 0.013500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:09.196Z", + "Flow": 0.22 + }, + { + "MotorCurrent": 45, + "PressureOut": 0.015500000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:19.192Z", + "Flow": 0.4 + }, + { + "MotorCurrent": 47, + "PressureOut": 0.018000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:29.197Z", + "Flow": 0.6 + }, + { + "MotorCurrent": 52, + "PressureOut": 0.02, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:39.197Z", + "Flow": 0.8 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.022000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:49.201Z", + "Flow": 1 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.024, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:41:59.219Z", + "Flow": 1.2 + }, + { + "MotorCurrent": 55, + "PressureOut": 0.026000000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:09.212Z", + "Flow": 1.4000000000000001 + }, + { + "MotorCurrent": 54.5, + "PressureOut": 0.027999999999999997, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:19.215Z", + "Flow": 1.6 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:29.232Z", + "Flow": 1.8 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0303788, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:39.220Z", + "Flow": 2.42047 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030276200000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:49.232Z", + "Flow": 2.4966 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029364, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:42:59.213Z", + "Flow": 2.4660900000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297294, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:09.205Z", + "Flow": 2.41408 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295546, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:19.215Z", + "Flow": 2.43786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029136000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:29.208Z", + "Flow": 2.43999 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029962, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:39.208Z", + "Flow": 2.4118600000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030805799999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:49.213Z", + "Flow": 2.48482 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030092400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:43:59.220Z", + "Flow": 2.4563300000000003 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305627, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:09.232Z", + "Flow": 2.4876300000000002 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029652400000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:19.223Z", + "Flow": 2.45527 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305354, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:29.241Z", + "Flow": 2.45642 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029047800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:39.216Z", + "Flow": 2.44094 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029685100000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:49.215Z", + "Flow": 2.48868 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0309444, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:44:59.215Z", + "Flow": 2.47029 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029356399999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:09.221Z", + "Flow": 2.4538900000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0305995, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:19.235Z", + "Flow": 2.46401 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294301, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:29.224Z", + "Flow": 2.41191 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030285000000000003, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:39.234Z", + "Flow": 2.48995 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0291253, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:49.214Z", + "Flow": 2.41433 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030239699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:45:59.243Z", + "Flow": 2.4993600000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029750200000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:09.221Z", + "Flow": 2.45111 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030007000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:19.215Z", + "Flow": 2.48638 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0299026, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:29.224Z", + "Flow": 2.46194 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294185, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:39.218Z", + "Flow": 2.46535 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030858200000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:49.217Z", + "Flow": 2.45656 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.029732500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:46:59.218Z", + "Flow": 2.4499400000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0295665, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:09.227Z", + "Flow": 2.4836300000000002 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0306542, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:19.240Z", + "Flow": 2.40442 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0294391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:29.239Z", + "Flow": 2.4967 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304266, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:39.234Z", + "Flow": 2.46242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0293839, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:49.228Z", + "Flow": 2.42347 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029167600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:47:59.227Z", + "Flow": 2.46193 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309089, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:09.221Z", + "Flow": 2.44057 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030816800000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:19.234Z", + "Flow": 2.46696 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030944, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:29.249Z", + "Flow": 2.48112 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0295919, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:39.224Z", + "Flow": 2.46589 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0295863, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:49.232Z", + "Flow": 2.4694 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0309836, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:48:59.251Z", + "Flow": 2.41708 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0304888, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:09.254Z", + "Flow": 2.49971 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0292913, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:19.273Z", + "Flow": 2.41669 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030354199999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:29.253Z", + "Flow": 2.46497 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029765899999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:39.250Z", + "Flow": 2.45331 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030201099999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:49.256Z", + "Flow": 2.41018 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0298391, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:49:59.242Z", + "Flow": 2.4529 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0299958, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:09.258Z", + "Flow": 2.44666 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030921, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:19.218Z", + "Flow": 2.46667 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0291369, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:29.252Z", + "Flow": 2.42891 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030093800000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:39.253Z", + "Flow": 2.47736 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.029394999999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:49.257Z", + "Flow": 2.47892 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029976, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:50:59.335Z", + "Flow": 2.45851 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.0294896, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:09.258Z", + "Flow": 2.45552 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029309699999999998, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:19.287Z", + "Flow": 2.47802 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030787000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:29.273Z", + "Flow": 2.4211300000000002 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0307083, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:39.267Z", + "Flow": 2.45595 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.030874000000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:49.272Z", + "Flow": 2.46786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0297213, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:51:59.290Z", + "Flow": 2.42786 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0292471, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:09.264Z", + "Flow": 2.44183 + }, + { + "MotorCurrent": 50, + "PressureOut": 0.029191500000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:19.271Z", + "Flow": 2.49242 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0303176, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:29.271Z", + "Flow": 2.4608000000000003 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0290366, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:39.264Z", + "Flow": 2.49837 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030606, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:49.271Z", + "Flow": 2.46893 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0303466, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:52:59.277Z", + "Flow": 2.41251 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030645600000000002, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:53:09.275Z", + "Flow": 2.42592 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.0302792, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:53:19.276Z", + "Flow": 2.47074 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.030977100000000004, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:53:29.299Z", + "Flow": 2.49803 + }, + { + "MotorCurrent": 51, + "PressureOut": 0.030934, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:53:39.273Z", + "Flow": 2.41076 + }, + { + "MotorCurrent": 49, + "PressureOut": 0.0305, + "StuffingBoxTemperature": 25, + "PressureIn": 0.01, + "_time": "2024-04-23T11:53:49.269Z", + "Flow": 2.45 + } +] diff --git a/prisma/migrations/20240509211327_/migration.sql b/prisma/migrations/20240509211327_/migration.sql new file mode 100644 index 00000000..4cf5e0f6 --- /dev/null +++ b/prisma/migrations/20240509211327_/migration.sql @@ -0,0 +1,45 @@ +-- CreateTable +CREATE TABLE "Pump" ( + "id" SERIAL NOT NULL, + "name" TEXT NOT NULL, + + CONSTRAINT "Pump_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Environment" ( + "id" SERIAL NOT NULL, + "pressureQc" INTEGER NOT NULL, + "temperature" DOUBLE PRECISION NOT NULL, + "temperatureQc" INTEGER NOT NULL, + "humidityQc" INTEGER NOT NULL, + "humidity" INTEGER NOT NULL, + "pressure" INTEGER NOT NULL, + "time" TIMESTAMP(3) NOT NULL, + "pumpId" INTEGER NOT NULL, + + CONSTRAINT "Environment_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Data" ( + "id" SERIAL NOT NULL, + "motorCurrent" INTEGER NOT NULL, + "pressureOut" DOUBLE PRECISION NOT NULL, + "stuffingBoxTemperature" INTEGER NOT NULL, + "pressureIn" DOUBLE PRECISION NOT NULL, + "time" TIMESTAMP(3) NOT NULL, + "flow" DOUBLE PRECISION NOT NULL, + "pumpId" INTEGER NOT NULL, + + CONSTRAINT "Data_pkey" PRIMARY KEY ("id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "Pump_name_key" ON "Pump"("name"); + +-- AddForeignKey +ALTER TABLE "Environment" ADD CONSTRAINT "Environment_pumpId_fkey" FOREIGN KEY ("pumpId") REFERENCES "Pump"("id") ON DELETE RESTRICT ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "Data" ADD CONSTRAINT "Data_pumpId_fkey" FOREIGN KEY ("pumpId") REFERENCES "Pump"("id") ON DELETE RESTRICT ON UPDATE CASCADE; diff --git a/prisma/migrations/migration_lock.toml b/prisma/migrations/migration_lock.toml new file mode 100644 index 00000000..fbffa92c --- /dev/null +++ b/prisma/migrations/migration_lock.toml @@ -0,0 +1,3 @@ +# Please do not edit this file manually +# It should be added in your version-control system (i.e. Git) +provider = "postgresql" \ No newline at end of file diff --git a/prisma/schema.prisma b/prisma/schema.prisma new file mode 100644 index 00000000..51dff4b6 --- /dev/null +++ b/prisma/schema.prisma @@ -0,0 +1,45 @@ +generator client { + provider = "prisma-client-js" +} + +datasource db { + provider = "postgresql" + url = env("DATABASE_URL") +} + +model Pump { + id Int @id @default(autoincrement()) + name String + environment Environment[] + data Data[] + + @@unique([name]) +} + + +model Environment { + id Int @id @default(autoincrement()) + pressureQc Int + temperature Float + temperatureQc Int + humidityQc Int + humidity Int + pressure Int + time DateTime + pumpId Int + pump Pump @relation(fields: [pumpId], references: [id]) +} + +model Data { + id Int @id @default(autoincrement()) + motorCurrent Int + pressureOut Float + stuffingBoxTemperature Int + pressureIn Float + time DateTime + flow Float + pumpId Int + pump Pump @relation(fields: [pumpId], references: [id]) +} + + diff --git a/prisma/seed.ts b/prisma/seed.ts new file mode 100644 index 00000000..fc4bed00 --- /dev/null +++ b/prisma/seed.ts @@ -0,0 +1,60 @@ +import { PrismaClient } from '@prisma/client'; +import envData from './demo_data/PUMP-002_Environment_20240422-220000000_20240423-220000000.json'; +import pumpData from './demo_data/PUMP-002_PumpData_20240422-220000000_20240423-220000000.json'; + +const prisma = new PrismaClient(); + +async function main() { + const newPump = await prisma.pump.upsert({ + create: { + name: 'PUMP-002', + }, + update: {}, + where: { + name: 'PUMP-002', + }, + }); + + const newEnvData = envData.map((data: any) => { + return { + pressureQc: data.Pressure_qc, + temperature: data.Temperature, + temperatureQc: data.Temperature_qc, + humidityQc: data.Humidity_qc, + humidity: data.Humidity, + pressure: data.Pressure, + time: data._time, + pumpId: newPump.id, + }; + }); + + const newPumpData = pumpData.map((data: any) => { + return { + motorCurrent: data.MotorCurrent, + pressureOut: data.PressureOut, + stuffingBoxTemperature: data.StuffingBoxTemperature, + pressureIn: data.PressureIn, + flow: data.Flow, + time: data._time, + pumpId: newPump.id, + }; + }); + await prisma.data.createMany({ + data: newPumpData, + }); + + await prisma.environment.createMany({ + data: newEnvData, + }); +} + +main() + .catch((e) => { + console.error(e); + + process.exit(1); + }) + + .finally(async () => { + await prisma.$disconnect(); + }); diff --git a/prisma/tsconfig.json b/prisma/tsconfig.json new file mode 100644 index 00000000..e426b353 --- /dev/null +++ b/prisma/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "es2015", + "module": "commonjs", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + } +}