Branch data Line data Source code
1 : : /*
2 : : * pac.cpp - AC power source class implementation
3 : : *
4 : : * Copyright (C) 2003, 2004, 2005, 2006 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$
22 : : *
23 : : */
24 : :
25 : : #if HAVE_CONFIG_H
26 : : # include <config.h>
27 : : #endif
28 : :
29 : : #include "component.h"
30 : : #include "pac.h"
31 : :
32 : : using namespace qucs;
33 : :
34 : 40 : pac::pac () : circuit (2) {
35 : 40 : type = CIR_PAC;
36 : 40 : setISource (true);
37 : 40 : }
38 : :
39 : 11907 : void pac::calcSP (nr_double_t) {
40 : 11907 : nr_double_t z = getPropertyDouble ("Z") / z0;
41 [ + - ]: 11907 : setS (NODE_1, NODE_1, z / (z + 2));
42 [ + - ]: 11907 : setS (NODE_2, NODE_2, z / (z + 2));
43 [ + - ]: 11907 : setS (NODE_1, NODE_2, 2 / (z + 2));
44 [ + - ]: 11907 : setS (NODE_2, NODE_1, 2 / (z + 2));
45 : 11907 : }
46 : :
47 : 518 : void pac::calcNoiseSP (nr_double_t) {
48 : 518 : nr_double_t r = getPropertyDouble ("Z");
49 : 518 : nr_double_t T = getPropertyDouble ("Temp");
50 : 518 : nr_double_t f = kelvin (T) * 4.0 * r * z0 / qucs::sqr (2.0 * z0 + r) / T0;
51 [ + - ][ + - ]: 518 : setN (NODE_1, NODE_1, +f); setN (NODE_2, NODE_2, +f);
52 [ + - ][ + - ]: 518 : setN (NODE_1, NODE_2, -f); setN (NODE_2, NODE_1, -f);
53 : 518 : }
54 : :
55 : 254 : void pac::calcDC (void) {
56 : 254 : nr_double_t g = 1.0 / getPropertyDouble ("Z");
57 : 254 : clearI ();
58 [ + - ][ + - ]: 254 : setY (NODE_1, NODE_1, +g); setY (NODE_2, NODE_2, +g);
59 [ + - ][ + - ]: 254 : setY (NODE_1, NODE_2, -g); setY (NODE_2, NODE_1, -g);
60 : 254 : }
61 : :
62 : 200 : void pac::calcAC (nr_double_t) {
63 : 200 : nr_double_t p = getPropertyDouble ("P");
64 : 200 : nr_double_t r = getPropertyDouble ("Z");
65 : 200 : nr_double_t i = std::sqrt (8 * p / r);
66 : 200 : calcDC ();
67 [ + - ][ + - ]: 200 : setI (NODE_1, +i); setI (NODE_2, -i);
68 : 200 : }
69 : :
70 : 0 : void pac::calcNoiseAC (nr_double_t) {
71 : 0 : nr_double_t r = getPropertyDouble ("Z");
72 : 0 : nr_double_t T = getPropertyDouble ("Temp");
73 : 0 : nr_double_t f = kelvin (T) / T0 * 4.0 / r;
74 [ # # ][ # # ]: 0 : setN (NODE_1, NODE_1, +f); setN (NODE_2, NODE_2, +f);
75 [ # # ][ # # ]: 0 : setN (NODE_1, NODE_2, -f); setN (NODE_2, NODE_1, -f);
76 : 0 : }
77 : :
78 : 0 : void pac::calcTR (nr_double_t t) {
79 : 0 : nr_double_t p = getPropertyDouble ("P");
80 : 0 : nr_double_t r = getPropertyDouble ("Z");
81 : 0 : nr_double_t f = getPropertyDouble ("f");
82 : 0 : nr_double_t i = std::sqrt (8 * p / r) * std::sin (2 * M_PI * f * t);
83 : 0 : calcDC ();
84 [ # # ][ # # ]: 0 : setI (NODE_1, +i); setI (NODE_2, -i);
85 : 0 : }
86 : :
87 : 0 : void pac::initHB (void) {
88 : 0 : setVoltageSources (1);
89 : 0 : allocMatrixMNA ();
90 : 0 : voltageSource (VSRC_1, NODE_1, NODE_2);
91 : 0 : nr_double_t g = 1.0 / getPropertyDouble ("Z");
92 [ # # ][ # # ]: 0 : setY (NODE_1, NODE_1, +g); setY (NODE_2, NODE_2, +g);
93 [ # # ][ # # ]: 0 : setY (NODE_1, NODE_2, -g); setY (NODE_2, NODE_1, -g);
94 : 0 : }
95 : :
96 : 0 : void pac::calcHB (nr_double_t frequency) {
97 : 0 : nr_double_t f = getPropertyDouble ("f");
98 [ # # ]: 0 : if (f == frequency) {
99 : 0 : nr_double_t p = getPropertyDouble ("P");
100 : 0 : nr_double_t r = getPropertyDouble ("Z");
101 : 0 : nr_double_t u = std::sqrt (4 * p * r);
102 [ # # ]: 0 : setE (VSRC_1, u);
103 : : }
104 : : else {
105 [ # # ]: 0 : setE (VSRC_1, 0);
106 : : }
107 : 0 : }
108 : :
109 : : // properties
110 : : PROP_REQ [] = {
111 : : { "f", PROP_REAL, { 1e9, PROP_NO_STR }, PROP_POS_RANGE },
112 : : { "Z", PROP_REAL, { 50, PROP_NO_STR }, PROP_POS_RANGEX },
113 : : { "Num", PROP_INT, { 1, PROP_NO_STR }, PROP_RNGII (1, MAX_PORTS) },
114 : : PROP_NO_PROP };
115 : : PROP_OPT [] = {
116 : : { "P", PROP_REAL, { 0, PROP_NO_STR }, PROP_POS_RANGE },
117 : : { "Temp", PROP_REAL, { 26.85, PROP_NO_STR }, PROP_MIN_VAL (K) },
118 : : PROP_NO_PROP };
119 : : struct define_t pac::cirdef =
120 : : { "Pac", 2, PROP_COMPONENT, PROP_NO_SUBSTRATE, PROP_LINEAR, PROP_DEF };
|