Skip to main content
POST
/
quantlib
/
physics
/
thermodynamics
/
clausius-clapeyron
curl --request POST \
  --url https://finceptbackend.share.zrok.io/quantlib/physics/thermodynamics/clausius-clapeyron \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "delta_H": 40660,
  "T": 373.15,
  "delta_V": 0.03
}
'
{
  "success": true,
  "data": {
    "dP_dT": 3631.8
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register

Body

application/json
delta_H
number
required

Latent heat (enthalpy change) during phase transition (J/mol)

Example:

40660

T
number
required

Temperature at phase transition (Kelvin)

Example:

373.15

delta_V
number
required

Volume change during phase transition (m³/mol)

Example:

0.03

Response

Clausius-Clapeyron equation calculated successfully

success
boolean
Example:

true

data
object