21 lines
655 B
Text
21 lines
655 B
Text
[
|
|
// Temperature Converter
|
|
{
|
|
"name": "Temperature converter",
|
|
"description": r"""
|
|
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).
|
|
|
|
""",
|
|
"input": [
|
|
{"name": "Input", "unit": "Kelvin"}
|
|
],
|
|
"output": {"name": "Output", "unit": "Kelvin"},
|
|
"d4rtCode": "Output = Input;",
|
|
"tags": ["converter", "temperature"]
|
|
}
|
|
]
|