source: issm/trunk/src/c/analyses/GiaAnalysis.h@ 25836

Last change on this file since 25836 was 25836, checked in by Mathieu Morlighem, 4 years ago

merged trunk-jpl and trunk for revision 25834

File size: 1.3 KB
RevLine 
[25066]1/*! \file GiaAnalysis.h
[21532]2 * \brief: header file for generic external result object
3 */
4
[25066]5#ifndef _GiaAnalysis_
6#define _GiaAnalysis_
[21532]7
8/*Headers*/
9#include "./Analysis.h"
10
[25066]11class GiaAnalysis: public Analysis{
[21532]12
13 public:
14 /*Model processing*/
15 void CreateConstraints(Constraints* constraints,IoModel* iomodel);
16 void CreateLoads(Loads* loads, IoModel* iomodel);
[23585]17 void CreateNodes(Nodes* nodes,IoModel* iomodel,bool isamr=false);
[21532]18 int DofsPerNode(int** doflist,int domaintype,int approximation);
[25379]19 void UpdateElements(Elements* elements,Inputs* inputs,IoModel* iomodel,int analysis_counter,int analysis_type);
[21532]20 void UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum);
21
22 /*Finite element Analysis*/
23 void Core(FemModel* femmodel);
24 ElementVector* CreateDVector(Element* element);
25 ElementMatrix* CreateJacobianMatrix(Element* element);
26 ElementMatrix* CreateKMatrix(Element* element);
27 ElementVector* CreatePVector(Element* element);
28 void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
[25317]29 void GradientJ(Vector<IssmDouble>* gradient,Element* element,int control_type,int control_interp,int control_index);
[21532]30 void InputUpdateFromSolution(IssmDouble* solution,Element* element);
31 void UpdateConstraints(FemModel* femmodel);
32};
33#endif
Note: See TracBrowser for help on using the repository browser.