source: issm/trunk/src/c/analyses/HydrologyShreveAnalysis.h@ 24686

Last change on this file since 24686 was 24686, checked in by Mathieu Morlighem, 5 years ago

merged trunk-jpl and trunk for revision 24684

File size: 1.6 KB
Line 
1/*! \file HydrologyShreveAnalysis.h
2 * \brief: header file for generic external result object
3 */
4
5#ifndef _HydrologyShreveAnalysis_
6#define _HydrologyShreveAnalysis_
7
8/*Headers*/
9#include "./Analysis.h"
10
11class HydrologyShreveAnalysis: public Analysis{
12
13 public:
14 /*Model processing*/
15 void CreateConstraints(Constraints* constraints,IoModel* iomodel);
16 void CreateLoads(Loads* loads, IoModel* iomodel);
17 void CreateNodes(Nodes* nodes,IoModel* iomodel,bool isamr=false);
18 int DofsPerNode(int** doflist,int domaintype,int approximation);
19 void UpdateElements(Elements* elements,Inputs2* inputs2,IoModel* iomodel,int analysis_counter,int analysis_type);
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 void CreateHydrologyWaterVelocityInput(Element* element);
26 ElementMatrix* CreateJacobianMatrix(Element* element);
27 ElementMatrix* CreateKMatrix(Element* element);
28 ElementVector* CreatePVector(Element* element);
29 void GetB(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss);
30 void GetBprime(IssmDouble* Bprime,Element* element,IssmDouble* xyz_list,Gauss* gauss);
31 void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
32 void GradientJ(Vector<IssmDouble>* gradient,Element* element,int control_type,int control_index);
33 void InputUpdateFromSolution(IssmDouble* solution,Element* element);
34 void UpdateConstraints(FemModel* femmodel);
35};
36#endif
Note: See TracBrowser for help on using the repository browser.