Source code for piel.tools.hdl21.simulator

"""
This module provides functions to configure and run various measurement of simulations for electronic circuits using HDL21 and NGSPICE.
It includes utilities to set up NGSPICE simulations, configure operating point and transient simulations, and handle the results.
"""

import numpy as np
import pandas as pd
from typing import Literal, Any
from ...types import PathTypes, AnalogueModule
from ...file_system import return_path

__all__ = [
    "configure_ngspice_simulation",
    "configure_operating_point_simulation",
    "configure_transient_simulation",
    "run_simulation",
]


[docs] def configure_ngspice_simulation( run_directory: PathTypes = ".", ): """ Configures the NGSPICE simulation for the circuit and returns a simulation options class. Args: run_directory (PathTypes): Directory where the simulation will be run. Returns: vsp.SimOptions: Configured NGSPICE simulation options. """ import vlsirtools.spice as vsp from ...file_system import return_path run_directory = return_path(run_directory) simulation_options = vsp.SimOptions( simulator=vsp.SupportedSimulators.NGSPICE, fmt=vsp.ResultFormat.SIM_DATA, rundir=run_directory, ) return simulation_options
[docs] def configure_operating_point_simulation( testbench: AnalogueModule, **kwargs, ): import hdl21.sim as hs """ Configures the DC operating point simulation for the circuit and returns a simulation class. Args: testbench (h.Module): HDL21 testbench. **kwargs: Additional arguments to be passed to the operating point simulation, such as the simulation name. Returns: hs.Sim: HDL21 simulation class for the operating point simulation. """ @hs.sim class Simulation: tb = testbench operating_point_tb = hs.Op(**kwargs) return Simulation
[docs] def configure_transient_simulation( testbench: AnalogueModule, stop_time_s: float, step_time_s: float, **kwargs, ): import hdl21 as h import hdl21.sim as hs """ Configures the transient simulation for the circuit and returns a simulation class. Args: testbench (h.Module): HDL21 testbench. stop_time_s (float): Stop time of the simulation in seconds. step_time_s (float): Step time of the simulation in seconds. **kwargs: Additional arguments to be passed to the transient simulation. Returns: hs.Sim: HDL21 simulation class for the transient simulation. """ @hs.sim class Simulation: tb = testbench transient_tb = hs.Tran( tstop=stop_time_s * h.prefix.UNIT, tstep=step_time_s * h.prefix.UNIT, **kwargs, ) return Simulation
def save_results_to_csv( results: Any, # hs.SimResult, file_name: str, save_directory: PathTypes = ".", ): """ Converts the simulation results to a pandas dataframe and saves it to a CSV file. Args: results (hs.SimResult): Simulation results to be saved. file_name (str): Name of the CSV file to save the results. save_directory (PathTypes): Directory where the CSV file will be saved. Returns: None """ save_directory = return_path(save_directory) # TODO check that there are more than one analysis analysis_results = results.an[0].data if type(next(iter(analysis_results.values()))) not in ( list, dict, tuple, np.ndarray, ): analysis_results = pd.DataFrame(analysis_results, index=[0]) else: analysis_results = pd.DataFrame(analysis_results) analysis_results.to_csv(save_directory / (file_name + ".csv"))
[docs] def run_simulation( simulation: Any, # h.sim.Sim, simulator_name: Literal["ngspice"] = "ngspice", simulation_options: Any = None, # Optional[vsp.SimOptions] = None, to_csv: bool = True, ): """ Runs the simulation for the circuit and returns the results. Args: simulation (h.sim.Sim): HDL21 simulation class. simulator_name (Literal["ngspice"]): Name of the simulator to use. simulation_options (Optional[vsp.SimOptions]): Options for the simulation. Defaults to None. to_csv (bool): Whether to save the results to a CSV file. Defaults to True. Returns: hs.SimResult: Results of the simulation. """ import vlsirtools.spice as vsp if simulator_name == "ngspice": if simulation_options is None: if not vsp.ngspice.available(): print( "NGSPICE is not available. Please install it. Check by running `ngspice` in the terminal." ) return simulation_options = configure_ngspice_simulation() results = simulation.run(simulation_options) else: print("HDLSimulator not supported.") return if to_csv: save_results_to_csv(results, simulation.tb.name) return results