2026-02-22 17:06:20 +00:00
|
|
|
[
|
2026-02-24 09:21:07 +00:00
|
|
|
// Temperature Converter
|
|
|
|
|
{
|
|
|
|
|
"name": "Temperature converter",
|
|
|
|
|
"description": r"""
|
2026-02-23 19:02:13 +00:00
|
|
|
Simple temperature converter example that returns the input value (Kelvin) as output.
|
|
|
|
|
|
|
|
|
|
Formula: $$T_{out} = T_{in}$$
|
|
|
|
|
|
|
|
|
|
Inputs: `Input` in kelvin (K).
|
|
|
|
|
Output: `Output` in kelvin (K).
|
|
|
|
|
|
2026-02-24 09:21:07 +00:00
|
|
|
""",
|
|
|
|
|
"input": [
|
|
|
|
|
{"name": "Input", "unit": "Kelvin"}
|
|
|
|
|
],
|
|
|
|
|
"output": {"name": "Output", "unit": "Kelvin"},
|
|
|
|
|
"d4rtCode": "Output = Input;",
|
|
|
|
|
"tags": ["converter", "temperature"]
|
|
|
|
|
}
|
2026-02-22 17:06:20 +00:00
|
|
|
]
|