|
37 | 37 | */ |
38 | 38 | class CVertex : public CDualGrid { |
39 | 39 | protected: |
40 | | - unsigned long Nodes[1]; /*!< \brief Vector to store the global nodes of an element. */ |
41 | | - su2double Normal[3]; /*!< \brief Normal coordinates of the element and its center of gravity. */ |
42 | | - su2double Aux_Var; /*!< \brief Auxiliar variable defined only on the surface. */ |
43 | | - su2double CartCoord[3]; /*!< \brief Vertex cartesians coordinates. */ |
44 | | - su2double VarCoord[3]; /*!< \brief Used for storing the coordinate variation due to a surface modification. */ |
45 | | - long PeriodicPoint[5]; /*!< \brief Store the periodic point of a boundary (iProcessor, iPoint) */ |
46 | | - bool ActDisk_Perimeter; /*!< \brief Identify nodes at the perimeter of the actuator disk */ |
47 | | - short Rotation_Type; /*!< \brief Type of rotation associated with the vertex (MPI and periodic) */ |
48 | | - unsigned long Normal_Neighbor; /*!< \brief Index of the closest neighbor. */ |
49 | | - su2double Basis_Function[3]; /*!< \brief Basis function values for interpolation across zones. */ |
| 40 | + unsigned long Nodes[1]; /*!< \brief Vector to store the global nodes of an element. */ |
| 41 | + su2double Normal[3] = {0.0}; /*!< \brief Normal coordinates of the element and its center of gravity. */ |
| 42 | + su2double Aux_Var; /*!< \brief Auxiliar variable defined only on the surface. */ |
| 43 | + su2double CartCoord[3] = {0.0}; /*!< \brief Vertex cartesians coordinates. */ |
| 44 | + su2double VarCoord[3] = {0.0}; /*!< \brief Used for storing the coordinate variation due to a surface modification. */ |
| 45 | + long PeriodicPoint[5] = {-1}; /*!< \brief Store the periodic point of a boundary (iProcessor, iPoint) */ |
| 46 | + bool ActDisk_Perimeter = false; /*!< \brief Identify nodes at the perimeter of the actuator disk */ |
| 47 | + short Rotation_Type; /*!< \brief Type of rotation associated with the vertex (MPI and periodic) */ |
| 48 | + unsigned long Normal_Neighbor; /*!< \brief Index of the closest neighbor. */ |
| 49 | + su2double Basis_Function[3] = {0.0}; /*!< \brief Basis function values for interpolation across zones. */ |
50 | 50 |
|
51 | 51 | public: |
52 | 52 | /*! |
|
0 commit comments