1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
//! Spectre-specific blocks for use in testbenches.

use rust_decimal::Decimal;
use scir::ParamValue;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::path::PathBuf;
use substrate::block::Block;
use substrate::io::schematic::HardwareType;
use substrate::io::{Array, Io, TwoTerminalIo};
use substrate::schematic::primitives::DcVsource;
use substrate::schematic::{CellBuilder, ExportsNestedData, PrimitiveBinding, Schematic};
use substrate::simulation::waveform::{TimeWaveform, Waveform};

use crate::{Primitive, Spectre};

/// Data associated with a pulse [`Vsource`].
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct Pulse {
    /// The zero value of the pulse.
    pub val0: Decimal,
    /// The one value of the pulse.
    pub val1: Decimal,
    /// The period of the pulse.
    pub period: Option<Decimal>,
    /// Rise time.
    pub rise: Option<Decimal>,
    /// Fall time.
    pub fall: Option<Decimal>,
    /// The pulse width.
    pub width: Option<Decimal>,
    /// Waveform delay.
    pub delay: Option<Decimal>,
}

/// A voltage source.
#[derive(Serialize, Deserialize, Debug, Clone, Hash, PartialEq, Eq)]
pub enum Vsource {
    /// A dc voltage source.
    Dc(Decimal),
    /// An AC small-signal current source.
    Ac(AcSource),
    /// A pulse voltage source.
    Pulse(Pulse),
    /// A piecewise linear source
    Pwl(Waveform<Decimal>),
}

impl Vsource {
    /// Creates a new DC voltage source.
    #[inline]
    pub fn dc(value: Decimal) -> Self {
        Self::Dc(value)
    }

    /// Creates a new pulse voltage source.
    #[inline]
    pub fn pulse(value: Pulse) -> Self {
        Self::Pulse(value)
    }

    /// Creates a new piecewise linear voltage source.
    #[inline]
    pub fn pwl(value: Waveform<Decimal>) -> Self {
        Self::Pwl(value)
    }
}

impl Block for Vsource {
    type Io = TwoTerminalIo;

    fn id() -> arcstr::ArcStr {
        arcstr::literal!("vsource")
    }
    fn name(&self) -> arcstr::ArcStr {
        // `vsource` is a reserved Spectre keyword,
        // so we call this block `uservsource`.
        arcstr::format!("uservsource")
    }
    fn io(&self) -> Self::Io {
        Default::default()
    }
}

impl ExportsNestedData for Vsource {
    type NestedData = ();
}

impl Schematic<Spectre> for Vsource {
    fn schematic(
        &self,
        io: &<<Self as Block>::Io as HardwareType>::Bundle,
        cell: &mut CellBuilder<Spectre>,
    ) -> substrate::error::Result<Self::NestedData> {
        use arcstr::literal;
        let mut params = HashMap::new();
        match self {
            Vsource::Dc(dc) => {
                params.insert(literal!("type"), ParamValue::String(literal!("dc")));
                params.insert(literal!("dc"), ParamValue::Numeric(*dc));
            }
            Vsource::Pulse(pulse) => {
                params.insert(literal!("type"), ParamValue::String(literal!("pulse")));
                params.insert(literal!("val0"), ParamValue::Numeric(pulse.val0));
                params.insert(literal!("val1"), ParamValue::Numeric(pulse.val1));
                if let Some(period) = pulse.period {
                    params.insert(literal!("period"), ParamValue::Numeric(period));
                }
                if let Some(rise) = pulse.rise {
                    params.insert(literal!("rise"), ParamValue::Numeric(rise));
                }
                if let Some(fall) = pulse.fall {
                    params.insert(literal!("fall"), ParamValue::Numeric(fall));
                }
                if let Some(width) = pulse.width {
                    params.insert(literal!("width"), ParamValue::Numeric(width));
                }
                if let Some(delay) = pulse.delay {
                    params.insert(literal!("delay"), ParamValue::Numeric(delay));
                }
            }
            Vsource::Pwl(waveform) => {
                let mut pwl = String::new();
                pwl.push('[');
                for (i, pt) in waveform.values().enumerate() {
                    use std::fmt::Write;
                    if i != 0 {
                        pwl.push(' ');
                    }
                    write!(&mut pwl, "{} {}", pt.t(), pt.x()).unwrap();
                }
                pwl.push(']');
                params.insert(literal!("type"), ParamValue::String(literal!("pwl")));
                params.insert(literal!("wave"), ParamValue::String(pwl.into()));
            }
            Vsource::Ac(ac) => {
                params.insert(literal!("type"), ParamValue::String(literal!("dc")));
                params.insert(literal!("dc"), ParamValue::Numeric(ac.dc));
                params.insert(literal!("mag"), ParamValue::Numeric(ac.mag));
                params.insert(literal!("phase"), ParamValue::Numeric(ac.phase));
            }
        };

        let mut prim = PrimitiveBinding::new(Primitive::RawInstance {
            cell: arcstr::literal!("vsource"),
            ports: vec!["p".into(), "n".into()],
            params,
        });
        prim.connect("p", io.p);
        prim.connect("n", io.n);
        cell.set_primitive(prim);
        Ok(())
    }
}

