1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*$Id: e_model.cc,v 26.137 2010/04/10 02:37:33 al Exp $ -*- C++ -*-
* Copyright (C) 2001 Albert Davis
* Author: Albert Davis <aldavis@gnu.org>
*
* This file is part of "Gnucap", the Gnu Circuit Analysis Package
*
* 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 3, 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., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*------------------------------------------------------------------
* base class for all models
*/
//testing=script 2006.07.12
#include "e_compon.h"
#include "e_model.h"
/*--------------------------------------------------------------------------*/
MODEL_CARD::MODEL_CARD(const COMPONENT* p)
:CARD(),
_component_proto(p),
_tnom_c(NOT_INPUT)
{
if (_sim) {
_sim->uninit();
}else{
}
}
/*--------------------------------------------------------------------------*/
MODEL_CARD::MODEL_CARD(const MODEL_CARD& p)
:CARD(p),
_component_proto(p._component_proto),
_tnom_c(p._tnom_c)
{
if (_sim) {
_sim->uninit();
}else{untested();
}
}
/*--------------------------------------------------------------------------*/
MODEL_CARD::~MODEL_CARD()
{
if (_sim) {
_sim->uninit();
}else{
}
}
/*--------------------------------------------------------------------------*/
void MODEL_CARD::set_param_by_index(int i, std::string& value, int offset)
{
switch (MODEL_CARD::param_count() - 1 - i) {
case 0: _tnom_c = value; break;
default: CARD::set_param_by_index(i, value, offset); break;
}
}
/*--------------------------------------------------------------------------*/
bool MODEL_CARD::param_is_printable(int i)const
{
switch (MODEL_CARD::param_count() - 1 - i) {
case 0: return true;
default: return CARD::param_is_printable(i);
}
}
/*--------------------------------------------------------------------------*/
std::string MODEL_CARD::param_name(int i)const
{
switch (MODEL_CARD::param_count() - 1 - i) {
case 0: return "tnom\0";
default: return CARD::param_name(i);
}
}
/*--------------------------------------------------------------------------*/
std::string MODEL_CARD::param_name(int i, int j)const
{
if (j == 0) {
return param_name(i);
}else if (i >= CARD::param_count()) {
return "";
}else{
return MODEL_CARD::param_name(i, j);
}
}
/*--------------------------------------------------------------------------*/
std::string MODEL_CARD::param_value(int i)const
{
switch (MODEL_CARD::param_count() - 1 - i) {
case 0: return _tnom_c.string();
default: return CARD::param_value(i);
}
}
/*--------------------------------------------------------------------------*/
void MODEL_CARD::precalc_first()
{
CARD::precalc_first();
_tnom_c.e_val(OPT::tnom_c, scope());
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
// vim:ts=8:sw=2:noet:
|