source: issm/trunk-jpl/src/c/analyses/FreeSurfaceBaseAnalysis.h@ 16684

Last change on this file since 16684 was 16684, checked in by Mathieu Morlighem, 11 years ago

NEW: moving InputUpdateFromSolution from element to analysis

File size: 862 bytes
Line 
1/*! \file FreeSurfaceBaseAnalysis.h
2 * \brief: header file for generic external result object
3 */
4
5#ifndef _FreeSurfaceBaseAnalysis_
6#define _FreeSurfaceBaseAnalysis_
7
8/*Headers*/
9#include "./Analysis.h"
10
11class FreeSurfaceBaseAnalysis: public Analysis{
12
13 public:
14 int DofsPerNode(int** doflist,int meshtype,int approximation);
15 void UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum);
16 void UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type);
17 void CreateNodes(Nodes* nodes,IoModel* iomodel);
18 void CreateConstraints(Constraints* constraints,IoModel* iomodel);
19 void CreateLoads(Loads* loads, IoModel* iomodel);
20 void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
21 void InputUpdateFromSolution(IssmDouble* solution,Element* element);
22};
23#endif
Note: See TracBrowser for help on using the repository browser.