source: issm/branches/trunk-larour-NatGeoScience2016/src/c/analyses/DamageEvolutionAnalysis.h@ 21243

Last change on this file since 21243 was 19386, checked in by cborstad, 10 years ago

CHG: working to implement flux corrected transport for damage evolution

File size: 2.1 KB
Line 
1/*! \file DamageEvolutionAnalysis.h
2 * \brief: header file for generic external result object
3 */
4
5#ifndef _DamageEvolutionAnalysis_
6#define _DamageEvolutionAnalysis_
7
8/*Headers*/
9#include "./Analysis.h"
10
11class DamageEvolutionAnalysis: 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);
18 int DofsPerNode(int** doflist,int domaintype,int approximation);
19 void UpdateElements(Elements* elements,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 void CreateDamageFInput(Element* element);
25 void CreateDamageFInputExp(Element* element);
26 void CreateDamageFInputPralong(Element* element);
27 ElementVector* CreateDVector(Element* element);
28 ElementMatrix* CreateJacobianMatrix(Element* element);
29 ElementMatrix* CreateKMatrix(Element* element);
30 ElementVector* CreatePVector(Element* element);
31 void GetB(IssmDouble* B,Element* element,int dim,IssmDouble* xyz_list,Gauss* gauss);
32 void GetBprime(IssmDouble* B,Element* element,int dim,IssmDouble* xyz_list,Gauss* gauss);
33 void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
34 void GradientJ(Vector<IssmDouble>* gradient,Element* element,int control_type,int control_index);
35 void InputUpdateFromSolution(IssmDouble* solution,Element* element);
36 void UpdateConstraints(FemModel* femmodel);
37
38 /*FCT*/
39 ElementMatrix* CreateFctKMatrix(Element* element);
40 ElementMatrix* CreateMassMatrix(Element* element);
41 void FctKMatrix(Matrix<IssmDouble>** pKff,Matrix<IssmDouble>** pKfs,FemModel* femmodel);
42 void LumpedMassMatrix(Vector<IssmDouble>** pMLff,FemModel* femmodel);
43 void MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel);
44};
45#endif
Note: See TracBrowser for help on using the repository browser.