-
Notifications
You must be signed in to change notification settings - Fork 299
Move side vertex average normal implementation from edge2 to edge #4292
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
Changes from all commits
4232476
0bc5e25
3f79855
d0ddc2d
63dba73
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,20 @@ | |
| typedef std::map<ElemType, std::string> FileMapType; | ||
| FileMapType ref_elem_file; | ||
|
|
||
| static const char* one_nodeelem = | ||
| "libMesh-0.7.0+\n" | ||
| "1 # number of elements\n" | ||
| "1 # number of nodes\n" | ||
| ". # boundary condition specification file\n" | ||
| "n/a # subdomain id specification file\n" | ||
| "n/a # processor id specification file\n" | ||
| "n/a # p-level specification file\n" | ||
| "1 # n_elem at level 0, [ type (n0 ... nN-1) ]\n" | ||
| "27 0\n" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (General comment which I can address separately from this PR.) So 27 is the ElemType enumeration value here. @roystgnr maybe we should update the xda comment that we typically write to make it clear that the first number is an
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. btw I generated this manually. I could not figure out the script (generated an empty file) |
||
| "0.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00\n" | ||
| "1 # number of boundary conditions\n" | ||
| "0 0 0\n" | ||
| ; | ||
|
|
||
| static const char* one_edge = | ||
| "libMesh-0.7.0+\n" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.