/*$Id: d_vcr.cc,v 26.14 2007/02/07 09:06:48 al Exp $ -*- C++ -*- * Copyright (C) 2001 Albert Davis * Author: Albert Davis * * 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 2, 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. *------------------------------------------------------------------ * voltage controlled resistor. * y.x = volts(control), ev = y.f0 = ohms, y.f1 = ohms/volt * m.x = volts(control), m.c0 = 0, acg = m.c1 = mhos * _loss0 == 1/R. (mhos) */ //testing=script,complete 2006.07.17 #include "l_dispatcher.h" #include "e_elemnt.h" extern DISPATCHER device_dispatcher; /*--------------------------------------------------------------------------*/ namespace { /*--------------------------------------------------------------------------*/ class DEV_VCR : public ELEMENT { private: explicit DEV_VCR(const DEV_VCR& p) :ELEMENT(p) {} public: explicit DEV_VCR() :ELEMENT() {} private: // override virtual char id_letter()const {untested();return '\0';} const char* dev_type()const {return "vcr";} int max_nodes()const {return 4;} int min_nodes()const {return 4;} int out_nodes()const {untested();return 2;} int matrix_nodes()const {return 4;} int net_nodes()const {return 4;} bool is_2port()const {untested();return true;} CARD* clone()const {return new DEV_VCR(*this);} //void parse_spice(CS&); //ELEMENT //void print(OMSTREAM,LANGUAGE)const; //ELEMENT //void elabo1(); //COMPONENT //void map_nodes(); //ELEMENT void precalc(); void tr_iwant_matrix() {tr_iwant_matrix_extended();} //void dc_begin(); //CARD/nothing //void tr_begin(); //CARD/nothing //void tr_restore(); //CARD/nothing //void dc_advance(); //CARD/nothing //void tr_advance(); //CARD/nothing //bool tr_needs_eval(); //ELEMENT //void tr_queue_eval(); //ELEMENT bool do_tr(); void tr_load() {tr_load_shunt(); tr_load_active();} //DPAIR tr_review(); //CARD/nothing //void tr_accept(); //CARD/nothing void tr_unload() {untested(); tr_unload_shunt(); tr_unload_active();} double tr_involts()const {untested(); return dn_diff(_n[IN1].v0(), _n[IN2].v0());} //double tr_input()const //ELEMENT double tr_involts_limited()const {return volts_limited(_n[IN1],_n[IN2]);} //double tr_input_limited()const //ELEMENT double tr_amps()const {untested(); return ELEMENT::tr_amps();} //double tr_probe_num(CS&)const;//ELEMENT void ac_iwant_matrix() {ac_iwant_matrix_extended();} void ac_begin(); void do_ac(); void ac_load() {ac_load_loss(); ac_load_active();} COMPLEX ac_involts()const {untested();return _n[IN1]->vac()-_n[IN2]->vac();} COMPLEX ac_amps()const {untested(); return ELEMENT::ac_amps();} //XPROBE ac_probe_ext(CS&)const;//ELEMENT }; /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ void DEV_VCR::precalc() { _loss1 = _loss0 = 1./OPT::shortckt; _y0.f0 = LINEAR; _y0.f1 = value(); _y1 = _y0; _m0.c1 = 0.; _m0.c0 = 0.; _m1 = _m0; assert(!is_constant()); set_not_converged(); } /*--------------------------------------------------------------------------*/ bool DEV_VCR::do_tr() { _y0.x = tr_input_limited(); tr_eval(); trace3("vcr", _y0.x, _y0.f0, _y0.f1); assert(_y0.f0 != LINEAR); if (_y0.f0 == 0.) { error(bDEBUG, long_label() + ": short circuit\n"); _y0.f0 = OPT::shortckt; set_converged(conv_check()); }else{ } store_values(); q_load(); _loss0 = 1./_y0.f0; _m0.x = tr_outvolts(); // fake _m0.c1 = -_y0.f1 * _loss0 * _loss0 * tr_outvolts(); _m0.c0 = -_y0.x * _m0.c1; trace3("vcr", _loss0, _m0.c0, _m0.c1); return converged(); } /*--------------------------------------------------------------------------*/ void DEV_VCR::ac_begin() { _ev = _y0.f0; _acg = _m0.c1; trace4("vcr-ac_begin", _y0.f0, _y0.f1, _m0.c0, _m0.c1); trace4("", _ev.real(), _ev.imag(), _acg.real(), _acg.imag()); trace1("", _loss0); } /*--------------------------------------------------------------------------*/ void DEV_VCR::do_ac() { if (using_ac_eval()) { ac_eval(); _acg = -_ev * _loss0 * _loss0 * _m0.x; trace4("vcr-do_ac(eval)", _y0.f0, _y0.f1, _m0.c0, _m0.c1); trace4("", _ev.real(), _ev.imag(), _acg.real(), _acg.imag()); _ev *= _y0.x; trace4("", _ev.real(), _ev.imag(), _loss0, _m0.x); }else{ trace4("vcr-do_ac", _y0.f0, _y0.f1, _m0.c0, _m0.c1); trace4("", _ev.real(), _ev.imag(), _acg.real(), _acg.imag()); trace1("", _loss0); assert(_ev == _y0.f0); assert(_acg == _m0.c1); } ac_load(); } /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ DEV_VCR p1; DISPATCHER::INSTALL d1(&device_dispatcher, "vcr", &p1); } /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/