Skip to content

Commit

Permalink
those two files were left out in the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangshu committed Mar 16, 2021
1 parent baa3542 commit 51c4b8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mdschism/MDSCHISMMeshProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ bool MDSCHISMMeshProvider::loadMesh()
}


(*localFileStream)>>m_number_node_no_ghost>>m_number_element_no_ghost>>m_number_side_no_ghost;
//(*localFileStream)>>m_number_node_no_ghost>>m_number_element_no_ghost>>m_number_side_no_ghost;
m_mesh_loaded = true;
localFileStream->close();
delete localFileStream;
Expand Down Expand Up @@ -1194,7 +1194,7 @@ bool MDSCHISMMeshProvider::fillMeshElement(long * a_elementCache) const
//{
// loadMesh();
//}
debug1 << "in fill mesh " << m_number_element << "\n";
//debug1 << "in fill mesh " << m_number_element << "\n";
for(long i=0;i<(MeshConstants10::MAX_NUM_NODE_PER_CELL+1)*m_number_element;i++)
{
a_elementCache[i]=m_faceNodesPtr[i];
Expand Down
7 changes: 4 additions & 3 deletions mdschism/MDSCHISMMeshProvider.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ public :
long m_number_side_no_ghost;
long m_number_node_no_ghost;
long m_number_element_no_ghost;
long * m_local_node_id_to_global_id;
long * m_local_ele_id_to_global_id;
long * m_local_side_id_to_global_id;

private:

Expand Down Expand Up @@ -167,9 +170,7 @@ public :
double * m_nodex;
double * m_nodey;
long * m_faceNodesPtr;
long * m_local_node_id_to_global_id;
long * m_local_ele_id_to_global_id;
long * m_local_side_id_to_global_id;

double * m_dp;


Expand Down

0 comments on commit 51c4b8c

Please sign in to comment.