qucs_s/qucs/components/tunneldiode.h
ela 96fc146900 2011-03-11 Stefan Jahn <stefan@lkcc.org>
* ctline.cpp (CoupledTLine): Ideal coupled transmission line
	added.

	* hybrid.cpp (Hybrid): New hybrid model added.

	* tunneldiode.cpp (TunnelDiode): Added tunnel diode model.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1822 b5b04e8c-4942-46c9-ab4f-83783d557d1c
2011-03-11 17:38:35 +00:00

28 lines
1.1 KiB
C++

/***************************************************************************
copyright : (C) 2008 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef TUNNELDIODE_H
#define TUNNELDIODE_H
#include "component.h"
class TunnelDiode : public Component {
public:
TunnelDiode();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
};
#endif