impl Schematic<Spectre> for DcVsource {
    fn schematic(
        &self,
        io: &<<Self as Block>::Io as HardwareType>::Bundle,
        cell: &mut CellBuilder<Spectre>,
    ) -> substrate::error::Result<Self::NestedData> {
        cell.flatten();
        cell.instantiate_connected(Vsource::dc(self.value()), io);
        Ok(())
    }
}

/// An AC source.
#[derive(Serialize, Deserialize, Default, Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct AcSource {
    /// The DC value.
    pub dc: Decimal,
    /// The magnitude.
    pub mag: Decimal,
    /// The phase, **in degrees*.
    pub phase: Decimal,
}

/// A current source.
///
/// Positive current is drawn from the `p` node and enters the `n` node.
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum Isource {
    /// A DC current source.
    Dc(Decimal),
    /// An AC small-signal current source.
    Ac(AcSource),
    /// A pulse current source.
    Pulse(Pulse),
}

impl Isource {
    /// Creates a new DC current source.
    #[inline]
    pub fn dc(value: Decimal) -> Self {
        Self::Dc(value)
    }

    /// Creates a new pulse current source.
    #[inline]
    pub fn pulse(value: Pulse) -> Self {
        Self::Pulse(value)
    }

    /// Creates a new AC current source.
    #[inline]
    pub fn ac(value: AcSource) -> Self {
        Self::Ac(value)
    }
}

impl Block for Isource {
    type Io = TwoTerminalIo;

    fn id() -> arcstr::ArcStr {
        arcstr::literal!("isource")
    }
    fn name(&self) -> arcstr::ArcStr {
        // `isource` is a reserved Spectre keyword,
        // so we call this block `userisource`.
        arcstr::format!("userisource")
    }
    fn io(&self) -> Self::Io {
        Default::default()
    }
}

impl ExportsNestedData for Isource {
    type NestedData = ();
}

impl Schematic<Spectre> for Isource {
    fn schematic(
        &self,
        io: &<<Self as Block>::Io as HardwareType>::Bundle,
        cell: &mut CellBuilder<Spectre>,
    ) -> substrate::error::Result<Self::NestedData> {
        use arcstr::literal;
        let mut params = HashMap::new();
        match self {
            Isource::Dc(dc) => {
                params.insert(literal!("type"), ParamValue::String(literal!("dc")));
                params.insert(literal!("dc"), ParamValue::Numeric(*dc));
            }
            Isource::Pulse(pulse) => {
                params.insert(literal!("type"), ParamValue::String(literal!("pulse")));
                params.insert(literal!("val0"), ParamValue::Numeric(pulse.val0));
                params.insert(literal!("val1"), ParamValue::Numeric(pulse.val1));
                if let Some(period) = pulse.period {
                    params.insert(literal!("period"), ParamValue::Numeric(period));
                }
                if let Some(rise) = pulse.rise {
                    params.insert(literal!("rise"), ParamValue::Numeric(rise));
                }
                if let Some(fall) = pulse.fall {
                    params.insert(literal!("fall"), ParamValue::Numeric(fall));
                }
                if let Some(width) = pulse.width {
                    params.insert(literal!("width"), ParamValue::Numeric(width));
                }
                if let Some(delay) = pulse.delay {
                    params.insert(literal!("delay"), ParamValue::Numeric(delay));
                }
            }
            Isource::Ac(ac) => {
                params.insert(literal!("type"), ParamValue::String(literal!("dc")));
                params.insert(literal!("dc"), ParamValue::Numeric(ac.dc));
                params.insert(literal!("mag"), ParamValue::Numeric(ac.mag));
                params.insert(literal!("phase"), ParamValue::Numeric(ac.phase));
            }
        };

        let mut prim = PrimitiveBinding::new(Primitive::RawInstance {
            cell: arcstr::literal!("isource"),
            ports: vec!["p".into(), "n".into()],
            params,
        });
        prim.connect("p", io.p);
        prim.connect("n", io.n);
        cell.set_primitive(prim);
        Ok(())
    }
}

