Qucs-core  0.0.18
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mslange.h
Go to the documentation of this file.
1 /*
2  * mslange.h - parallel coupled microstrip lines class definitions
3  *
4  * Copyright (C) 2004, 2005, 2006, 2008 Stefan Jahn <stefan@lkcc.org>
5  *
6  * This is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This software is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this package; see the file COPYING. If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  * $Id: mslange.h,v 1.10 2008/10/05 17:52:16 ela Exp $
22  *
23  */
24 
25 #ifndef __MSLANGE_H__
26 #define __MSLANGE_H__
27 
28 class mslange : public qucs::circuit
29 {
30  public:
31  CREATOR (mslange);
32  void initDC (void);
33  void calcSP (nr_double_t);
34  void calcNoiseSP (nr_double_t);
35  void calcPropagation (nr_double_t);
36  void initAC (void);
37  void calcAC (nr_double_t);
38  void calcNoiseAC (nr_double_t);
39  void saveCharacteristics (nr_double_t);
40 
41  static void analysQuasiStatic (nr_double_t, nr_double_t, nr_double_t,
42  nr_double_t, nr_double_t, char *,
43  nr_double_t&, nr_double_t&, nr_double_t&,
44  nr_double_t&);
45  static void analyseDispersion (nr_double_t, nr_double_t, nr_double_t,
46  nr_double_t, nr_double_t, nr_double_t,
47  nr_double_t, nr_double_t, nr_double_t, char *,
48  nr_double_t&, nr_double_t&, nr_double_t&,
49  nr_double_t&);
50 
51  private:
52  nr_double_t ae, be, ze, ao, bo, zo, ee, eo;
53 };
54 
55 #endif /* __MSLANGE_H__ */
nr_double_t ao
Definition: mslange.h:52
nr_double_t ee
Definition: mslange.h:52
static void analysQuasiStatic(nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, char *, nr_double_t &, nr_double_t &, nr_double_t &, nr_double_t &)
Definition: mslange.cpp:138
void saveCharacteristics(nr_double_t)
Definition: mslange.cpp:85
void initAC(void)
Definition: mslange.cpp:430
void initDC(void)
Definition: mslange.cpp:401
nr_double_t eo
Definition: mslange.h:52
void calcAC(nr_double_t)
Definition: mslange.cpp:435
base class for qucs circuit elements.
Definition: circuit.h:92
void calcNoiseSP(nr_double_t)
Definition: mslange.cpp:126
static void analyseDispersion(nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, nr_double_t, char *, nr_double_t &, nr_double_t &, nr_double_t &, nr_double_t &)
Definition: mslange.cpp:274
nr_double_t be
Definition: mslange.h:52
nr_double_t ae
Definition: mslange.h:52
void calcPropagation(nr_double_t)
Definition: mslange.cpp:40
void calcSP(nr_double_t)
Definition: mslange.cpp:92
CREATOR(mslange)
nr_double_t ze
Definition: mslange.h:52
nr_double_t zo
Definition: mslange.h:52
void calcNoiseAC(nr_double_t)
Definition: mslange.cpp:466
nr_double_t bo
Definition: mslange.h:52