Access to the thermal conductivity prediction REST API provided by making POST or PUT requests to https://lmds.liverpool.ac.uk/thermal_conductivity/API with JSON fitting the following schema:
Argument | Type | Description |
---|---|---|
compositions | String or list of strings | The composition(s) with which to make the prediction |
Assuming correct formatting results will be provided as a list of lists. With each list corresponding to a single prediction, and the contents of that list in the following format:
Index | Type | Description |
---|---|---|
0 | String | The composition with which the prediction was made. |
1 | Float | The predicted thermal conductivity (W m-1 K-1). |
Example Usage
$ curl -X PUT "https://lmds.liverpool.ac.uk/thermal_conductivity/API" -H "Content-Type: application/json" -d '{"compositions": "FeSiO3"}'