Add simple check for ground (issue #18)

This commit is contained in:
Vadim Kuznetzov 2017-04-30 11:04:28 +03:00
parent 56c533f080
commit 57c37030b7
4 changed files with 31 additions and 0 deletions

View File

@ -120,6 +120,22 @@ bool AbstractSpiceKernel::checkSchematic(QStringList &incompat)
return incompat.isEmpty();
}
/*!
* \brief AbstractSpiceKernel::checkGround Check if schematic contain at least one ground.
* \return True if ground found, false otherwise
*/
bool AbstractSpiceKernel::checkGround()
{
bool r = false;
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
if (pc->Model=="GND") {
r = true;
break;
}
}
return r;
}
/*!
* \brief AbstractSpiceKernel::startNetlist Outputs .PARAM , .GLOABAL_PARAM,
* and .OPTIONS sections to netlist. These sections are placed on schematic

View File

@ -62,6 +62,7 @@ protected:
virtual void createNetlist(QTextStream& stream, int NumPorts,QStringList& simulations,
QStringList& vars, QStringList &outputs);
void removeAllSimulatorOutputs();
bool checkGround();
public:

View File

@ -383,6 +383,13 @@ void Ngspice::slotSimulate()
return;
}
if (!checkGround()) {
output.append("No Ground found. Please add at least one ground!\n");
emit finished();
emit errors(QProcess::FailedToStart);
return;
}
if (!checkNodeNames(incompat)) {
QString s = incompat.join("; ");
output.append("There were Nutmeg-incompatible node names. Simulator cannot proceed.\n");

View File

@ -242,6 +242,13 @@ void Xyce::slotSimulate()
return;
}
if (!checkGround()) {
output.append("No Ground found. Please add at least one ground!\n");
emit finished();
emit errors(QProcess::FailedToStart);
return;
}
int num=0;
netlistQueue.clear();
output_files.clear();