LIBRARY
Analog.Basic.Tests.VariableCapacitor
Test circuit for VariableCapacitor.
A sine voltage source (1 V, 1 Hz) drives an RC circuit where the capacitance ramps from 1e-3 F to 6e-3 F over 2 s. A 10 Ω series resistor provides the current path.
The charge-based formulation should produce smooth current despite the time-varying capacitance.
Usage
ElectricalComponents.Analog.Basic.Tests.VariableCapacitor()
Behavior
Source
dyad
"""
Test circuit for VariableCapacitor.
A sine voltage source (1 V, 1 Hz) drives an RC circuit where the
capacitance ramps from 1e-3 F to 6e-3 F over 2 s. A 10 Ω series
resistor provides the current path.
The charge-based formulation should produce smooth current despite
the time-varying capacitance.
"""
test component VariableCapacitor
"Sine signal source: 1 V amplitude, 1 Hz"
sine = BlockComponents.Sources.Sine(amplitude = 1, frequency = 1) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 120, "x2": 120, "y2": 220, "rot": 0}
}
}
}
"Voltage source driven by the sine signal"
vs = ElectricalComponents.Analog.Sources.VoltageSource() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 100, "y1": 300, "x2": 200, "y2": 400, "rot": 0}
}
}
}
"Series resistor (10 Ω)"
R1 = ElectricalComponents.Analog.Basic.Resistor(R = 10) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 350, "y1": 300, "x2": 450, "y2": 400, "rot": 0}
}
}
}
"Variable capacitor under test"
vc = ElectricalComponents.Analog.Basic.VariableCapacitor() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 580, "y1": 300, "x2": 680, "y2": 400, "rot": 270}
}
}
}
"Ramp for capacitance: 1e-3 F to 6e-3 F over 2 s"
ramp = BlockComponents.Sources.Ramp(height = 5e-3, offset = 1e-3, duration = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 500, "y1": 120, "x2": 600, "y2": 220, "rot": 0}
}
}
}
"Ground reference"
ground = ElectricalComponents.Analog.Basic.Ground() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 380, "y1": 550, "x2": 480, "y2": 650, "rot": 0}
}
}
}
relations
initial vc.v = 0
connect(sine.y, vs.V) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 150, "y": 170}], "E": 2}],
"renderStyle": "standard"
}
}
connect(vs.p, R1.p) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
connect(R1.n, vc.p) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
connect(vc.n, ground.g) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 630, "y": 600}], "E": 2}],
"renderStyle": "standard"
}
}
connect(vs.n, ground.g) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 150, "y": 600}], "E": 2}],
"renderStyle": "standard"
}
}
connect(ramp.y, vc.C) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 630, "y": 170}], "E": 2}],
"renderStyle": "standard"
}
}
metadata {
"Dyad": {
"tests": {"case1": {"stop": 1, "expect": {"signals": ["vc.v", "vc.i", "vc.Q"]}}}
}
}
endFlattened Source
dyad
"""
Test circuit for VariableCapacitor.
A sine voltage source (1 V, 1 Hz) drives an RC circuit where the
capacitance ramps from 1e-3 F to 6e-3 F over 2 s. A 10 Ω series
resistor provides the current path.
The charge-based formulation should produce smooth current despite
the time-varying capacitance.
"""
test component VariableCapacitor
"Sine signal source: 1 V amplitude, 1 Hz"
sine = BlockComponents.Sources.Sine(amplitude = 1, frequency = 1) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 20, "y1": 120, "x2": 120, "y2": 220, "rot": 0}
}
}
}
"Voltage source driven by the sine signal"
vs = ElectricalComponents.Analog.Sources.VoltageSource() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 100, "y1": 300, "x2": 200, "y2": 400, "rot": 0}
}
}
}
"Series resistor (10 Ω)"
R1 = ElectricalComponents.Analog.Basic.Resistor(R = 10) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 350, "y1": 300, "x2": 450, "y2": 400, "rot": 0}
}
}
}
"Variable capacitor under test"
vc = ElectricalComponents.Analog.Basic.VariableCapacitor() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 580, "y1": 300, "x2": 680, "y2": 400, "rot": 270}
}
}
}
"Ramp for capacitance: 1e-3 F to 6e-3 F over 2 s"
ramp = BlockComponents.Sources.Ramp(height = 5e-3, offset = 1e-3, duration = 2) {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 500, "y1": 120, "x2": 600, "y2": 220, "rot": 0}
}
}
}
"Ground reference"
ground = ElectricalComponents.Analog.Basic.Ground() {
"Dyad": {
"placement": {
"diagram": {"iconName": "default", "x1": 380, "y1": 550, "x2": 480, "y2": 650, "rot": 0}
}
}
}
relations
initial vc.v = 0
connect(sine.y, vs.V) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 150, "y": 170}], "E": 2}],
"renderStyle": "standard"
}
}
connect(vs.p, R1.p) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
connect(R1.n, vc.p) {"Dyad": {"edges": [{"S": 1, "M": [], "E": 2}], "renderStyle": "standard"}}
connect(vc.n, ground.g) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 630, "y": 600}], "E": 2}],
"renderStyle": "standard"
}
}
connect(vs.n, ground.g) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 150, "y": 600}], "E": 2}],
"renderStyle": "standard"
}
}
connect(ramp.y, vc.C) {
"Dyad": {
"edges": [{"S": 1, "M": [{"x": 630, "y": 170}], "E": 2}],
"renderStyle": "standard"
}
}
metadata {
"Dyad": {
"tests": {"case1": {"stop": 1, "expect": {"signals": ["vc.v", "vc.i", "vc.Q"]}}}
}
}
endTest Cases
Test Case case1
julia
pltjulia
pltjulia
pltRelated
Examples
Experiments
Analyses
Tests