Skip to main content

SAMind

POST 

/calculate

Turns SRP well tests and intake conditions into an optimised operating recipe ready for implementation. Integrates reservoir inflow behaviour, pump intake conditions, and surface operating parameters to determine optimal speed, stroke length, and pump intake pressure, while identifying risks such as gas-locking, underfill, and overload conditions.

Request

Responses

Optimised operating recipe with recommended pump configuration, control setpoints, and risk mitigation actions

import { SAMindClient } from "@petrominds/sa-mind";

const client = new SAMindClient({ apiKey: "YOUR_API_KEY" });

const result = await client.sa.calculate({
// TODO: populate request parameters
});

console.log(result);