-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
schwarz WIP #133
schwarz WIP #133
Conversation
@@ -130,6 +130,10 @@ class CellCenteredUniformMesh | |||
const y_coords_type & viewY() const{ return m_y; } | |||
const z_coords_type & viewZ() const{ return m_z; } | |||
|
|||
int nx() const{ return m_meshDims[0]; }; | |||
int ny() const{ return m_meshDims[1]; }; | |||
int nz() const{ return m_meshDims[2]; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these will need to go away because they have no meaning for a generic collection of cells, namely sample mesh. if you need this information, you have to move it to your own code where you know if you are doiing sample mesh or full mesh
|
||
f.write("overlap %8d\n" % overlap) | ||
|
||
if __name__ == "__main__": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this whole file should be moved out into your new repo
closing this as per discussion |
DO NOT MERGE THIS -
this is just for checking that the branch does not break existing things and for keeping track of changes