Removed unused variable 'm_efctr' from StFlow

This commit is contained in:
Ray Speth 2012-08-29 22:13:59 +00:00
parent 58514d790d
commit f45b2b1ddc
2 changed files with 1 additions and 9 deletions

View file

@ -492,7 +492,6 @@ protected:
vector_fp m_zfix;
vector_fp m_tfix;
doublereal m_efctr;
bool m_dovisc;
void updateTransport(doublereal* x, size_t j0, size_t j1);

View file

@ -102,8 +102,7 @@ StFlow::StFlow(IdealGasPhase* ph, size_t nsp, size_t points) :
m_jac(0),
m_ok(false),
m_do_soret(false),
m_transport_option(-1),
m_efctr(0.0)
m_transport_option(-1)
{
m_type = cFlowType;
@ -571,9 +570,6 @@ void AxiStagnFlow::eval(size_t jg, doublereal* xg,
- divHeatFlux(x,j) - sum - sum2;
rsd[index(c_offset_T, j)] /= (m_rho[j]*m_cp[j]);
rsd[index(c_offset_T, j)] =
rsd[index(c_offset_T, j)] + m_efctr*(T_fixed(j) - T(x,j));
rsd[index(c_offset_T, j)] -= rdt*(T(x,j) - T_prev(j));
diag[index(c_offset_T, j)] = 1;
}
@ -885,9 +881,6 @@ void FreeFlame::eval(size_t jg, doublereal* xg,
- divHeatFlux(x,j) - sum - sum2;
rsd[index(c_offset_T, j)] /= (m_rho[j]*m_cp[j]);
rsd[index(c_offset_T, j)] =
rsd[index(c_offset_T, j)] + m_efctr*(T_fixed(j) - T(x,j));
rsd[index(c_offset_T, j)] -= rdt*(T(x,j) - T_prev(j));
diag[index(c_offset_T, j)] = 1;
}