Show error message from S2Spice

This commit is contained in:
Vadim Kuznetsov 2023-10-07 11:23:01 +03:00
parent f79e7337e4
commit a2d5119e37
3 changed files with 13 additions and 4 deletions

View File

@ -46,11 +46,12 @@ bool S2Spice::convertTouchstone(QTextStream *stream)
int numf;
double z[MAXPORTS];
double ph, prevph, offset, mag;
double ph, offset, mag;
QFile ff(file);
if (!ff.open(QIODevice::ReadOnly)) {
err_text = "Failed to open file: " + file + "\n";
return false;
}
QTextStream in_stream(&ff);
@ -59,7 +60,7 @@ bool S2Spice::convertTouchstone(QTextStream *stream)
QFileInfo inf(file);
ports = inf.suffix().mid(1,1).toInt();
if ( (ports < 1) || (ports > MAXPORTS) ) {
//printf( "The circuit has %d ports\n", ports );
err_text = "Invalid port number in file: " + file + "\n";
return false;
}
@ -98,6 +99,7 @@ bool S2Spice::convertTouchstone(QTextStream *stream)
}
if (!next_line.contains(" S " )) {
err_text = "Wrong data in file: " + file + "\n";
return false;
}
/* input impedances */
@ -178,8 +180,8 @@ bool S2Spice::convertTouchstone(QTextStream *stream)
.arg(j + 2).arg(10 * (j + 1)).arg(ports + 1).arg(model_cnt);
}
(*stream) << QString(".model xfer%1 xfer R_I=true table=[\n").arg(model_cnt);
offset = 0;
prevph = 0;
for ( f = 0; f < numf; f++ )
{
double a = s[f][i][j][0];

View File

@ -30,12 +30,15 @@ private:
double z0;
QString file;
QString device_name;
QString err_text;
public:
void setZ0(double z0_) { z0 = z0_; }
void setFile(const QString &file_) { file = file_; }
void setDeviceName(const QString &name_) {device_name = name_; }
QString getErrText() { return err_text; }
bool convertTouchstone(QTextStream *stream);

View File

@ -1457,7 +1457,11 @@ bool Schematic::throughAllComps(QTextStream *stream, int& countInit,
S2Spice *conv = new S2Spice();
conv->setFile(f);
conv->setDeviceName(sub_name);
conv->convertTouchstone(stream);
if (!conv->convertTouchstone(stream)) {
QMessageBox::warning(this,tr("Netlist error"),
conv->getErrText());
return false;
}
delete conv;
}