Verilog-A models in NGspice

Introduction

As part of my thesis on silicon carbide integrated circuit design, I received transistor models in Verilog-A. Specifically, the transistor behavior was described in a modified version of the BSIM4 MOSFET model. Most SPICE simulators, such as LTspice or NGspice, have support for BSIM3 and BSIM4 transistors, because the BSIM model, which is originally written in Verilog-A, is translated and compiled as part of those spice engines. However, custom Verilog-A component libraries are not compatible with these spice engines. This post describes how I got a Verilog-A model description to work in NGspice.

The transistor models I received consist of two files:

Unfortunately, I cannot publicly share the actual Verilog-A model description file or the spice “.lib” model description file, since these are not owned by me. However, the process described below applies to all Verilog-A based models, such as those used for simulation in Cadence Virtuoso Spectre, HSpice or ADS. The BSIM4SIC model is a modified version of the BSIM4 model, although only the original BSIM4 model is natively supported in LTspice or NGspice.

The process will consist of two steps: 

Requirements

Verifying the installation of OpenVAF and Qucs-S

Before starting the whole process, we should verify whether all the programs are correctly installed. Open a terminal in any location, and type “openvaf --help”. If you receive the OpenVAF documentation, the installation was successful. Otherwise, ensure that the openvaf executable is added to your PATH.

Next, check whether the following folder exists: “…\Users\$your_username\QucsWorkspace\”

Additionally, you can add the NGspice executable (located in: “Program Files\Qucs-S\bin\”) to your PATH by editing the windows system variables. However, it is not a requirement

Translating the Verilog-A model into an .osdi file

NGspice, and therefore Qucs-S, cannot directly interpret the Verilog-A file. Instead, OpenVAF is used to translate your model into an .osdi file. This can then be referenced in Qucs-S. The steps are as follows:

3. Open a terminal in this folder

4. Type the command: “openvaf  .\XXXX.va”

5. Success. The folder should now contain a few extra files, among which a “XXXX.osdi” file. See the screenshot below.

6. From now on, we only need the “XXXX.osdi” file and your spice “.lib” model description file. Keep these in the “\library_prj\” folder.

If step 4 fails due to a linker error, check whether the MSVC build tools were correctly installed (including the “Desktop development with C++” plugin). Otherwise, it can also be that your Verilog-A file contains errors, such as integer parameters initialized as real, or external parameters which are not flagged as such.

You now have an NGspice-compatible model file!


Verifying the .osdi file

This step is optional. If NGspice is added to path, you can open an NGspice console in the \library_prj\” folder, and verify whether you can load your model using “.model” and pre_osdi statements. Examples on how to write a short NGspice netlist can be found on the OpenVAF website.

Including the model in the Qucs-S GUI

The crucial and difficult part is over, now starts the tedious and annoying part. Unfortunately, Qucs-S does not have an easy to follow .osdi model import wizard. However, we want to be able to use your model as a component in circuits. So the model needs to have a symbol. And when the symbol is placed in a schematic, it should simulate as expected. 

Therefore, I created the following workflow to import .osdi models as library components:

In my case, the component will have externally defined parameters for the length and width of my MOSFET. Additionally, I have to do the process for both the NMOS and PMOS variants.

Again, in the \library_prj\” folder, open a text editor and manually write the netlist describing the subcircuit. The only thing this netlist needs to do is make available one instance of your component to higher level schematics. The netlist describing my NMOS component is shown below. Please note:

The figure below shows the contents of the \library_prj\” folder after the creation of the .lib files. There is a .lib file for both the NMOS and PMOS transistors. Each file describes a subcircuit as can be seen in the netlist above. The unnecessary files generated by OpenVAF have been removed.

2. Create a schematic in Qucs-S

2. In a blank schematic (it should already be open), place a SPICE library device block (can be found under “Components ⇾ file components”)

3. Double-click the SPICE library device block to configure which files to attach to the block.

4. Place as many ports as you need and connect them to the SPICE library device block

5. Save the schematic.

3. Create a symbol in Qucs-S

Below, you can see the contents of the “…\library_prj\” folder after the schematics and symbols are created and saved. Note that both the schematic and the symbol are saved in the  “.sch” file.

4. Create a Qucs-S library component

Verify that all your desired components have a schematic within the project you created. For example, I want to include both a symbol for an NMOS transistor and for a PMOS transistor.

Then, navigate to “Projects ⇾ Create library”. Follow the steps until you can click “Create”. 

The image below shows the contents of the “…\user_lib\ folder after the library has been created. This is the folder where user library components are stored. However, you cannot delete the “…\library_prj\” folder, since its contents are being referenced by the files in the user library.

Note the SiC_MOSFETS file, which describes the schematics and symbols of your components. The folder “SiC_MOSFETS” holds the .lib files that link your components to the .osdi file in the “…\library_prj\” folder.

Use your components in schematics

You can now close the project containing your symbols. If you create a new project, you should be able to place your component in a schematic by navigating to “Libraries ⇾ User Libraries”. Below you can see a schematic that uses one of the MOSFETs from my SiC library.