@@ -356,6 +356,10 @@ class Flow1D : public Domain1D
356
356
*/
357
357
void computeRadiation (double * x, size_t jmin, size_t jmax);
358
358
359
+ // ! @name Governing Equations
360
+ // ! Methods are used to evaluate residuals for each of the governing equations.
361
+ // ! @{
362
+
359
363
/* *
360
364
* Evaluate the continuity equation residual.
361
365
*
@@ -480,6 +484,8 @@ class Flow1D : public Domain1D
480
484
virtual void evalElectricField (double * x, double * rsd, int * diag,
481
485
double rdt, size_t jmin, size_t jmax);
482
486
487
+ // ! @} End of Governing Equations
488
+
483
489
// ! Alternate version of evalContinuity with legacy signature.
484
490
// ! Implemented by StFlow; included here to prevent compiler warnings about shadowed
485
491
// ! virtual functions.
@@ -564,7 +570,7 @@ class Flow1D : public Domain1D
564
570
}
565
571
// ! @}
566
572
567
- // ! @name convective spatial derivatives.
573
+ // ! @name Convective spatial derivatives
568
574
// !
569
575
// ! These use upwind differencing, assuming u(z) is negative
570
576
// ! @{
@@ -616,12 +622,12 @@ class Flow1D : public Domain1D
616
622
vector<double > m_dz;
617
623
618
624
// mixture thermo properties
619
- vector<double > m_rho;
620
- vector<double > m_wtm;
625
+ vector<double > m_rho; // !< Vector of size #m_nsp to cache densities
626
+ vector<double > m_wtm; // !< Vector of size #m_nsp to cache mean molecular weights
621
627
622
628
// species thermo properties
623
629
vector<double > m_wt;
624
- vector<double > m_cp;
630
+ vector<double > m_cp; // !< Vector of size #m_nsp to cache specific heat capacities
625
631
626
632
// transport properties
627
633
vector<double > m_visc;
@@ -639,7 +645,7 @@ class Flow1D : public Domain1D
639
645
// ! Array of size #m_nsp by #m_points-1 for saving enthalpy fluxes
640
646
Array2D m_dhk_dz;
641
647
642
- // production rates
648
+ // ! Array of size #m_nsp by #m_points for saving species production rates
643
649
Array2D m_wdot;
644
650
645
651
size_t m_nsp; // !< Number of species in the mechanism
0 commit comments