@@ -338,6 +338,10 @@ class Flow1D : public Domain1D
338
338
*/
339
339
void computeRadiation (double * x, size_t jmin, size_t jmax);
340
340
341
+ // ! @name Governing Equations
342
+ // ! Methods are used to evaluate residuals for each of the governing equations.
343
+ // ! @{
344
+
341
345
/* *
342
346
* Evaluate the continuity equation residual.
343
347
*
@@ -462,6 +466,8 @@ class Flow1D : public Domain1D
462
466
virtual void evalElectricField (double * x, double * rsd, int * diag,
463
467
double rdt, size_t jmin, size_t jmax);
464
468
469
+ // ! @} End of Governing Equations
470
+
465
471
// ! Alternate version of evalContinuity with legacy signature.
466
472
// ! Implemented by StFlow; included here to prevent compiler warnings about shadowed
467
473
// ! virtual functions.
@@ -546,7 +552,7 @@ class Flow1D : public Domain1D
546
552
}
547
553
// ! @}
548
554
549
- // ! @name convective spatial derivatives.
555
+ // ! @name Convective spatial derivatives
550
556
// !
551
557
// ! These use upwind differencing, assuming u(z) is negative
552
558
// ! @{
@@ -598,12 +604,12 @@ class Flow1D : public Domain1D
598
604
vector<double > m_dz;
599
605
600
606
// mixture thermo properties
601
- vector<double > m_rho;
602
- vector<double > m_wtm;
607
+ vector<double > m_rho; // !< Vector of size #m_nsp to cache densities
608
+ vector<double > m_wtm; // !< Vector of size #m_nsp to cache mean molecular weights
603
609
604
610
// species thermo properties
605
611
vector<double > m_wt;
606
- vector<double > m_cp;
612
+ vector<double > m_cp; // !< Vector of size #m_nsp to cache specific heat capacities
607
613
608
614
// transport properties
609
615
vector<double > m_visc;
@@ -619,7 +625,7 @@ class Flow1D : public Domain1D
619
625
// ! Array of size #m_nsp by #m_points-1 for saving enthalpy fluxes
620
626
Array2D m_dhk_dz;
621
627
622
- // production rates
628
+ // ! Array of size #m_nsp by #m_points for saving species production rates
623
629
Array2D m_wdot;
624
630
625
631
size_t m_nsp; // !< Number of species in the mechanism
0 commit comments