feat(GridFire): Much more robust starting network
GraphEngine now can initialize with a much more robust set of reactions (including the entire reaction set). The jacobian can still be efficiently evaluated using CppAD's sparse jacobian feature. Further, the primeing network has been signifiganty enhanced to handle much hotter termperatures
This commit is contained in:
@@ -229,6 +229,10 @@ namespace gridfire {
|
||||
return Y; // Return the vector of molar abundances
|
||||
}
|
||||
|
||||
PrimingReport AdaptiveEngineView::primeEngine(const NetIn &netIn) {
|
||||
return m_baseEngine.primeEngine(netIn);
|
||||
}
|
||||
|
||||
int AdaptiveEngineView::getSpeciesIndex(const fourdst::atomic::Species &species) const {
|
||||
auto it = std::find(m_activeSpecies.begin(), m_activeSpecies.end(), species);
|
||||
if (it != m_activeSpecies.end()) {
|
||||
|
||||
Reference in New Issue
Block a user