convert_power
Convert power values between units like horsepower, watt, and kilowatt for accurate measurements. Simplify calculations with precise unit conversions for diverse power measurement needs.
Instructions
Convert power between units.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_unit | Yes | Source unit | |
to_unit | Yes | Target unit | |
value | Yes | Power value to convert |
Input Schema (JSON Schema)
{
"properties": {
"from_unit": {
"description": "Source unit",
"enum": [
"Btu per hour",
"foot pound‑force per second",
"ton of refrigeration",
"calorie per hour",
"kilocalorie per hour",
"horsepower",
"horsepower (metric)",
"kilogram‑force meter per second",
"watt",
"kilowatt",
"megawatt",
"gigawatt",
"terawatt",
"petawatt"
],
"title": "From Unit",
"type": "string"
},
"to_unit": {
"description": "Target unit",
"enum": [
"Btu per hour",
"foot pound‑force per second",
"ton of refrigeration",
"calorie per hour",
"kilocalorie per hour",
"horsepower",
"horsepower (metric)",
"kilogram‑force meter per second",
"watt",
"kilowatt",
"megawatt",
"gigawatt",
"terawatt",
"petawatt"
],
"title": "To Unit",
"type": "string"
},
"value": {
"description": "Power value to convert",
"title": "Value",
"type": "number"
}
},
"required": [
"value",
"from_unit",
"to_unit"
],
"type": "object"
}