Branch data Line data Source code
1 : : /*
2 : : * vrect.cpp - rectangular pulse voltage source class implementation
3 : : *
4 : : * Copyright (C) 2004, 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$
22 : : *
23 : : */
24 : :
25 : : #if HAVE_CONFIG_H
26 : : # include <config.h>
27 : : #endif
28 : :
29 : : #include "component.h"
30 : : #include "vrect.h"
31 : :
32 : : using namespace qucs;
33 : :
34 : 3 : vrect::vrect () : circuit (2) {
35 : 3 : type = CIR_VRECT;
36 : 3 : setVSource (true);
37 [ + - # # ]: 3 : setVoltageSources (1);
38 : 3 : }
39 : :
40 : 0 : void vrect::initSP (void) {
41 : 0 : allocMatrixS ();
42 [ # # ]: 0 : setS (NODE_1, NODE_1, 0.0);
43 [ # # ]: 0 : setS (NODE_1, NODE_2, 1.0);
44 [ # # ]: 0 : setS (NODE_2, NODE_1, 1.0);
45 [ # # ]: 0 : setS (NODE_2, NODE_2, 0.0);
46 : 0 : }
47 : :
48 : 6 : void vrect::initDC (void) {
49 : 6 : nr_double_t th = getPropertyDouble ("TH");
50 : 6 : nr_double_t tl = getPropertyDouble ("TL");
51 : 6 : nr_double_t tr = getPropertyDouble ("Tr");
52 : 6 : nr_double_t tf = getPropertyDouble ("Tf");
53 [ - + ]: 6 : if (tr > th) tr = th;
54 [ - + ]: 6 : if (tf > tl) tf = tl;
55 : 6 : nr_double_t a = (th + (tf - tr) / 2) / (th + tl);
56 : 6 : nr_double_t u = getPropertyDouble ("U") * a;
57 : 6 : allocMatrixMNA ();
58 : 6 : voltageSource (VSRC_1, NODE_1, NODE_2, u);
59 : 6 : }
60 : :
61 : 0 : void vrect::initAC (void) {
62 : 0 : initDC ();
63 [ # # ]: 0 : setE (VSRC_1, 0);
64 : 0 : }
65 : :
66 : 3 : void vrect::initTR (void) {
67 : 3 : initDC ();
68 : 3 : }
69 : :
70 : 126116 : void vrect::calcTR (nr_double_t t) {
71 : 126116 : nr_double_t u = getPropertyDouble ("U");
72 : 126116 : nr_double_t th = getPropertyDouble ("TH");
73 : 126116 : nr_double_t tl = getPropertyDouble ("TL");
74 : 126116 : nr_double_t tr = getPropertyDouble ("Tr");
75 : 126116 : nr_double_t tf = getPropertyDouble ("Tf");
76 : 126116 : nr_double_t td = getPropertyDouble ("Td");
77 : 126116 : nr_double_t ut = 0;
78 : 126116 : nr_double_t s = getNet()->getSrcFactor ();
79 : :
80 [ - + ]: 126116 : if (tr > th) tr = th;
81 [ - + ]: 126116 : if (tf > tl) tf = tl;
82 : :
83 [ + + ]: 126116 : if (t > td) { // after delay
84 : 126104 : t = t - td;
85 : 126104 : t = t - (th + tl) * qucs::floor (t / (th + tl));
86 [ - + ]: 126104 : if (t < tr) { // rising edge
87 : 0 : ut = + u / tr * t;
88 : : }
89 [ + + ]: 126104 : else if (t < th) { // high pulse
90 : 52435 : ut = u;
91 : : }
92 [ - + ]: 73669 : else if (t < th + tf) { // falling edge
93 : 0 : ut = - u / tf * (t - (th + tf));
94 : : }
95 : : }
96 [ + - ]: 126116 : setE (VSRC_1, ut * s);
97 : 126116 : }
98 : :
99 : : // properties
100 : : PROP_REQ [] = {
101 : : { "U", PROP_REAL, { 1, PROP_NO_STR }, PROP_NO_RANGE },
102 : : { "TH", PROP_REAL, { 1e-3, PROP_NO_STR }, PROP_POS_RANGE },
103 : : { "TL", PROP_REAL, { 1e-3, PROP_NO_STR }, PROP_POS_RANGE },
104 : : PROP_NO_PROP };
105 : : PROP_OPT [] = {
106 : : { "Tr", PROP_REAL, { 1e-9, PROP_NO_STR }, PROP_POS_RANGE },
107 : : { "Tf", PROP_REAL, { 1e-9, PROP_NO_STR }, PROP_POS_RANGE },
108 : : { "Td", PROP_REAL, { 0, PROP_NO_STR }, PROP_NO_RANGE },
109 : : PROP_NO_PROP };
110 : : struct define_t vrect::cirdef =
111 : : { "Vrect", 2, PROP_COMPONENT, PROP_NO_SUBSTRATE, PROP_LINEAR, PROP_DEF };
|