@@ -150,7 +150,6 @@ class CConfig {
150150 su2double CL_Target; /* !< \brief Fixed Cl mode Target Cl. */
151151 su2double Confinement_Param; /* !< \brief Confinement paramenter for Vorticity Confinement method. */
152152 TIME_MARCHING TimeMarching; /* !< \brief Steady or unsteady (time stepping or dual time stepping) computation. */
153- unsigned short Dynamic_Analysis; /* !< \brief Static or dynamic structural analysis. */
154153 su2double FixAzimuthalLine; /* !< \brief Fix an azimuthal line due to misalignments of the nearfield. */
155154 su2double **DV_Value; /* !< \brief Previous value of the design variable. */
156155 su2double Venkat_LimiterCoeff; /* !< \brief Limiter coefficient */
@@ -168,9 +167,6 @@ class CConfig {
168167 su2double HarmonicBalance_Period; /* !< \brief Period of oscillation to be used with harmonic balance computations. */
169168 su2double Delta_UnstTime, /* !< \brief Time step for unsteady computations. */
170169 Delta_UnstTimeND; /* !< \brief Time step for unsteady computations (non dimensional). */
171- su2double Delta_DynTime, /* !< \brief Time step for dynamic structural computations. */
172- Total_DynTime, /* !< \brief Total time for dynamic structural computations. */
173- Current_DynTime; /* !< \brief Global time of the dynamic structural computations. */
174170 su2double Total_UnstTime, /* !< \brief Total time for unsteady computations. */
175171 Total_UnstTimeND; /* !< \brief Total time for unsteady computations (non dimensional). */
176172 su2double Current_UnstTime, /* !< \brief Global time of the unsteady simulation. */
@@ -2112,17 +2108,11 @@ class CConfig {
21122108 su2double GetElasticyMod (unsigned short id_val) const { return ElasticityMod[id_val]; }
21132109
21142110 /* !
2115- * \brief Decide whether to apply DE effects to the model.
2116- * \return <code>TRUE</code> if the DE effects are to be applied, <code>FALSE</code> otherwise.
2117- */
2111+ * \brief Decide whether to apply DE effects to the model.
2112+ * \return <code>TRUE</code> if the DE effects are to be applied, <code>FALSE</code> otherwise.
2113+ */
21182114 bool GetDE_Effects (void ) const { return DE_Effects; }
21192115
2120- /* !
2121- * \brief Decide whether to predict the DE effects for the next time step.
2122- * \return <code>TRUE</code> if the DE effects are to be applied, <code>FALSE</code> otherwise.
2123- */
2124- bool GetDE_Predicted (void );
2125-
21262116 /* !
21272117 * \brief Get the number of different electric constants.
21282118 * \return Value of the DE modulus.
@@ -8722,34 +8712,6 @@ class CConfig {
87228712 */
87238713 bool GetSteadyRestart (void ) const { return SteadyRestart; }
87248714
8725- /* !
8726- * \brief Provides information about the time integration of the structural analysis, and change the write in the output
8727- * files information about the iteration.
8728- * \return The kind of time integration: Static or dynamic analysis
8729- */
8730- unsigned short GetDynamic_Analysis (void ) const { return Dynamic_Analysis; }
8731-
8732- /* !
8733- * \brief If we are prforming an unsteady simulation, there is only
8734- * one value of the time step for the complete simulation.
8735- * \return Value of the time step in an unsteady simulation (non dimensional).
8736- */
8737- su2double GetDelta_DynTime (void ) const { return Delta_DynTime; }
8738-
8739- /* !
8740- * \brief If we are prforming an unsteady simulation, there is only
8741- * one value of the time step for the complete simulation.
8742- * \return Value of the time step in an unsteady simulation (non dimensional).
8743- */
8744- su2double GetTotal_DynTime (void ) const { return Total_DynTime; }
8745-
8746- /* !
8747- * \brief If we are prforming an unsteady simulation, there is only
8748- * one value of the time step for the complete simulation.
8749- * \return Value of the time step in an unsteady simulation (non dimensional).
8750- */
8751- su2double GetCurrent_DynTime (void ) const { return Current_DynTime; }
8752-
87538715 /* !
87548716 * \brief Get the current instance.
87558717 * \return Current instance identifier.
@@ -8781,22 +8743,10 @@ class CConfig {
87818743 unsigned short GetnIntCoeffs (void ) const { return nIntCoeffs; }
87828744
87838745 /* !
8784- * \brief Get the number of different values for the elasticity modulus .
8785- * \return Number of different values for the elasticity modulus .
8746+ * \brief Get the number of different materials for the elasticity solver .
8747+ * \return Number of different materials .
87868748 */
8787- unsigned short GetnElasticityMod (void ) const { return nElasticityMod; }
8788-
8789- /* !
8790- * \brief Get the number of different values for the Poisson ratio.
8791- * \return Number of different values for the Poisson ratio.
8792- */
8793- unsigned short GetnPoissonRatio (void ) const { return nPoissonRatio; }
8794-
8795- /* !
8796- * \brief Get the number of different values for the Material density.
8797- * \return Number of different values for the Material density.
8798- */
8799- unsigned short GetnMaterialDensity (void ) const { return nMaterialDensity; }
8749+ unsigned short GetnElasticityMat (void ) const { return nElasticityMod; }
88008750
88018751 /* !
88028752 * \brief Get the integration coefficients for the Generalized Alpha - Newmark integration integration scheme.
@@ -9282,12 +9232,6 @@ class CConfig {
92829232 */
92839233 void SetnTime_Iter (unsigned long val_iter) { nTimeIter = val_iter; }
92849234
9285- /* !
9286- * \brief Get the number of pseudo-time iterations
9287- * \return Number of pseudo-time steps run for the single-zone problem
9288- */
9289- unsigned long GetnIter (void ) const { return nIter; }
9290-
92919235 /* !
92929236 * \brief Get the restart iteration
92939237 * \return Iteration for the restart of multizone problems
0 commit comments