/*! \file FreeSurfaceBaseAnalysis.h * \brief: header file for generic external result object */ #ifndef _FreeSurfaceBaseAnalysis_ #define _FreeSurfaceBaseAnalysis_ /*Headers*/ #include "./Analysis.h" class FreeSurfaceBaseAnalysis: public Analysis{ public: /*Model processing*/ int DofsPerNode(int** doflist,int meshtype,int approximation); void UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum); void UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type); void CreateNodes(Nodes* nodes,IoModel* iomodel); void CreateConstraints(Constraints* constraints,IoModel* iomodel); void CreateLoads(Loads* loads, IoModel* iomodel); /*Finite element Analysis*/ ElementMatrix* CreateJacobianMatrix(Element* element); ElementMatrix* CreateKMatrix(Element* element); ElementVector* CreatePVector(Element* element); void GetSolutionFromInputs(Vector* solution,Element* element); void InputUpdateFromSolution(IssmDouble* solution,Element* element); }; #endif