[16534] | 1 | /*! \file HydrologyDCInefficientAnalysis.h
|
---|
| 2 | * \brief: header file for generic external result object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef _HydrologyDCInefficientAnalysis_
|
---|
| 6 | #define _HydrologyDCInefficientAnalysis_
|
---|
| 7 |
|
---|
| 8 | /*Headers*/
|
---|
| 9 | #include "./Analysis.h"
|
---|
[17372] | 10 | class Node;
|
---|
[17375] | 11 | class Input;
|
---|
[16534] | 12 | class HydrologyDCInefficientAnalysis: public Analysis{
|
---|
| 13 |
|
---|
| 14 | public:
|
---|
[16782] | 15 | /*Model processing*/
|
---|
[17686] | 16 | int DofsPerNode(int** doflist,int domaintype,int approximation);
|
---|
[16542] | 17 | void UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum);
|
---|
[16539] | 18 | void UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type);
|
---|
[16542] | 19 | void CreateNodes(Nodes* nodes,IoModel* iomodel);
|
---|
| 20 | void CreateConstraints(Constraints* constraints,IoModel* iomodel);
|
---|
| 21 | void CreateLoads(Loads* loads, IoModel* iomodel);
|
---|
[16782] | 22 |
|
---|
| 23 | /*Finite element Analysis*/
|
---|
[17005] | 24 | void Core(FemModel* femmodel);
|
---|
[17000] | 25 | ElementVector* CreateDVector(Element* element);
|
---|
[16992] | 26 | ElementMatrix* CreateJacobianMatrix(Element* element);
|
---|
[16782] | 27 | ElementMatrix* CreateKMatrix(Element* element);
|
---|
| 28 | ElementVector* CreatePVector(Element* element);
|
---|
[16675] | 29 | void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
|
---|
[18057] | 30 | void GradientJ(Vector<IssmDouble>* gradient,Element* element,int control_type,int control_index);
|
---|
[16684] | 31 | void InputUpdateFromSolution(IssmDouble* solution,Element* element);
|
---|
[17212] | 32 | void UpdateConstraints(FemModel* femmodel);
|
---|
[16853] | 33 |
|
---|
| 34 | /*Intermediaries*/
|
---|
[16899] | 35 | void GetB(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss);
|
---|
[21759] | 36 | IssmDouble SedimentStoring(Element* element, Gauss* gauss, Input* sed_head_input, Input* base_input);
|
---|
| 37 | IssmDouble SedimentTransmitivity(Element* element,Gauss* gauss,Input* sed_head_input, Input* base_input,Input* SedTrans_input);
|
---|
[17372] | 38 | void GetHydrologyDCInefficientHmax(IssmDouble* ph_max,Element* element, Node* innode);
|
---|
[21759] | 39 | IssmDouble GetHydrologyKMatrixTransfer(Element* element);
|
---|
| 40 | IssmDouble GetHydrologyPVectorTransfer(Element* element, Gauss* gauss, Input* epl_head_input);
|
---|
[16864] | 41 | void ElementizeEplMask(FemModel* femmodel);
|
---|
[16534] | 42 | };
|
---|
| 43 | #endif
|
---|