-
Notifications
You must be signed in to change notification settings - Fork 247
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
[CORE] Adding new Lobatto quadratures to linear geometries #12918
base: master
Are you sure you want to change the base?
[CORE] Adding new Lobatto quadratures to linear geometries #12918
Conversation
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.
FYI @KratosMultiphysics/technical-committee
Now passes! @rubenzorrilla |
} | ||
else { | ||
return IntegrationMethod::GI_LOBATTO_1; |
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.
Shouldn't this be inside the case 1
section?
@@ -1053,6 +1054,8 @@ template<class TPointType> class Quadrilateral2D4 | |||
Quadrature < QuadrilateralCollocationIntegrationPoints4, | |||
2, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < QuadrilateralCollocationIntegrationPoints5, | |||
2, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < QuadrilateralGaussLobattoIntegrationPoints2, |
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.
Quadrature < QuadrilateralGaussLobattoIntegrationPoints2, | |
Quadrature < QuadrilateralGaussLobattoIntegrationPoints1, |
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.
I think there are still some issues.
I modified them accordingly |
@@ -1450,8 +1450,8 @@ template<class TPointType> class Hexahedra3D8 : public Geometry<TPointType> | |||
Quadrature < HexahedronGaussLegendreIntegrationPoints4, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < HexahedronGaussLegendreIntegrationPoints5, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < HexahedronGaussLobattoIntegrationPoints1, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < HexahedronGaussLobattoIntegrationPoints2, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), | |||
Quadrature < HexahedronGaussLobattoIntegrationPoints2, 3, IntegrationPoint<3> >::GenerateIntegrationPoints() | |||
Quadrature < HexahedronGaussLobattoIntegrationPoints1, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), |
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.
Quadrature < HexahedronGaussLobattoIntegrationPoints1, 3, IntegrationPoint<3> >::GenerateIntegrationPoints(), |
Why repeated?
📝 Description
Adding a new entry to the
enum
of thequadratures
for 1st order Lobatto quadratures (integrate exactly polynomials up to order 1).Added option to triangles, quads, test and hexas.