@@ -14,15 +14,12 @@ class SSACVoltageSource(Tidy3dBaseModel):
14
14
"""
15
15
Small-signal AC voltage source.
16
16
17
+ Notes
18
+ -----
17
19
This source represents a small-signal AC excitation defined by a list of bias voltages,
18
20
a set of small-signal analysis frequencies, and a small-signal amplitude (linear scale).
19
21
20
- Notes
21
- -----
22
- - The bias `voltage` refer to the DC operating point above the simulation ground.
23
- - The `frequency` array lists the AC analysis frequencies (in Hz).
24
- - The `amplitude` is the small-signal AC magnitude (in Volts).
25
- - Currently, electrical ports are not defined.
22
+ The bias ``voltage`` refer to the DC operating point above the simulation ground. Currently, electrical ports are not defined.
26
23
27
24
Examples
28
25
--------
@@ -42,21 +39,21 @@ class SSACVoltageSource(Tidy3dBaseModel):
42
39
voltage : ArrayFloat1D = pd .Field (
43
40
...,
44
41
title = "DC Bias Voltages" ,
45
- description = "List of DC operating point voltages (above ground) used with ' VoltageBC' ." ,
42
+ description = "List of DC operating point voltages (above ground) used with :class:` VoltageBC` ." ,
46
43
units = VOLT ,
47
44
)
48
45
49
46
frequency : ArrayFloat1D = pd .Field (
50
47
...,
51
48
title = "AC Analysis Frequencies" ,
52
- description = "List of small-signal analysis frequencies (in Hz) ." ,
49
+ description = "List of small-signal analysis frequencies." ,
53
50
units = HERTZ ,
54
51
)
55
52
56
53
amplitude : pd .FiniteFloat = pd .Field (
57
54
...,
58
55
title = "Small-Signal Amplitude" ,
59
- description = "Small-signal AC amplitude (linear scale, in Volts) ." ,
56
+ description = "Small-signal AC amplitude." ,
60
57
units = VOLT ,
61
58
)
62
59
0 commit comments