source: issm/branches/trunk-jpl-damage/src/c/objects/ElementResults/DoubleElementResult.h@ 12168

Last change on this file since 12168 was 12168, checked in by cborstad, 13 years ago

merged trunk-jpl into branch through revision 12167

File size: 1.5 KB
Line 
1/*! \file DoubleElementResult.h
2 * \brief: header file for double result object
3 * A double result object is just derived from a DoubleInput object, with additional time and step information.
4 */
5
6
7#ifndef _DOUBLEELEMENTRESULT_H_
8#define _DOUBLEELEMENTRESULT_H_
9
10/*Headers:*/
11/*{{{1*/
12#include "../Inputs/Input.h"
13#include "../../include/include.h"
14class Parameters;
15/*}}}*/
16
17class DoubleElementResult: public ElementResult{
18
19 private:
20 int enum_type;
21 double value;
22 int step;
23 double time;
24
25 public:
26
27 /*DoubleElementResult constructors, destructors: {{{1*/
28 DoubleElementResult();
29 DoubleElementResult(int enum_type,double value,int step,double time);
30 ~DoubleElementResult();
31 /*}}}*/
32 /*Object virtual functions definitions:{{{1 */
33 void Echo();
34 void DeepEcho();
35 int Id();
36 int MyRank();
37 int ObjectEnum();
38 Object* copy();
39 /*}}}*/
40 /*ElementResult virtual functions definitions: {{{1*/
41 ElementResult* SpawnTriaElementResult(int* indices);
42 double GetTime(void){return time;};
43 int GetStep(void){return step;};
44 void ProcessUnits(Parameters* parameters);
45 int NumberOfNodalValues(void);
46 void PatchFill(int row, Patch* patch);
47 /*}}}*/
48 /*DoubleElementResult management: {{{1*/
49 int InstanceEnum();
50 void GetVectorFromResults(Vector* vector,int* doflist,int* connectivitylist,int numdofs){_error_("not implemented");};
51 void GetElementVectorFromResults(Vector* vector,int dof){_error_("not implemented");};
52 /*}}}*/
53};
54#endif /* _DOUBLEELEMENTRESULT_H */
Note: See TracBrowser for help on using the repository browser.