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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*$Id: d_cs.cc 2016/03/25 al $ -*- 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.
*------------------------------------------------------------------
* functions for fixed current source
* x = 0, y.f0 = nothing, ev = y.f1 = amps.
*/
//testing=script 2006.07.17
#include "globals.h"
#include "e_elemnt.h"
/*--------------------------------------------------------------------------*/
namespace {
/*--------------------------------------------------------------------------*/
class DEV_CS : public ELEMENT {
private:
explicit DEV_CS(const DEV_CS& p) :ELEMENT(p) {}
public:
explicit DEV_CS() :ELEMENT() {}
private: // override virtual
char id_letter()const override {return 'I';}
std::string value_name()const override{itested(); return "dc";}
std::string dev_type()const override {return "isource";}
int max_nodes()const override {return 2;}
int min_nodes()const override {return 2;}
int matrix_nodes()const override {return 2;}
int net_nodes()const override {return 2;}
bool is_source()const override {return true;}
bool f_is_value()const override {return true;}
bool has_iv_probe()const override {return true;}
bool use_obsolete_callback_parse()const override {return true;}
CARD* clone()const override {return new DEV_CS(*this);}
void precalc_last()override;
void dc_advance()override;
void tr_iwant_matrix()override {/* nothing */}
void tr_begin()override;
bool do_tr()override;
void tr_load()override {tr_load_source();}
void tr_unload()override {untested();tr_unload_source();}
double tr_involts()const override {return 0.;}
double tr_involts_limited()const override {unreachable(); return 0.;}
void ac_iwant_matrix()override {/* nothing */}
void ac_begin()override {_acg = _ev = 0.;}
void do_ac()override;
void ac_load()override {ac_load_source();}
COMPLEX ac_involts()const override {untested();return 0.;}
COMPLEX ac_amps()const override {return _acg;}
std::string port_name(int i)const override {
assert(i >= 0);
assert(i < 2);
static std::string names[] = {"p", "n"};
return names[i];
}
};
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
void DEV_CS::precalc_last()
{
ELEMENT::precalc_last();
set_constant(!using_tr_eval());
set_converged(!has_tr_eval());
}
/*--------------------------------------------------------------------------*/
void DEV_CS::dc_advance()
{
ELEMENT::dc_advance();
if(using_tr_eval()){
}else{
_y[0].f1 = value();
if(_y1.f1 != _y[0].f1){
store_values();
q_load();
_m0.c0 = _y[0].f1;
// set_constant(false); not needed. nothing to do in do_tr.
}else{
}
}
}
/*--------------------------------------------------------------------------*/
void DEV_CS::tr_begin()
{
ELEMENT::tr_begin();
_y[0].x = 0.;
_y[0].f1 = value();
_y1.f0 = _y[0].f0 = 0.; //BUG// override
_m0.x = 0.;
_m0.c0 = _y[0].f1;
_m0.c1 = 0.;
_m1 = _m0;
assert(_loss0 == 0.);
assert(_loss1 == 0.);
}
/*--------------------------------------------------------------------------*/
bool DEV_CS::do_tr()
{
assert(_m0.x == 0.);
if (using_tr_eval()) {
_y[0].x = _sim->_time0;
tr_eval();
store_values();
q_load();
_m0.c0 = _y[0].f1;
assert(_m0.c1 == 0.);
}else{
assert(_y[0].x == 0.);
assert(_y[0].f0 == 0.);
assert(_y[0].f1 == value());
assert(_m0.x == 0.);
assert(_m0.c0 == _y[0].f1);
assert(_m0.c1 == 0.);
assert(_y1 == _y[0]);
assert(converged());
}
return converged();
}
/*--------------------------------------------------------------------------*/
void DEV_CS::do_ac()
{
if (using_ac_eval()) {
ac_eval();
_acg = _ev;
}else{itested();
assert(_acg == 0.);
}
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
DEV_CS p1;
DISPATCHER<CARD>::INSTALL d1(&device_dispatcher, "I|csource|isource", &p1);
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
// vim:ts=8:sw=2:noet:
|