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
su2double AllBound_CEquivArea_Inv=0.0; /*!< \brief equivalent area coefficient (inviscid contribution) for all the boundaries. */
47
+
vector<su2double> CEquivArea_Mnt; /*!< \brief Equivalent area (inviscid contribution) for each boundary. */
48
+
vector<su2double> CEquivArea_Inv; /*!< \brief Equivalent area (inviscid contribution) for each boundary. */
49
+
50
+
vector<su2double> Inflow_MassFlow; /*!< \brief Mass flow rate for each boundary. */
51
+
vector<su2double> Exhaust_MassFlow; /*!< \brief Mass flow rate for each boundary. */
52
+
vector<su2double> Inflow_Pressure; /*!< \brief Fan face pressure for each boundary. */
53
+
vector<su2double> Inflow_Mach; /*!< \brief Fan face mach number for each boundary. */
54
+
vector<su2double> Inflow_Area; /*!< \brief Boundary total area. */
55
+
vector<su2double> Exhaust_Area; /*!< \brief Boundary total area. */
56
+
vector<su2double> Exhaust_Pressure; /*!< \brief Fan face pressure for each boundary. */
57
+
vector<su2double> Exhaust_Temperature; /*!< \brief Fan face mach number for each boundary. */
46
58
su2double
47
-
AllBound_CEquivArea_Inv = 0.0, /*!< \brief equivalent area coefficient (inviscid contribution) for all the boundaries. */
48
-
*CEquivArea_Mnt = nullptr, /*!< \brief Equivalent area (inviscid contribution) for each boundary. */
49
-
*CEquivArea_Inv = nullptr; /*!< \brief Equivalent area (inviscid contribution) for each boundary. */
50
-
51
-
su2double
52
-
*Inflow_MassFlow = nullptr, /*!< \brief Mass flow rate for each boundary. */
53
-
*Exhaust_MassFlow = nullptr, /*!< \brief Mass flow rate for each boundary. */
54
-
*Inflow_Pressure = nullptr, /*!< \brief Fan face pressure for each boundary. */
55
-
*Inflow_Mach = nullptr, /*!< \brief Fan face mach number for each boundary. */
56
-
*Inflow_Area = nullptr, /*!< \brief Boundary total area. */
57
-
*Exhaust_Area = nullptr, /*!< \brief Boundary total area. */
58
-
*Exhaust_Pressure = nullptr, /*!< \brief Fan face pressure for each boundary. */
59
-
*Exhaust_Temperature = nullptr,/*!< \brief Fan face mach number for each boundary. */
60
59
Inflow_MassFlow_Total = 0.0, /*!< \brief Mass flow rate for each boundary. */
61
60
Exhaust_MassFlow_Total = 0.0, /*!< \brief Mass flow rate for each boundary. */
62
61
Inflow_Pressure_Total = 0.0, /*!< \brief Fan face pressure for each boundary. */
63
62
Inflow_Mach_Total = 0.0, /*!< \brief Fan face mach number for each boundary. */
64
63
InverseDesign = 0.0; /*!< \brief Inverse design functional for each boundary. */
65
-
unsignedlong
66
-
**DonorGlobalIndex = nullptr; /*!< \brief Value of the donor global index. */
67
-
su2double
68
-
***DonorPrimVar = nullptr, /*!< \brief Value of the donor variables at each boundary. */
69
-
**ActDisk_DeltaP = nullptr, /*!< \brief Value of the Delta P. */
70
-
**ActDisk_DeltaT = nullptr; /*!< \brief Value of the Delta T. */
64
+
vector<vector<unsignedlong> > DonorGlobalIndex; /*!< \brief Value of the donor global index. */
65
+
vector<su2activematrix> DonorPrimVar; /*!< \brief Value of the donor variables at each boundary. */
66
+
vector<vector<su2double> > ActDisk_DeltaP; /*!< \brief Value of the Delta P. */
67
+
vector<vector<su2double> > ActDisk_DeltaT; /*!< \brief Value of the Delta T. */
71
68
72
69
su2activevector
73
70
ActDisk_R; /*!< \brief Value of the actuator disk Radius. */
74
71
su2activematrix
75
72
ActDisk_C, /*!< \brief Value of the actuator disk Center. */
76
73
ActDisk_Axis; /*!< \brief Value of the actuator disk Axis. */
77
-
su2double
78
-
**ActDisk_Fa, /*!< \brief Value of the actuator disk Axial Force per Unit Area. */
79
-
**ActDisk_Fx, /*!< \brief Value of the actuator disk X component of the radial and tangential forces per Unit Area resultant. */
80
-
**ActDisk_Fy, /*!< \brief Value of the actuator disk Y component of the radial and tangential forces per Unit Area resultant. */
81
-
**ActDisk_Fz; /*!< \brief Value of the actuator disk Z component of the radial and tangential forces per Unit Area resultant. */
74
+
vector<vector<su2double> > ActDisk_Fa; /*!< \brief Value of the actuator disk Axial Force per Unit Area. */
75
+
vector<vector<su2double> > ActDisk_Fx; /*!< \brief Value of the actuator disk X component of the radial and tangential forces per Unit Area resultant. */
76
+
vector<vector<su2double> > ActDisk_Fy; /*!< \brief Value of the actuator disk Y component of the radial and tangential forces per Unit Area resultant. */
77
+
vector<vector<su2double> > ActDisk_Fz; /*!< \brief Value of the actuator disk Z component of the radial and tangential forces per Unit Area resultant. */
82
78
83
79
su2double
84
80
Total_CL_Prev = 0.0, /*!< \brief Total lift coefficient for all the boundaries (fixed lift mode). */
0 commit comments