You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/pull_request_template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
*Put an X by all that apply. You can fill this out after submitting the PR. If you have any questions, don't hesitate to ask! We want to help. These are a guide for you to know what the reviewers will be looking for in your contribution.*
13
13
14
14
-[ ] I am submitting my contribution to the develop branch.
15
-
-[ ] My contribution generates no new compiler warnings (try with the '-Wall -Wextra -Wno-unused-parameter -Wno-empty-body' compiler flags).
15
+
-[ ] My contribution generates no new compiler warnings (try with the '-Wall -Wextra -Wno-unused-parameter -Wno-empty-body' compiler flags, or simply --warnlevel=2 when using meson).
16
16
-[ ] My contribution is commented and consistent with SU2 style.
17
17
-[ ] I have added a test case that demonstrates my contribution, if necessary.
18
18
-[ ] I have updated appropriate documentation (Tutorials, Docs Page, config_template.cpp) , if necessary.
su2double *Roughness_Height; /*!< \brief Equivalent sand grain roughness for the marker according to config file. */
311
313
su2double *Displ_Value; /*!< \brief Specified displacement for displacement boundaries. */
312
314
su2double *Load_Value; /*!< \brief Specified force for load boundaries. */
313
315
su2double *Damper_Constant; /*!< \brief Specified constant for damper boundaries. */
@@ -555,6 +557,8 @@ class CConfig {
555
557
*Kind_Inc_Outlet,
556
558
*Kind_Data_Riemann,
557
559
*Kind_Data_Giles; /*!< \brief Kind of inlet boundary treatment. */
560
+
unsignedshort *Kind_Wall; /*!< \brief Type of wall treatment. */
561
+
unsignedshort nWall_Types; /*!< \brief Number of wall treatment types listed. */
558
562
unsignedshort nInc_Inlet; /*!< \brief Number of inlet boundary treatment types listed. */
559
563
unsignedshort nInc_Outlet; /*!< \brief Number of inlet boundary treatment types listed. */
560
564
su2double Inc_Inlet_Damping; /*!< \brief Damping factor applied to the iterative updates to the velocity at a pressure inlet in incompressible flow. */
@@ -918,7 +922,8 @@ class CConfig {
918
922
nMarkerPitching_Ampl, /*!< \brief Number of values provided for pitching amplitude of marker. */
919
923
nMarkerPitching_Phase, /*!< \brief Number of values provided for pitching phase offset of marker. */
920
924
nMarkerPlunging_Omega, /*!< \brief Number of values provided for angular frequency of marker. */
921
-
nMarkerPlunging_Ampl; /*!< \brief Number of values provided for plunging amplitude of marker. */
925
+
nMarkerPlunging_Ampl, /*!< \brief Number of values provided for plunging amplitude of marker. */
926
+
nRough_Wall; /*!< \brief Number of rough walls. */
922
927
su2double *Omega_HB; /*!< \brief Frequency for Harmonic Balance Operator (in rad/s). */
923
928
unsignedshort
924
929
nOmega_HB, /*!< \brief Number of frequencies in Harmonic Balance Operator. */
@@ -991,7 +996,9 @@ class CConfig {
991
996
DV_Penalty; /*!< \brief Penalty weight to add a constraint to the total amount of stiffness. */
992
997
unsignedlong Nonphys_Points, /*!< \brief Current number of non-physical points in the solution. */
993
998
Nonphys_Reconstr; /*!< \brief Current number of non-physical reconstructions for 2nd-order upwinding. */
Copy file name to clipboardExpand all lines: Common/include/geometry/CGeometry.hpp
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -137,8 +137,8 @@ class CGeometry {
137
137
138
138
#if defined(HAVE_MPI) && defined(HAVE_PARMETIS)
139
139
vector<vector<unsignedlong> > adj_nodes; /*!< \brief Vector of vectors holding each node's adjacency during preparation for ParMETIS. */
140
-
idx_t *adjacency{nullptr}; /*!< \brief Local adjacency array to be input into ParMETIS for partitioning (idx_t is a ParMETIS type defined in their headers). */
141
-
idx_t *xadj{nullptr}; /*!< \brief Index array that points to the start of each node's adjacency in CSR format (needed to interpret the adjacency array). */
140
+
vector<idx_t> adjacency; /*!< \brief Local adjacency array to be input into ParMETIS for partitioning (idx_t is a ParMETIS type defined in their headers). */
141
+
vector<idx_t> xadj; /*!< \brief Index array that points to the start of each node's adjacency in CSR format (needed to interpret the adjacency array). */
142
142
#endif
143
143
144
144
/*--- Turbomachinery variables ---*/
@@ -769,7 +769,7 @@ class CGeometry {
769
769
* \brief A virtual member.
770
770
* \param[in] config - Definition of the particular problem.
0 commit comments