[23946] | 1 | /*!\file Channel.h
|
---|
| 2 | * \brief: header file for icefront object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef _CHANNEL_H_
|
---|
| 6 | #define _CHANNEL_H_
|
---|
| 7 |
|
---|
| 8 | /*Headers:*/
|
---|
| 9 | #include "./Load.h"
|
---|
| 10 | class Hook;
|
---|
| 11 | class Parameters;
|
---|
| 12 | class IoModel;
|
---|
| 13 | class Element;
|
---|
| 14 | class Vertex;
|
---|
| 15 | class ElementMatrix;
|
---|
| 16 | class ElementVector;
|
---|
| 17 |
|
---|
| 18 | class Channel: public Load {
|
---|
| 19 |
|
---|
[23962] | 20 | private:
|
---|
| 21 | IssmDouble S;
|
---|
[24070] | 22 | IssmDouble Sold;
|
---|
[24064] | 23 | bool boundary;
|
---|
[23962] | 24 |
|
---|
[25836] | 25 | /*output only*/
|
---|
| 26 | IssmDouble discharge;
|
---|
| 27 |
|
---|
[23946] | 28 | public:
|
---|
[23973] | 29 | int sid;
|
---|
[23946] | 30 | int id;
|
---|
| 31 |
|
---|
| 32 | /*Hooks*/
|
---|
| 33 | Hook *helement;
|
---|
| 34 | Hook *hnodes;
|
---|
| 35 | Hook *hvertices;
|
---|
| 36 |
|
---|
| 37 | /*Corresponding fields*/
|
---|
| 38 | Element *element;
|
---|
| 39 | Vertex **vertices;
|
---|
| 40 | Node **nodes;
|
---|
| 41 | Parameters *parameters;
|
---|
| 42 |
|
---|
| 43 | /*Channel constructors,destructors {{{*/
|
---|
| 44 | Channel();
|
---|
[24132] | 45 | Channel(int numericalflux_id,IssmDouble channelarea,int index,IoModel* iomodel);
|
---|
| 46 | //Channel(int numericalflux_id,int i,int index,IoModel* iomodel);
|
---|
[23946] | 47 | ~Channel();
|
---|
| 48 | /*}}}*/
|
---|
| 49 | /*Object virtual functions definitions:{{{ */
|
---|
| 50 | Object *copy();
|
---|
| 51 | void DeepEcho();
|
---|
| 52 | void Echo();
|
---|
| 53 | int Id();
|
---|
[25836] | 54 | void Marshall(MarshallHandle* marshallhandle);
|
---|
[23946] | 55 | int ObjectEnum();
|
---|
| 56 | /*}}}*/
|
---|
| 57 | /*Update virtual functions resolution: {{{*/
|
---|
| 58 | void InputUpdateFromConstant(IssmDouble constant, int name){/*Do nothing*/};
|
---|
| 59 | void InputUpdateFromConstant(int constant, int name){/*Do nothing*/};
|
---|
| 60 | void InputUpdateFromConstant(bool constant, int name){_error_("Not implemented yet!");}
|
---|
| 61 | void InputUpdateFromIoModel(int index, IoModel* iomodel){_error_("not implemented yet");};
|
---|
| 62 | void InputUpdateFromMatrixDakota(IssmDouble* matrix, int nrows, int ncols, int name, int type){/*Do nothing*/}
|
---|
| 63 | void InputUpdateFromVector(IssmDouble* vector, int name, int type){/*Do nothing*/}
|
---|
| 64 | void InputUpdateFromVectorDakota(IssmDouble* vector, int name, int type){/*Do nothing*/}
|
---|
| 65 | /*}}}*/
|
---|
| 66 | /*Load virtual functions definitions: {{{*/
|
---|
| 67 | void Configure(Elements* elements,Loads* loads,Nodes* nodes,Vertices* vertices,Materials* materials,Parameters* parameters);
|
---|
| 68 | void CreateJacobianMatrix(Matrix<IssmDouble>* Jff){_error_("Not implemented yet");};
|
---|
| 69 | void CreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* Kfs);
|
---|
| 70 | void CreatePVector(Vector<IssmDouble>* pf);
|
---|
| 71 | void GetNodesLidList(int* lidlist);
|
---|
| 72 | void GetNodesSidList(int* sidlist);
|
---|
| 73 | int GetNumberOfNodes(void);
|
---|
| 74 | bool IsPenalty(void);
|
---|
| 75 | void PenaltyCreateJacobianMatrix(Matrix<IssmDouble>* Jff,IssmDouble kmax){_error_("Not implemented yet");};
|
---|
| 76 | void PenaltyCreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* kfs, IssmDouble kmax);
|
---|
| 77 | void PenaltyCreatePVector(Vector<IssmDouble>* pf, IssmDouble kmax);
|
---|
| 78 | void ResetHooks();
|
---|
| 79 | void SetCurrentConfiguration(Elements* elements,Loads* loads,Nodes* nodes,Vertices* vertices,Materials* materials,Parameters* parameters);
|
---|
[25836] | 80 | void SetwiseNodeConnectivity(int* d_nz,int* o_nz,Node* node,bool* flags,int* flagsindices,int* flagsindices_counter,int set1_enum,int set2_enum);
|
---|
[23946] | 81 | /*}}}*/
|
---|
| 82 | /*Channel management:{{{*/
|
---|
[24070] | 83 | void SetChannelCrossSectionOld(void);
|
---|
[23965] | 84 | void UpdateChannelCrossSection(void);
|
---|
[23960] | 85 | ElementVector* CreatePVectorHydrologyGlaDS(void);
|
---|
| 86 | ElementMatrix* CreateKMatrixHydrologyGlaDS(void);
|
---|
[24054] | 87 | void WriteChannelCrossSection(IssmPDouble* values);
|
---|
[25836] | 88 | void WriteChannelDischarge(IssmPDouble* values);
|
---|
[23946] | 89 | /*}}}*/
|
---|
| 90 |
|
---|
| 91 | };
|
---|
| 92 |
|
---|
| 93 | #endif /* _NUMERICALFLUX_H_ */
|
---|