blob: 675b0b7ca497a93ecd2f9f667f5c9bf78d17f7cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/***************************************************************************
* Copyright (C) 2003-2004 by David Saxton *
* david@bluehaze.org *
* *
* 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. *
***************************************************************************/
#include "currentsource.h"
#include "elementset.h"
#include "matrix.h"
CurrentSource::CurrentSource( const double current )
: Element::Element()
{
m_i = current;
m_numCNodes = 2;
}
CurrentSource::~CurrentSource()
{
}
void CurrentSource::setCurrent( const double i )
{
if ( i == m_i ) return;
if (p_eSet)
p_eSet->setCacheInvalidated();
// Remove the old current
m_i = -m_i;
add_initial_dc();
m_i = i;
add_initial_dc();
}
void CurrentSource::add_map()
{
// We don't need a map for current source :-)
}
void CurrentSource::add_initial_dc()
{
if (!b_status)
return;
b_i( 0 ) -= m_i;
b_i( 1 ) += m_i;
}
void CurrentSource::updateCurrents()
{
m_cnodeI[0] = -m_i;
m_cnodeI[1] = m_i;
}
|