measure_thd
Measure Total Harmonic Distortion (THD) percentage and harmonic components on PicoScope oscilloscope channels to analyze signal purity and identify distortion issues.
Instructions
Measure Total Harmonic Distortion (THD).
Args: channel: Channel to measure.
Returns: Dictionary containing THD percentage and harmonic components.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
}
},
"required": [
"channel"
],
"type": "object"
}