Browse Source

Add some comments for inppas1,2,3

pre-master-46
Holger Vogt 5 years ago
parent
commit
db5c6cd0ec
  1. 10
      src/frontend/spiceif.c

10
src/frontend/spiceif.c

@ -158,17 +158,17 @@ if_inpdeck(struct card *deck, INPtables **tab)
ft_curckt->ci_curTask = ft_curckt->ci_defTask; ft_curckt->ci_curTask = ft_curckt->ci_defTask;
/* reset the model table, will be filled in anew in INPpas1() */
/* Parse the .model lines. Enter the model into the global model table modtab. */
modtab = NULL; modtab = NULL;
INPpas1(ckt, deck->nextcard, *tab); INPpas1(ckt, deck->nextcard, *tab);
/* store the new model table in the current circuit */ /* store the new model table in the current circuit */
ft_curckt->ci_modtab = modtab; ft_curckt->ci_modtab = modtab;
INPpas2(ckt, deck->nextcard, *tab, ft_curckt->ci_defTask);
/* INPpas2 has been modified to ignore .NODESET and .IC
* cards. These are left till INPpas3 so that we can check for
* nodeset/ic of non-existant nodes. */
/* Scan through the instance lines and parse the circuit. */
INPpas2(ckt, deck->nextcard, *tab, ft_curckt->ci_defTask);
/* Fill in .NODESET and .IC data.
* nodeset/ic of non-existent nodes is rejected. */
INPpas3(ckt, deck->nextcard, INPpas3(ckt, deck->nextcard,
*tab, ft_curckt->ci_defTask, ft_sim->nodeParms, *tab, ft_curckt->ci_defTask, ft_sim->nodeParms,
ft_sim->numNodeParms); ft_sim->numNodeParms);

Loading…
Cancel
Save