Last change
on this file since 12878 was 12878, checked in by cborstad, 13 years ago |
merged trunk-jpl into trunk-jpl-damage through revision 12877
|
File size:
926 bytes
|
Line | |
---|
1 | /*!\file: Nodes.h
|
---|
2 | * \brief prototypes for Nodes.h
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _CONTAINER_NODES_H_
|
---|
6 | #define _CONTAINER_NODES_H_
|
---|
7 |
|
---|
8 | #include "./DataSet.h"
|
---|
9 |
|
---|
10 | /*forward declarations */
|
---|
11 | class Nodes: public DataSet{
|
---|
12 |
|
---|
13 | public:
|
---|
14 |
|
---|
15 | /*constructors, destructors: {{{*/
|
---|
16 | Nodes();
|
---|
17 | ~Nodes();
|
---|
18 | /*}}}*/
|
---|
19 | /*numerics: {{{*/
|
---|
20 | void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
21 | void DistributeDofs(int analysis_type,int SETENUM);
|
---|
22 | void FlagClones(int analysis_type);
|
---|
23 | int MaxNumDofs(int analysis_type,int setenum);
|
---|
24 | int NumberOfDofs(int analysis_type,int setenum);
|
---|
25 | int NumberOfNodes(int analysis_type);
|
---|
26 | int NumberOfNodes(void);
|
---|
27 | void Ranks(int* ranks,int analysis_type);
|
---|
28 | void SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
29 | /*}}}*/
|
---|
30 |
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif //ifndef _NODES_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.