qucs_s/qucs-transcalc/transline.cpp
raimi 13e1b0ca30 2005-04-03 Stefan Jahn <stefan@lkcc.org>
* optionsdialog.h: Added configuration option dialog.

        * helpdialog.h: Implemented help dialog.

        * qucstrans.cpp: Applied reasonable default values for line
        properties. Implemented status bar. Improved radio button
        behaviour.  Implemented config file operations as well as loading
        and saving of transmission line files.

        * microstrip.cpp (synthesize): Computing length of microstrip
        line based on electrical angle during synthesis.

        * main.cpp: Saving and storing current property values in resource
        file on application startup and exit.

        * c_microstrip.cpp (er_eff_freq): Fixed P_9 formula.  Use  '0.7913'
        instead of '0.7193'.
        (Z0_dispersion): Fixed Q_19 formula.  Use '4.9' instead of '4.19'.
2005-04-04 08:28:09 +00:00

179 lines
5.8 KiB
C++

/*
* transline.cpp - base for a transmission line implementation
*
* Copyright (C) 2005 Stefan Jahn <stefan@lkcc.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*
* $Id: transline.cpp,v 1.2 2005/04/04 08:28:15 raimi Exp $
*
*/
#include "qucstrans.h"
#include "transline.h"
#include "units.h"
// Unit conversion array for length.
static double conv_length[7][7] = {
{ 1.0, 2.54e-3, 2.54e-2, 2.54e-5, 25.4, 1.e-3, 1./12000},
{1./2.54e-3, 1.0, 10.0, 1.e-2, 1.e4, 1./2.54, 1./30.48},
{1./2.54e-2, 1./10., 1.0, 1.e-3, 1.e3, 1./25.4, 1./304.8},
{1./2.54e-5, 1.e2, 1.e3, 1.0, 1.e6, 1./2.54e-2, 1./0.3048},
{1./25.4, 1.e-4, 1.e-3, 1.e-6, 1.0, 1./2.54e4, 1./3.048e5},
{1.e3, 2.54, 25.4, 2.54e-2, 2.54e4, 1.0, 1./12.},
{1.2e4, 30.48, 304.8, 0.3048, 3.048e5, 12.0, 1.0}
};
// Unit conversion array for frequencies.
static double conv_freq[4][4] = {
{ 1.0, 1.e9, 1.e6, 1.e3},
{ 1.e-9, 1.0, 1.e-3, 1.e-6},
{ 1.e-6, 1.e3, 1.0, 1.e-3},
{ 1.e-3, 1.e6, 1.e3, 1.0}
};
// Unit conversion array for resistances.
static double conv_res[2][2] = {
{1.0, 1.e-3},
{1.e3, 1.0}
};
// Unit conversion array for angles.
static double conv_ang[2][2] = {
{1.0, M_PI/180.0},
{180.0/M_PI, 1.0}
};
/* Constructor creates a transmission line instance. */
transline::transline () {
app = 0;
}
/* Destructor destroys a transmission line instance. */
transline::~transline () {
}
/* Sets the application instance. */
void transline::setApplication (QucsTranscalc * a) {
app = a;
}
/* Sets a named property to the given value, access through the
application. */
void transline::setProperty (char * prop, double value) {
app->setProperty (prop, value);
}
/* Sets a named property to a given value. Depending on the source
and destination unit the value gets previously converted. */
void transline::setProperty (char * prop, double value, int type,
int srcunit) {
int dstunit = translateUnit (getUnit (prop));
if (type == UNIT_LENGTH)
value *= conv_length[srcunit][dstunit];
else if (type == UNIT_RES)
value *= conv_res[srcunit][dstunit];
else if (type == UNIT_ANG)
value *= conv_ang[srcunit][dstunit];
else if (type == UNIT_FREQ)
value *= conv_freq[srcunit][dstunit];
setProperty (prop, value);
}
/* Converts the given value/unit pair into a text representation and
puts this into the given result line. */
void transline::setResult (int line, double value, char * unit) {
char text[256];
sprintf (text, "%g %s", value, unit);
app->setResult (line, text);
}
/* Puts the text into the given result line. */
void transline::setResult (int line, char * text) {
app->setResult (line, text);
}
/* Returns a named property value. */
double transline::getProperty (char * prop) {
return app->getProperty (prop);
}
/* Returns a named property selection. */
bool transline::isSelected (char * prop) {
return app->isSelected (prop);
}
/* Returns a named property value. Depending on the source and
destination unit the actual value is converted. */
double transline::getProperty (char * prop, int type, int dstunit) {
int srcunit = translateUnit (getUnit (prop));
double value = getProperty (prop);
if (type == UNIT_LENGTH)
return value * conv_length[srcunit][dstunit];
else if (type == UNIT_RES)
return value * conv_res[srcunit][dstunit];
else if (type == UNIT_ANG)
return value * conv_ang[srcunit][dstunit];
else if (type == UNIT_FREQ)
return value * conv_freq[srcunit][dstunit];
return value;
}
/* The function converts the given value depending on the requested
unit and its source unit. */
double transline::convertProperty (char * prop, double value, int type,
int srcunit) {
int dstunit = translateUnit (getUnit (prop));
if (type == UNIT_LENGTH)
value *= conv_length[srcunit][dstunit];
else if (type == UNIT_RES)
value *= conv_res[srcunit][dstunit];
else if (type == UNIT_ANG)
value *= conv_ang[srcunit][dstunit];
else if (type == UNIT_FREQ)
value *= conv_freq[srcunit][dstunit];
return value;
}
/* Returns the unit of the given property. */
char * transline::getUnit (char * prop) {
return app->getUnit (prop);
}
/* The function translates the given textual unit into an
identifier. */
int transline::translateUnit (char * text) {
if (!strcmp (text, "mil")) return LENGTH_MIL;
else if (!strcmp (text, "cm")) return LENGTH_CM;
else if (!strcmp (text, "mm")) return LENGTH_MM;
else if (!strcmp (text, "m")) return LENGTH_M;
else if (!strcmp (text, "um")) return LENGTH_UM;
else if (!strcmp (text, "in")) return LENGTH_IN;
else if (!strcmp (text, "ft")) return LENGTH_FT;
else if (!strcmp (text, "GHz")) return FREQ_GHZ;
else if (!strcmp (text, "Hz")) return FREQ_HZ;
else if (!strcmp (text, "kHz")) return FREQ_KHZ;
else if (!strcmp (text, "MHz")) return FREQ_MHZ;
else if (!strcmp (text, "Ohm")) return RES_OHM;
else if (!strcmp (text, "kOhm")) return RES_KOHM;
else if (!strcmp (text, "Deg")) return ANG_DEG;
else if (!strcmp (text, "Rad")) return ANG_RAD;
return -1;
}