@tscircuit/ngspice-spice-engine 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +73 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -127,7 +127,7 @@ var getSimulation = async () => {
|
|
|
127
127
|
};
|
|
128
128
|
var extractRequestedPlots = (spiceString) => {
|
|
129
129
|
const match = spiceString.match(/\.print\s+tran\s+(.*)/i);
|
|
130
|
-
if (!match
|
|
130
|
+
if (!match?.[1]) {
|
|
131
131
|
return null;
|
|
132
132
|
}
|
|
133
133
|
const tokens = match[1].match(/[VI]\s*\([^)]+\)/gi);
|
|
@@ -155,7 +155,7 @@ var getNetName = (rawName) => {
|
|
|
155
155
|
return match[1] ?? rawName;
|
|
156
156
|
};
|
|
157
157
|
var eecircuitResultToVGraphs = (result, spiceString) => {
|
|
158
|
-
if (!result
|
|
158
|
+
if (!result?.data || result.dataType !== "real") {
|
|
159
159
|
return [];
|
|
160
160
|
}
|
|
161
161
|
const timeData = result.data.find((item) => item.type === "time");
|
|
@@ -240,6 +240,74 @@ var voltageGraphsToCircuitJson = (graphs, spiceString) => {
|
|
|
240
240
|
end_time_ms: (tranParams?.tstop ?? 0) * 1e3
|
|
241
241
|
}));
|
|
242
242
|
};
|
|
243
|
+
var splitFunctionArguments = (input) => {
|
|
244
|
+
const args = [];
|
|
245
|
+
let startIndex = 0;
|
|
246
|
+
let parenDepth = 0;
|
|
247
|
+
let braceDepth = 0;
|
|
248
|
+
for (let index = 0; index < input.length; index++) {
|
|
249
|
+
const char = input[index];
|
|
250
|
+
if (char === "(") parenDepth++;
|
|
251
|
+
else if (char === ")") parenDepth--;
|
|
252
|
+
else if (char === "{") braceDepth++;
|
|
253
|
+
else if (char === "}") braceDepth--;
|
|
254
|
+
else if (char === "," && parenDepth === 0 && braceDepth === 0) {
|
|
255
|
+
args.push(input.slice(startIndex, index));
|
|
256
|
+
startIndex = index + 1;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
args.push(input.slice(startIndex));
|
|
260
|
+
return args;
|
|
261
|
+
};
|
|
262
|
+
var convertPspiceIfFunctions = (input) => {
|
|
263
|
+
let output = "";
|
|
264
|
+
let index = 0;
|
|
265
|
+
while (index < input.length) {
|
|
266
|
+
const ifMatch = input.slice(index).match(/^if\s*\(/i);
|
|
267
|
+
if (!ifMatch) {
|
|
268
|
+
output += input[index];
|
|
269
|
+
index++;
|
|
270
|
+
continue;
|
|
271
|
+
}
|
|
272
|
+
const openParenIndex = index + ifMatch[0].length - 1;
|
|
273
|
+
let depth = 0;
|
|
274
|
+
let closeParenIndex = -1;
|
|
275
|
+
for (let scanIndex = openParenIndex; scanIndex < input.length; scanIndex++) {
|
|
276
|
+
const char = input[scanIndex];
|
|
277
|
+
if (char === "(") depth++;
|
|
278
|
+
else if (char === ")") {
|
|
279
|
+
depth--;
|
|
280
|
+
if (depth === 0) {
|
|
281
|
+
closeParenIndex = scanIndex;
|
|
282
|
+
break;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
if (closeParenIndex === -1) {
|
|
287
|
+
output += input.slice(index);
|
|
288
|
+
break;
|
|
289
|
+
}
|
|
290
|
+
const innerExpression = convertPspiceIfFunctions(
|
|
291
|
+
input.slice(openParenIndex + 1, closeParenIndex)
|
|
292
|
+
);
|
|
293
|
+
const args = splitFunctionArguments(innerExpression);
|
|
294
|
+
if (args.length !== 3) {
|
|
295
|
+
output += input.slice(index, closeParenIndex + 1);
|
|
296
|
+
} else {
|
|
297
|
+
output += `((${args[0].trim()}) ? (${args[1].trim()}) : (${args[2].trim()}))`;
|
|
298
|
+
}
|
|
299
|
+
index = closeParenIndex + 1;
|
|
300
|
+
}
|
|
301
|
+
return output;
|
|
302
|
+
};
|
|
303
|
+
var preprocessPspiceForEmbeddedNgspice = (spiceString) => {
|
|
304
|
+
let processed = spiceString.replace(/\bif\s*\r?\n\+\s*\(/gi, "if(").replace(/\.MODEL(\s+\S+\s+)VSWITCH\b/gi, ".MODEL$1SW").replace(/\b(VON|VOFF)\s*=\s*[^\s)]+/gi, "").replace(
|
|
305
|
+
/\b(RON|ROFF)\s*=\s*([^\s)]+)/gi,
|
|
306
|
+
(_match, key, value) => `${key}=${value.replace(/V$/i, "")}`
|
|
307
|
+
).replace(/\bTC\s*=\s*([^\s,]+)\s*,\s*([^\s)]+)/gi, "TC1=$1 TC2=$2");
|
|
308
|
+
processed = convertPspiceIfFunctions(processed);
|
|
309
|
+
return processed.replace(/\s&\s/g, " && ").replace(/\s\|\s/g, " || ").replace(/\s\^\s/g, " != ");
|
|
310
|
+
};
|
|
243
311
|
var configureNgBehavior = (simulation, pspiceCompatibility) => {
|
|
244
312
|
const simulationWithCommandList = simulation;
|
|
245
313
|
const commandList = simulationWithCommandList.commandList;
|
|
@@ -262,9 +330,10 @@ var configureNgBehavior = (simulation, pspiceCompatibility) => {
|
|
|
262
330
|
commandList.splice(sourceCommandIndex, 0, ngBehaviorCommand);
|
|
263
331
|
};
|
|
264
332
|
var simulate = async (spiceString, options) => {
|
|
333
|
+
const simulationSpiceString = options.pspiceCompatibility ? preprocessPspiceForEmbeddedNgspice(spiceString) : spiceString;
|
|
265
334
|
const simulation = await getSimulation();
|
|
266
|
-
simulation.setNetList(
|
|
267
|
-
configureNgBehavior(simulation,
|
|
335
|
+
simulation.setNetList(simulationSpiceString);
|
|
336
|
+
configureNgBehavior(simulation, false);
|
|
268
337
|
let result;
|
|
269
338
|
try {
|
|
270
339
|
result = await simulation.runSim();
|