LIBRARY
Math.Tests.Power
Computes a constant base raised to constant and time-varying input powers.
Connects a constant source with value 2 to a Power block with base=3 and verifies that 3^2 = 9. A second Power block (base=2) is driven by a sine wave (amplitude 3) that sweeps negative and positive exponents, exercising 2^(-3)..2^(3).
Usage
BlockComponents.Math.Tests.Power()
Behavior
Source
dyad
"""
Computes a constant base raised to constant and time-varying input powers.
Connects a constant source with value 2 to a Power block with base=3 and
verifies that 3^2 = 9. A second Power block (base=2) is driven by a sine
wave (amplitude 3) that sweeps negative and positive exponents, exercising
2^(-3)..2^(3).
"""
test component Power
"Constant source providing the exponent value"
c1 = BlockComponents.Sources.Constant(k = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 0, "x2": 120, "y2": 100, "rot": 0}
},
"tags": []
}
}
"Sine source sweeping negative and positive exponents"
sine = BlockComponents.Sources.Sine(amplitude = 3, frequency = 1) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 140, "x2": 120, "y2": 240, "rot": 0}
},
"tags": []
}
}
"Power block under test with base=3"
power_block = BlockComponents.Math.Power(base = 3) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 160, "y1": 20, "x2": 260, "y2": 120, "rot": 0}
},
"tags": []
}
}
"Second Power block (base=2) driven by the sine source"
power_block_2 = BlockComponents.Math.Power(base = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 160, "y1": 140, "x2": 260, "y2": 240, "rot": 0}
},
"tags": []
}
}
relations
connect(c1.y, power_block.u) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 140, "y": 50}, {"x": 140, "y": 70}], "E": 2}],
"renderStyle": "standard"
}
}
connect(sine.y, power_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": ["power_block.y", "power_block_2.y", "sine.y"]}
}
}
}
}
endFlattened Source
dyad
"""
Computes a constant base raised to constant and time-varying input powers.
Connects a constant source with value 2 to a Power block with base=3 and
verifies that 3^2 = 9. A second Power block (base=2) is driven by a sine
wave (amplitude 3) that sweeps negative and positive exponents, exercising
2^(-3)..2^(3).
"""
test component Power
"Constant source providing the exponent value"
c1 = BlockComponents.Sources.Constant(k = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 0, "x2": 120, "y2": 100, "rot": 0}
},
"tags": []
}
}
"Sine source sweeping negative and positive exponents"
sine = BlockComponents.Sources.Sine(amplitude = 3, frequency = 1) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 140, "x2": 120, "y2": 240, "rot": 0}
},
"tags": []
}
}
"Power block under test with base=3"
power_block = BlockComponents.Math.Power(base = 3) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 160, "y1": 20, "x2": 260, "y2": 120, "rot": 0}
},
"tags": []
}
}
"Second Power block (base=2) driven by the sine source"
power_block_2 = BlockComponents.Math.Power(base = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 160, "y1": 140, "x2": 260, "y2": 240, "rot": 0}
},
"tags": []
}
}
relations
connect(c1.y, power_block.u) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 140, "y": 50}, {"x": 140, "y": 70}], "E": 2}],
"renderStyle": "standard"
}
}
connect(sine.y, power_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": ["power_block.y", "power_block_2.y", "sine.y"]}
}
}
}
}
endTest Cases
Test Case case1
julia
pltjulia
pltjulia
plt