Branch data Line data Source code
1 : : /*
2 : : * vac.cpp - AC voltage source class implementation
3 : : *
4 : : * Copyright (C) 2003, 2004, 2006, 2007, 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$
22 : : *
23 : : */
24 : :
25 : : #if HAVE_CONFIG_H
26 : : # include <config.h>
27 : : #endif
28 : :
29 : : #include "component.h"
30 : : #include "vac.h"
31 : :
32 : : using namespace qucs;
33 : :
34 : 47 : vac::vac () : circuit (2) {
35 : 47 : type = CIR_VAC;
36 : 47 : setVSource (true);
37 [ + - # # ]: 47 : setVoltageSources (1);
38 : 47 : }
39 : :
40 : 1 : void vac::initSP (void) {
41 : 1 : allocMatrixS ();
42 [ + - ]: 1 : setS (NODE_1, NODE_1, 0.0);
43 [ + - ]: 1 : setS (NODE_1, NODE_2, 1.0);
44 [ + - ]: 1 : setS (NODE_2, NODE_1, 1.0);
45 [ + - ]: 1 : setS (NODE_2, NODE_2, 0.0);
46 : 1 : }
47 : :
48 : 329 : void vac::initDC (void) {
49 : 329 : allocMatrixMNA ();
50 : 329 : voltageSource (VSRC_1, NODE_1, NODE_2);
51 : 329 : }
52 : :
53 : 150 : void vac::initAC (void) {
54 : 150 : initDC ();
55 : 150 : nr_double_t a = getPropertyDouble ("U");
56 : 150 : nr_double_t p = getPropertyDouble ("Phase");
57 : 150 : setE (VSRC_1, qucs::polar (a, rad (p)));
58 : 150 : }
59 : :
60 : 55 : void vac::initTR (void) {
61 : 55 : initDC ();
62 : 55 : }
63 : :
64 : 304080 : void vac::calcTR (nr_double_t t) {
65 : 304080 : nr_double_t f = getPropertyDouble ("f");
66 : 304080 : nr_double_t p = getPropertyDouble ("Phase");
67 : 304080 : nr_double_t d = getPropertyDouble ("Theta");
68 : 304080 : nr_double_t a = getPropertyDouble ("U");
69 : 304080 : nr_double_t s = getNet()->getSrcFactor ();
70 : 304080 : nr_double_t o = 2 * M_PI * f;
71 : 304080 : nr_double_t T = p / f / 360;
72 : 304080 : nr_double_t u = s * a * std::exp (-(t + T) * d * f) * std::sin (o * t + rad (p));
73 [ + - ]: 304080 : setE (VSRC_1, u);
74 : 304080 : }
75 : :
76 : 1 : void vac::initHB (void) {
77 : 1 : setVoltageSources (1);
78 : 1 : allocMatrixMNA ();
79 : 1 : voltageSource (VSRC_1, NODE_1, NODE_2);
80 : 1 : }
81 : :
82 : 18 : void vac::calcHB (nr_double_t frequency) {
83 : 18 : nr_double_t f = getPropertyDouble ("f");
84 [ + + ]: 18 : if (f == frequency) {
85 : 2 : nr_double_t a = getPropertyDouble ("U");
86 : 2 : nr_double_t p = getPropertyDouble ("Phase");
87 : 2 : setE (VSRC_1, qucs::polar (a, rad (p)));
88 : : }
89 : : else {
90 [ + - ]: 16 : setE (VSRC_1, 0);
91 : : }
92 : 18 : }
93 : :
94 : : // properties
95 : : PROP_REQ [] = {
96 : : { "U", PROP_REAL, { 1, PROP_NO_STR }, PROP_NO_RANGE }, PROP_NO_PROP };
97 : : PROP_OPT [] = {
98 : : { "Phase", PROP_REAL, { 0, PROP_NO_STR }, PROP_RNGII (-360, 360) },
99 : : { "Theta", PROP_REAL, { 0, PROP_NO_STR }, PROP_POS_RANGE },
100 : : { "f", PROP_REAL, { 1e9, PROP_NO_STR }, PROP_POS_RANGE },
101 : : PROP_NO_PROP };
102 : : struct define_t vac::cirdef =
103 : : { "Vac", 2, PROP_COMPONENT, PROP_NO_SUBSTRATE, PROP_LINEAR, PROP_DEF };
|