MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
elecnode.h
Go to the documentation of this file.
1 /* $Header: /var/cvs/mbdyn/mbdyn/mbdyn-1.0/mbdyn/elec/elecnode.h,v 1.27 2017/01/12 14:46:22 masarati Exp $ */
2 /*
3  * MBDyn (C) is a multibody analysis code.
4  * http://www.mbdyn.org
5  *
6  * Copyright (C) 1996-2017
7  *
8  * Pierangelo Masarati <masarati@aero.polimi.it>
9  * Paolo Mantegazza <mantegazza@aero.polimi.it>
10  *
11  * Dipartimento di Ingegneria Aerospaziale - Politecnico di Milano
12  * via La Masa, 34 - 20156 Milano, Italy
13  * http://www.aero.polimi.it
14  *
15  * Changing this copyright notice is forbidden.
16  *
17  * This program is free software; you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation (version 2 of the License).
20  *
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */
31 
32 #ifndef ELECNODE_H
33 #define ELECNODE_H
34 
35 #include "node.h"
36 
37 #if 0 /* TBZ */
38 
39 /* AbstractNode - begin */
40 
41 /* Nodo astratto, consente l'accesso ad un grado di liberta' messo in comune
42  * e privo di significato fisico proprio. Gli elementi di tipo ElectricBulk
43  * usano i nodi elettrici. Numerosi elementi elettrici elementari sono
44  * associati a nodi elettrici (impedenze, amplificatori, generatori di
45  * tensione e di corrente, ecc.). Altri elementi, di tipo Electric, possono
46  * essere associati sia a nodi elettrici (tipicamente a coppie di nodi, in
47  * quanto usano differenze di tensione), oppure a nodi astratti,
48  * ovvero oggetti che consentono un riferimento esplicito a Dof messi in
49  * comune che non hanno un significato fisico preciso */
50 
51 class AbstractNode : public ScalarDifferentialNode {
52 public:
53  /* Costruttore definitivo (da mettere a punto) */
54  AbstractNode(unsigned int uL, const DofOwner* pDO,
55  doublereal dx, doublereal dxp, flag fOut);
56 
57  /* Distruttore (per ora e' banale) */
58  virtual ~AbstractNode(void);
59 
60  /* Tipo di nodo */
61  virtual Node::Type GetNodeType(void) const;
62 
63  /* Output del nodo */
64  virtual void Output(OutputHandler& OH) const;
65 };
66 
67 /* AbstractNode - end */
68 
69 #endif /* TBZ */
70 
71 /* ElectricNode - begin */
72 
73 /* Nodo elettrico, descrive fisicamente un nodo di una rete elettrica.
74  * Viene usato con gli elementi ElectricBulk. Numerosi elementi elettrici
75  * elementari sono associati a questi nodi (impedenze, amplificatori,
76  * generatori di tensione e di corrente, ecc.). Altri elementi, di tipo
77  * Electric, possono essere associati sia a nodi elettrici (tipicamente a
78  * coppie, in quanto usano differenze di tensione), oppure a nodi astratti,
79  * ovvero oggetti che consentono un riferimento esplicito a Dof messi in
80  * comune che non hanno un significato fisico preciso */
81 
82 /* Numero di dof del tipo di nodo - usato anche dal DofManager (?) */
83 
85 public:
86  /* Costruttore */
87  ElectricNode(unsigned int uL, const DofOwner* pDO,
88  doublereal dx, doublereal dxp, flag fOut);
89 
90  /* Distruttore (per ora e' banale) */
91  virtual ~ElectricNode(void);
92 
93  /* Tipo di nodo */
94  virtual Node::Type GetNodeType(void) const;
95 
96  virtual void Output(OutputHandler& OH) const {
98  };
99 
100 };
101 
102 /* ElectricNode - end */
103 
104 #endif /* ELECNODE_H */
105 
long int flag
Definition: mbdyn.h:43
virtual Node::Type GetNodeType(void) const
Definition: elecnode.cc:59
virtual void Output(OutputHandler &OH) const
Definition: elecnode.h:96
virtual std::ostream & Output(std::ostream &out) const
Definition: node.cc:268
Type
Definition: node.h:71
virtual ~ElectricNode(void)
Definition: elecnode.cc:52
ElectricNode(unsigned int uL, const DofOwner *pDO, doublereal dx, doublereal dxp, flag fOut)
Definition: elecnode.cc:41
virtual Node::Type GetNodeType(void) const
Definition: node.cc:169
double doublereal
Definition: colamd.c:52
std::ostream & Electric(void) const
Definition: output.h:408