@@ -81,21 +81,21 @@ namespace meshkernel
8181 // geometric constants
8282 namespace geometric
8383 {
84- constexpr double earth_radius = 6378137.0 ; // /< Earth radius(m)
85- constexpr double inverse_earth_radius = 1.0 / earth_radius; // /< One over constants::geometric::earth_radius(m-1);
86- constexpr double absLatitudeAtPoles = 0.0001 ; // /< Pole tolerance in degrees
87- constexpr double refinementTolerance = 1.0e-2 ; // /< Relative size of refinement.
88- constexpr double circumcentreTolerance = 1.0e-3 ; // /< Tolerance used when computing the circumcentre of an element
89- constexpr UInt numNodesInQuadrilateral = 4 ; // /< Number of nodes in a quadrilateral
90- constexpr UInt numNodesInTriangle = 3 ; // /< Number of nodes in a triangle
91- constexpr UInt numNodesInPentagon = 5 ; // /< Number of nodes in a pentagon
92- constexpr UInt numNodesInHexagon = 6 ; // /< Number of nodes in a hexagon
93- constexpr UInt maximumNumberOfEdgesPerNode = 16 ; // /< Maximum number of edges per node
94- constexpr UInt maximumNumberOfEdgesPerFace = 6 ; // /< Maximum number of edges per face
95- constexpr UInt maximumNumberOfNodesPerFace = 6 ; // /< Maximum number of nodes per face
96- constexpr UInt maximumNumberOfConnectedNodes = maximumNumberOfEdgesPerNode * 4 ; // /< Maximum number of connected nodes
97- constexpr double circumCentreWeight = 1.0 ; // /< Weighting factor for circumcentre calculations
98- constexpr CircumCentreMethod defaultCircumCentreMethod = CircumCentreMethod::InternalNetlinksEdge ; // /< Default circum centre calculation method
84+ constexpr double earth_radius = 6378137.0 ; // /< Earth radius(m)
85+ constexpr double inverse_earth_radius = 1.0 / earth_radius; // /< One over constants::geometric::earth_radius(m-1);
86+ constexpr double absLatitudeAtPoles = 0.0001 ; // /< Pole tolerance in degrees
87+ constexpr double refinementTolerance = 1.0e-2 ; // /< Relative size of refinement.
88+ constexpr double circumcentreTolerance = 1.0e-3 ; // /< Tolerance used when computing the circumcentre of an element
89+ constexpr UInt numNodesInQuadrilateral = 4 ; // /< Number of nodes in a quadrilateral
90+ constexpr UInt numNodesInTriangle = 3 ; // /< Number of nodes in a triangle
91+ constexpr UInt numNodesInPentagon = 5 ; // /< Number of nodes in a pentagon
92+ constexpr UInt numNodesInHexagon = 6 ; // /< Number of nodes in a hexagon
93+ constexpr UInt maximumNumberOfEdgesPerNode = 16 ; // /< Maximum number of edges per node
94+ constexpr UInt maximumNumberOfEdgesPerFace = 6 ; // /< Maximum number of edges per face
95+ constexpr UInt maximumNumberOfNodesPerFace = 6 ; // /< Maximum number of nodes per face
96+ constexpr UInt maximumNumberOfConnectedNodes = maximumNumberOfEdgesPerNode * 4 ; // /< Maximum number of connected nodes
97+ constexpr double circumCentreWeight = 1.0 ; // /< Weighting factor for circumcentre calculations
98+ constexpr CircumCentreMethod defaultCircumCentreMethod = CircumCentreMethod::AllNetlinksLoop ; // /< Default circum centre calculation method
9999
100100 } // namespace geometric
101101
0 commit comments