Prototype Instruction object.
| 18 | 'step', 'params'] |
| 19 | |
| 20 | class instruction(object): |
| 21 | """ |
| 22 | Prototype Instruction object. |
| 23 | """ |
| 24 | def __init__(self): |
| 25 | |
| 26 | # Attributes holding the results of the execution |
| 27 | |
| 28 | self.DCvalue = [] |
| 29 | """ |
| 30 | Zero-frequency value in case of dataType 'pz'. (sympy.Expr, sympy.Float) |
| 31 | """ |
| 32 | self.poles = [] |
| 33 | """ |
| 34 | Complex frequencies in [rad/s] (list) |
| 35 | """ |
| 36 | |
| 37 | self.zeros = [] |
| 38 | """ |
| 39 | Complex frequencies in [rad/s] (list) |
| 40 | """ |
| 41 | self.svarTerms = {} |
| 42 | """ |
| 43 | Dict with source variances |
| 44 | |
| 45 | Key = (str) name of the dcvar source |
| 46 | Value = (sympy.Expr) dcvar value in V^2 or A^2 |
| 47 | """ |
| 48 | |
| 49 | self.ivarTerms = {} |
| 50 | """ |
| 51 | Dict with lists with contributions to source-referred variance. |
| 52 | |
| 53 | Key = (str) name of the dcvar source |
| 54 | Value = (sympy.Expr) contribution to the source-referred variance in |
| 55 | V^2 or A^2 |
| 56 | """ |
| 57 | |
| 58 | self.ovarTerms = {} |
| 59 | """ |
| 60 | Dict with lists with contributions to detector-referred variance. |
| 61 | |
| 62 | Key = (str) name of the dcvar source |
| 63 | Value = (sympy.Expr) contribution to the detector-referred variance in |
| 64 | V^2 or A^2 |
| 65 | """ |
| 66 | |
| 67 | self.ivar = [] |
| 68 | """ |
| 69 | Total source-referred variance in V^2 or A^2 (sympy.Expr) |
| 70 | """ |
| 71 | |
| 72 | self.ovar = [] |
| 73 | """ |
| 74 | Total detector-referred variance in V^2 or A^2 (sympy.Expr) |
| 75 | """ |
| 76 | |
| 77 | self.solve = [] |
no outgoing calls
no test coverage detected