|
Last change
on this file since 16782 was 16782, checked in by Mathieu Morlighem, 12 years ago |
|
NEW: preparing CreateKMatrix and PVector (empty for now)
|
|
File size:
1016 bytes
|
| Line | |
|---|
| 1 | /*! \file FreeSurfaceBaseAnalysis.h
|
|---|
| 2 | * \brief: header file for generic external result object
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef _FreeSurfaceBaseAnalysis_
|
|---|
| 6 | #define _FreeSurfaceBaseAnalysis_
|
|---|
| 7 |
|
|---|
| 8 | /*Headers*/
|
|---|
| 9 | #include "./Analysis.h"
|
|---|
| 10 |
|
|---|
| 11 | class FreeSurfaceBaseAnalysis: public Analysis{
|
|---|
| 12 |
|
|---|
| 13 | public:
|
|---|
| 14 | /*Model processing*/
|
|---|
| 15 | int DofsPerNode(int** doflist,int meshtype,int approximation);
|
|---|
| 16 | void UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum);
|
|---|
| 17 | void UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type);
|
|---|
| 18 | void CreateNodes(Nodes* nodes,IoModel* iomodel);
|
|---|
| 19 | void CreateConstraints(Constraints* constraints,IoModel* iomodel);
|
|---|
| 20 | void CreateLoads(Loads* loads, IoModel* iomodel);
|
|---|
| 21 |
|
|---|
| 22 | /*Finite element Analysis*/
|
|---|
| 23 | ElementMatrix* CreateKMatrix(Element* element);
|
|---|
| 24 | ElementVector* CreatePVector(Element* element);
|
|---|
| 25 | void GetSolutionFromInputs(Vector<IssmDouble>* solution,Element* element);
|
|---|
| 26 | void InputUpdateFromSolution(IssmDouble* solution,Element* element);
|
|---|
| 27 | };
|
|---|
| 28 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.