Last change
on this file since 16137 was 16137, checked in by Mathieu Morlighem, 12 years ago |
merged trunk-jpl and trunk for revision 16135
|
File size:
1.2 KB
|
Rev | Line | |
---|
[11292] | 1 | /*! \file TriaP1ElementResult.h
|
---|
| 2 | * \brief: header file for TriaP1ElementResult object
|
---|
[4050] | 3 | */
|
---|
| 4 |
|
---|
[11292] | 5 | #ifndef _TRIAP1ELEMENTRESULT_H_
|
---|
| 6 | #define _TRIAP1ELEMENTRESULT_H_
|
---|
[4050] | 7 |
|
---|
| 8 | /*Headers:*/
|
---|
| 9 | #include "../Inputs/Input.h"
|
---|
| 10 |
|
---|
[11292] | 11 | class TriaP1ElementResult: public ElementResult{
|
---|
[4050] | 12 |
|
---|
| 13 | private:
|
---|
[4239] | 14 | int enum_type;
|
---|
[12561] | 15 | IssmDouble values[3];
|
---|
[4050] | 16 | int step;
|
---|
[12561] | 17 | IssmDouble time;
|
---|
[4050] | 18 |
|
---|
| 19 | public:
|
---|
| 20 |
|
---|
[12365] | 21 | /*TriaP1ElementResult constructors, destructors: {{{*/
|
---|
[11292] | 22 | TriaP1ElementResult();
|
---|
[12463] | 23 | TriaP1ElementResult(int enum_type,IssmDouble* values,int step,IssmDouble time);
|
---|
[11292] | 24 | ~TriaP1ElementResult();
|
---|
[4050] | 25 | /*}}}*/
|
---|
[12365] | 26 | /*Object virtual functions definitions:{{{ */
|
---|
[4248] | 27 | void Echo();
|
---|
[4050] | 28 | void DeepEcho();
|
---|
| 29 | int Id();
|
---|
[9883] | 30 | int ObjectEnum();
|
---|
[4050] | 31 | Object* copy();
|
---|
| 32 | /*}}}*/
|
---|
[12365] | 33 | /*ElementResult virtual functions definitions: {{{*/
|
---|
[12561] | 34 | IssmDouble GetTime(void){return time;};
|
---|
[10989] | 35 | int GetStep(void){return step;};
|
---|
[4050] | 36 | int NumberOfNodalValues(void);
|
---|
| 37 | void PatchFill(int row, Patch* patch);
|
---|
| 38 | /*}}}*/
|
---|
[12365] | 39 | /*TriaP1ElementResult management: {{{*/
|
---|
[9883] | 40 | int InstanceEnum();
|
---|
[13216] | 41 | void GetVectorFromResults(Vector<IssmDouble>* vector,int* doflist,int* connectivitylist,int numdofs);
|
---|
| 42 | void GetElementVectorFromResults(Vector<IssmDouble>* vector,int dof);
|
---|
[4248] | 43 | /*}}}*/
|
---|
[4050] | 44 |
|
---|
| 45 | };
|
---|
[11292] | 46 | #endif /* _TRIAP1ELEMENTRESULT_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.