Skip to main content

PVT

POST 

/pvt

Automatically evaluates and selects the best-fit PVT correlation for fluid property calculations. Compares candidate correlations against measured or laboratory data using statistical analysis and calibration to improve accuracy of pressure, temperature, and production performance modelling.

Request

Responses

Selected best-fit PVT correlation with calibrated fluid properties and statistical accuracy metrics

import { CorrSelectMindClient } from "@petrominds/corr-select-mind";

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

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

console.log(result.bestCorrelation);