Skip to content
LIBRARY
Math.Tests.Atan.md

Math.Tests.Atan

Computes the arc tangent of constant and time-varying inputs.

Connects a constant source with value 0 to an Atan block and verifies that atan(0) = 0. A second Atan block is driven by a sine wave (amplitude 5) that sweeps negative and positive values across the real line.

Usage

BlockComponents.Math.Tests.Atan()

Behavior

Source

dyad
"""
Computes the arc tangent of constant and time-varying inputs.

Connects a constant source with value 0 to an Atan block and verifies that
atan(0) = 0. A second Atan block is driven by a sine wave (amplitude 5)
that sweeps negative and positive values across the real line.
"""
test component Atan
  "Constant source providing the input value"
  c1 = BlockComponents.Sources.Constant(k = 0) {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 20, "y1": 20, "x2": 120, "y2": 120, "rot": 0}
      },
      "tags": []
    }
  }
  "Sine source sweeping negative and positive values"
  sine = BlockComponents.Sources.Sine(amplitude = 5, frequency = 1) {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 20, "y1": 140, "x2": 120, "y2": 240, "rot": 0}
      },
      "tags": []
    }
  }
  "Atan block under test"
  atan_block = BlockComponents.Math.Atan() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 160, "y1": 20, "x2": 260, "y2": 120, "rot": 0}
      },
      "tags": []
    }
  }
  "Second Atan block driven by the sine source"
  atan_block_2 = BlockComponents.Math.Atan() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 160, "y1": 140, "x2": 260, "y2": 240, "rot": 0}
      },
      "tags": []
    }
  }
relations
  connect(c1.y, atan_block.u) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
  connect(sine.y, atan_block_2.u) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
metadata {
  "Dyad": {
    "icons": {"default": "dyad://BlockComponents/Example.svg"},
    "tests": {
      "case1": {"stop": 1, "expect": {"signals": ["atan_block.y", "atan_block_2.y", "sine.y"]}}
    }
  }
}
end
Flattened Source
dyad
"""
Computes the arc tangent of constant and time-varying inputs.

Connects a constant source with value 0 to an Atan block and verifies that
atan(0) = 0. A second Atan block is driven by a sine wave (amplitude 5)
that sweeps negative and positive values across the real line.
"""
test component Atan
  "Constant source providing the input value"
  c1 = BlockComponents.Sources.Constant(k = 0) {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 20, "y1": 20, "x2": 120, "y2": 120, "rot": 0}
      },
      "tags": []
    }
  }
  "Sine source sweeping negative and positive values"
  sine = BlockComponents.Sources.Sine(amplitude = 5, frequency = 1) {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 20, "y1": 140, "x2": 120, "y2": 240, "rot": 0}
      },
      "tags": []
    }
  }
  "Atan block under test"
  atan_block = BlockComponents.Math.Atan() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 160, "y1": 20, "x2": 260, "y2": 120, "rot": 0}
      },
      "tags": []
    }
  }
  "Second Atan block driven by the sine source"
  atan_block_2 = BlockComponents.Math.Atan() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 160, "y1": 140, "x2": 260, "y2": 240, "rot": 0}
      },
      "tags": []
    }
  }
relations
  connect(c1.y, atan_block.u) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
  connect(sine.y, atan_block_2.u) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
metadata {
  "Dyad": {
    "icons": {"default": "dyad://BlockComponents/Example.svg"},
    "tests": {
      "case1": {"stop": 1, "expect": {"signals": ["atan_block.y", "atan_block_2.y", "sine.y"]}}
    }
  }
}
end


Test Cases

Test Case case1

julia
plt

julia
plt

julia
plt