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:
972 bytes
|
Line | |
---|
1 | /*!\file: Elements.h
|
---|
2 | * \brief prototypes for Elements.h
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _CONTAINER_ELEMENTS_H_
|
---|
6 | #define _CONTAINER_ELEMENTS_H_
|
---|
7 |
|
---|
8 | /*forward declarations */
|
---|
9 | class Materials;
|
---|
10 | class Parameters;
|
---|
11 | class Elements;
|
---|
12 | class Vertices;
|
---|
13 | class Loads;
|
---|
14 | class Nodes;
|
---|
15 | class DataSet;
|
---|
16 | class Inputs;
|
---|
17 |
|
---|
18 | class Elements: public DataSet{
|
---|
19 |
|
---|
20 | public:
|
---|
21 |
|
---|
22 | /*constructors, destructors: {{{*/
|
---|
23 | Elements();
|
---|
24 | ~Elements();
|
---|
25 | /*}}}*/
|
---|
26 | /*numerics: {{{*/
|
---|
27 | void Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
28 | void DeleteResults(void);
|
---|
29 | void ProcessResultsUnits(void);
|
---|
30 | void SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters);
|
---|
31 | void ToResults(Results* results,Parameters* parameters);
|
---|
32 | Patch* ResultsToPatch(void);
|
---|
33 | int NumberOfElements(void);
|
---|
34 | void InputDuplicate(int input_enum,int output_enum);
|
---|
35 | /*}}}*/
|
---|
36 |
|
---|
37 | };
|
---|
38 |
|
---|
39 | #endif //ifndef _ELEMENTS_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.