/*!\file Channel.h * \brief: header file for icefront object */ #ifndef _CHANNEL_H_ #define _CHANNEL_H_ /*Headers:*/ #include "./Load.h" class Hook; class Parameters; class IoModel; class Element; class Vertex; class ElementMatrix; class ElementVector; class Channel: public Load { private: IssmDouble S; IssmDouble Sold; bool boundary; /*output only*/ IssmDouble discharge; public: int sid; int id; /*Hooks*/ Hook *helement; Hook *hnodes; Hook *hvertices; /*Corresponding fields*/ Element *element; Vertex **vertices; Node **nodes; Parameters *parameters; /*Channel constructors,destructors {{{*/ Channel(); Channel(int numericalflux_id,IssmDouble channelarea,int index,IoModel* iomodel); //Channel(int numericalflux_id,int i,int index,IoModel* iomodel); ~Channel(); /*}}}*/ /*Object virtual functions definitions:{{{ */ Object *copy(); void DeepEcho(); void Echo(); int Id(); void Marshall(MarshallHandle* marshallhandle); int ObjectEnum(); /*}}}*/ /*Update virtual functions resolution: {{{*/ void InputUpdateFromConstant(IssmDouble constant, int name){/*Do nothing*/}; void InputUpdateFromConstant(int constant, int name){/*Do nothing*/}; void InputUpdateFromConstant(bool constant, int name){_error_("Not implemented yet!");} void InputUpdateFromIoModel(int index, IoModel* iomodel){_error_("not implemented yet");}; void InputUpdateFromMatrixDakota(IssmDouble* matrix, int nrows, int ncols, int name, int type){/*Do nothing*/} void InputUpdateFromVector(IssmDouble* vector, int name, int type){/*Do nothing*/} void InputUpdateFromVectorDakota(IssmDouble* vector, int name, int type){/*Do nothing*/} /*}}}*/ /*Load virtual functions definitions: {{{*/ void Configure(Elements* elements,Loads* loads,Nodes* nodes,Vertices* vertices,Materials* materials,Parameters* parameters); void CreateJacobianMatrix(Matrix* Jff){_error_("Not implemented yet");}; void CreateKMatrix(Matrix* Kff, Matrix* Kfs); void CreatePVector(Vector* pf); void GetNodesLidList(int* lidlist); void GetNodesSidList(int* sidlist); int GetNumberOfNodes(void); bool IsPenalty(void); void PenaltyCreateJacobianMatrix(Matrix* Jff,IssmDouble kmax){_error_("Not implemented yet");}; void PenaltyCreateKMatrix(Matrix* Kff, Matrix* kfs, IssmDouble kmax); void PenaltyCreatePVector(Vector* pf, IssmDouble kmax); void ResetHooks(); void SetCurrentConfiguration(Elements* elements,Loads* loads,Nodes* nodes,Vertices* vertices,Materials* materials,Parameters* parameters); void SetwiseNodeConnectivity(int* d_nz,int* o_nz,Node* node,bool* flags,int* flagsindices,int* flagsindices_counter,int set1_enum,int set2_enum); /*}}}*/ /*Channel management:{{{*/ void SetChannelCrossSectionOld(void); void UpdateChannelCrossSection(void); ElementVector* CreatePVectorHydrologyGlaDS(void); ElementMatrix* CreateKMatrixHydrologyGlaDS(void); void WriteChannelCrossSection(IssmPDouble* values); void WriteChannelDischarge(IssmPDouble* values); /*}}}*/ }; #endif /* _NUMERICALFLUX_H_ */