source: issm/trunk/src/c/classes/ElementResults/TriaP1ElementResult.h@ 15396

Last change on this file since 15396 was 15128, checked in by Mathieu Morlighem, 12 years ago

DEL: removed ProcessUnits from core, moved everything to m/py

File size: 1.2 KB
Line 
1/*! \file TriaP1ElementResult.h
2 * \brief: header file for TriaP1ElementResult object
3 */
4
5#ifndef _TRIAP1ELEMENTRESULT_H_
6#define _TRIAP1ELEMENTRESULT_H_
7
8/*Headers:*/
9#include "../Inputs/Input.h"
10
11class TriaP1ElementResult: public ElementResult{
12
13 private:
14 int enum_type;
15 IssmDouble values[3];
16 int step;
17 IssmDouble time;
18
19 public:
20
21 /*TriaP1ElementResult constructors, destructors: {{{*/
22 TriaP1ElementResult();
23 TriaP1ElementResult(int enum_type,IssmDouble* values,int step,IssmDouble time);
24 ~TriaP1ElementResult();
25 /*}}}*/
26 /*Object virtual functions definitions:{{{ */
27 void Echo();
28 void DeepEcho();
29 int Id();
30 int ObjectEnum();
31 Object* copy();
32 /*}}}*/
33 /*ElementResult virtual functions definitions: {{{*/
34 ElementResult* SpawnTriaElementResult(int* indices);
35 IssmDouble GetTime(void){return time;};
36 int GetStep(void){return step;};
37 int NumberOfNodalValues(void);
38 void PatchFill(int row, Patch* patch);
39 /*}}}*/
40 /*TriaP1ElementResult management: {{{*/
41 int InstanceEnum();
42 void GetVectorFromResults(Vector<IssmDouble>* vector,int* doflist,int* connectivitylist,int numdofs);
43 void GetElementVectorFromResults(Vector<IssmDouble>* vector,int dof);
44 /*}}}*/
45
46};
47#endif /* _TRIAP1ELEMENTRESULT_H */
Note: See TracBrowser for help on using the repository browser.