From a3536fa9de030ce26af7ebe00508ef632826e422 Mon Sep 17 00:00:00 2001 From: YurenHao0426 Date: Sat, 29 Aug 2026 16:34:59 -0500 Subject: docs: label SPICE reference configuration --- experiments/spice_autozero_primitive_p8.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/experiments/spice_autozero_primitive_p8.py b/experiments/spice_autozero_primitive_p8.py index 3dec783..aba678b 100644 --- a/experiments/spice_autozero_primitive_p8.py +++ b/experiments/spice_autozero_primitive_p8.py @@ -131,7 +131,7 @@ def parse_args() -> argparse.Namespace: def main() -> None: args = parse_args() records = [simulate(configuration) for configuration in configurations()] - nominal = next(record for record in records if ( + reference = next(record for record in records if ( record["acquisition_seconds"] == 1e-6 and record["switch_resistance_ohm"] == 200.0 and record["hold_capacitance_f"] == 1e-9 @@ -150,7 +150,7 @@ def main() -> None: "buffer_and_subtractor": "ideal controlled voltage sources", "switch": "ngspice voltage-controlled switch", }, - "nominal_configuration": nominal, + "reference_configuration": reference, "configuration_count": len(records), "fraction_below_1_percent_error_at_start": sum( record["start_relative_error"] < 0.01 for record in records @@ -164,7 +164,7 @@ def main() -> None: args.output.write_text(json.dumps(output, indent=2) + "\n") print(json.dumps({ "configuration_count": len(records), - "nominal_configuration": nominal, + "reference_configuration": reference, "fraction_below_1_percent_error_at_start": ( output["fraction_below_1_percent_error_at_start"]), "fraction_below_1_percent_error_at_end": ( -- cgit v1.2.3