-
Notifications
You must be signed in to change notification settings - Fork 239
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
Add bulk element mappings for triangles. #2901
Conversation
/// local coordinates of the tri face. | ||
/// \param tri the tri element | ||
/// \param face_id the id of the tri face the point will be mapped on | ||
/// \param wp the gauss point of the lower dimensional element |
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.
Minor; Would call it integration point at least.
Better would be to call it something like local coordinate of the line element. (and then to pass only the coordinates w/o the integration weight.) But this is a long story...
return MathLib::Point3d{ | ||
std::array<double, 3>{{0.0, 1 - wp[0], 0.0}}}; | ||
default: | ||
OGS_FATAL("Invalid face id '%u' for the tri.", face_id); |
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.
OGS_FATAL("Invalid face id '%u' for the tri.", face_id); | |
OGS_FATAL("Invalid face id '{:d}' for the tri.", face_id); |
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.
Yes, you are right. Will fix it tomorrow.
9e440dd
to
b34d242
Compare
94c3a14
to
c1703dc
Compare
I don't see the reason for the doxygen warning:
Seems to be a false positive? |
c1703dc
to
5179a17
Compare
This is necessary because of a doxygen bug in documenting overloaded functions.
OpenGeoSys development has been moved to GitLab. |
Yes, I created a pdf. The question is where to put the sketches?