@@ -418,6 +418,10 @@ class Flow1D : public Domain1D
418
418
*/
419
419
void computeRadiation (double * x, size_t jmin, size_t jmax);
420
420
421
+ // ! @name Governing Equations
422
+ // ! Methods are used to evaluate residuals for each of the governing equations.
423
+ // ! @{
424
+
421
425
/* *
422
426
* Evaluate the continuity equation residual.
423
427
*
@@ -542,6 +546,8 @@ class Flow1D : public Domain1D
542
546
virtual void evalElectricField (double * x, double * rsd, int * diag,
543
547
double rdt, size_t jmin, size_t jmax);
544
548
549
+ // ! @} End of Governing Equations
550
+
545
551
// ! Alternate version of evalContinuity with legacy signature.
546
552
// ! Implemented by StFlow; included here to prevent compiler warnings about shadowed
547
553
// ! virtual functions.
@@ -649,7 +655,7 @@ class Flow1D : public Domain1D
649
655
}
650
656
// ! @}
651
657
652
- // ! @name convective spatial derivatives.
658
+ // ! @name Convective spatial derivatives
653
659
// !
654
660
// ! These use upwind differencing, assuming u(z) is negative
655
661
// ! @{
@@ -701,12 +707,12 @@ class Flow1D : public Domain1D
701
707
vector<double > m_dz;
702
708
703
709
// mixture thermo properties
704
- vector<double > m_rho;
705
- vector<double > m_wtm;
710
+ vector<double > m_rho; // !< Vector of size #m_nsp to cache densities
711
+ vector<double > m_wtm; // !< Vector of size #m_nsp to cache mean molecular weights
706
712
707
713
// species thermo properties
708
714
vector<double > m_wt;
709
- vector<double > m_cp;
715
+ vector<double > m_cp; // !< Vector of size #m_nsp to cache specific heat capacities
710
716
711
717
// transport properties
712
718
vector<double > m_visc;
@@ -724,7 +730,7 @@ class Flow1D : public Domain1D
724
730
// ! Array of size #m_nsp by #m_points-1 for saving enthalpy fluxes
725
731
Array2D m_dhk_dz;
726
732
727
- // production rates
733
+ // ! Array of size #m_nsp by #m_points for saving species production rates
728
734
Array2D m_wdot;
729
735
730
736
size_t m_nsp; // !< Number of species in the mechanism
0 commit comments