/// A current probe.
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct Iprobe;

impl Block for Iprobe {
    type Io = TwoTerminalIo;

    fn id() -> arcstr::ArcStr {
        arcstr::literal!("iprobe")
    }
    fn name(&self) -> arcstr::ArcStr {
        // `iprobe` is a reserved Spectre keyword,
        // so we call this block `useriprobe`.
        arcstr::format!("useriprobe")
    }
    fn io(&self) -> Self::Io {
        Default::default()
    }
}

impl ExportsNestedData for Iprobe {
    type NestedData = ();
}

impl Schematic<Spectre> for Iprobe {
    fn schematic(
        &self,
        io: &<<Self as Block>::Io as HardwareType>::Bundle,
        cell: &mut CellBuilder<Spectre>,
    ) -> substrate::error::Result<Self::NestedData> {
        let mut prim = PrimitiveBinding::new(Primitive::RawInstance {
            cell: arcstr::literal!("iprobe"),
            ports: vec!["in".into(), "out".into()],
            params: HashMap::new(),
        });
        prim.connect("in", io.p);
        prim.connect("out", io.n);
        cell.set_primitive(prim);
        Ok(())
    }
}

/// An n-port black box.
#[derive(Serialize, Deserialize, Debug, Clone, Hash, PartialEq, Eq)]
pub struct Nport {
    parameter_file: PathBuf,
    ports: usize,
}

impl Nport {
    /// Creates a new n-port with the given parameter file and number of ports.
    pub fn new(ports: usize, parameter_file: impl Into<PathBuf>) -> Self {
        Self {
            parameter_file: parameter_file.into(),
            ports,
        }
    }
}

/// The interface of an [`Nport`].
#[derive(Io, Clone, Debug)]
pub struct NportIo {
    /// The ports.
    ///
    /// Each port contains two signals: a p terminal and an n terminal.
    pub ports: Array<TwoTerminalIo>,
}

impl Block for Nport {
    type Io = NportIo;

    fn id() -> arcstr::ArcStr {
        arcstr::literal!("nport")
    }
    fn name(&self) -> arcstr::ArcStr {
        // `nport` is a reserved Spectre keyword,
        // so we call this block `usernport`.
        arcstr::format!("usernport")
    }
    fn io(&self) -> Self::Io {
        NportIo {
            ports: Array::new(self.ports, Default::default()),
        }
    }
}

impl ExportsNestedData for Nport {
    type NestedData = ();
}

impl Schematic<Spectre> for Nport {
    fn schematic(
        &self,
        io: &<<Self as Block>::Io as HardwareType>::Bundle,
        cell: &mut CellBuilder<Spectre>,
    ) -> substrate::error::Result<Self::NestedData> {
        let mut prim = PrimitiveBinding::new(Primitive::RawInstance {
            cell: arcstr::literal!("nport"),
            ports: (1..=self.ports)
                .flat_map(|i| [arcstr::format!("t{i}"), arcstr::format!("b{i}")])
                .collect(),
            params: HashMap::from_iter([(
                arcstr::literal!("file"),
                ParamValue::String(arcstr::format!("{:?}", self.parameter_file)),
            )]),
        });
        for i in 0..self.ports {
            prim.connect(arcstr::format!("t{}", i + 1), io.ports[i].p);
            prim.connect(arcstr::format!("b{}", i + 1), io.ports[i].n);
        }
        cell.set_primitive(prim);
        Ok(())
    }
}