|
Last change
on this file since 16539 was 16539, checked in by Mathieu Morlighem, 12 years ago |
|
CHG: moving model processor stuff to analyses
|
|
File size:
722 bytes
|
| Rev | Line | |
|---|
| [16534] | 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:
|
|---|
| [16539] | 14 | int DofsPerNode(int** doflist,int meshtype,int approximation);
|
|---|
| 15 | void UpdateParameters(Parameters** pparameters,IoModel* iomodel,int solution_enum,int analysis_enum);
|
|---|
| 16 | void UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type);
|
|---|
| 17 | void CreateNodes(Nodes** pnodes,IoModel* iomodel);
|
|---|
| 18 | void CreateConstraints(Constraints** pconstraints,IoModel* iomodel);
|
|---|
| 19 | void CreateLoads(Loads** ploads, IoModel* iomodel);
|
|---|
| [16534] | 20 | };
|
|---|
| 21 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.