Add N letter for SPICE MOS and BJT

This commit is contained in:
Vadim Kuznetsov 2024-01-03 11:08:50 +03:00
parent 08d468b9c3
commit 61b9b073c3
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ BJT_SPICE::BJT_SPICE()
Props.append(new Property("Pins", "4", true,"[3,4,5] Pins count"));
Props.append(new Property("type", "npn", true,"[npn,pnp] BJT type"));
Props.append(new Property("Letter", "Q", true,"[npn,pnp] BJT type"));
Props.append(new Property("Letter", "Q", true,"[Q,X,N] SPICE letter"));
Props.append(new Property("Model", "", true,"Param list and\n .model spec."));
Props.append(new Property("Model_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("Model_Line 3", "", false,"+ continuation line 2"));

View File

@ -29,7 +29,7 @@ MOS_SPICE::MOS_SPICE()
Description = QObject::tr("Unified (M,X,3-,4-pin) MOS:\nMultiple line ngspice or Xyce M model specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
Simulator = spicecompat::simSpice;
Props.append(new Property("Letter", "M", true,"[M,X] SPICE letter"));
Props.append(new Property("Letter", "M", true,"[M,X,N] SPICE letter"));
Props.append(new Property("Pins", "4", true,"[3,4] Pins count"));
Props.append(new Property("type", "nmos", true,"[nmos,pmos] Channel type"));
Props.append(new Property("M", "", true,"Param list and\n .model spec."));