GridFire 0.6.0
General Purpose Nuclear Network
Loading...
Searching...
No Matches
gridfire::DefinedEngineView Class Reference

#include <engine_defined.h>

Inheritance diagram for gridfire::DefinedEngineView:
gridfire::DynamicEngine gridfire::EngineView< DynamicEngine > gridfire::Engine gridfire::FileDefinedEngineView gridfire::NetworkPrimingEngineView

Public Member Functions

 DefinedEngineView (const std::vector< std::string > &peNames, DynamicEngine &baseEngine)
 
const DynamicEnginegetBaseEngine () const override
 Access the underlying engine instance.
 
const std::vector< fourdst::atomic::Species > & getNetworkSpecies () const override
 Gets the list of active species in the network defined by the file.
 
std::expected< StepDerivatives< double >, expectations::StaleEngineErrorcalculateRHSAndEnergy (const std::vector< double > &Y_defined, const double T9, const double rho) const override
 Calculates the right-hand side (dY/dt) and energy generation for the active species.
 
void generateJacobianMatrix (const std::vector< double > &Y_dynamic, const double T9, const double rho) const override
 Generates the Jacobian matrix for the active species.
 
double getJacobianMatrixEntry (const int i_defined, const int j_defined) const override
 Gets an entry from the Jacobian matrix for the active species.
 
void generateStoichiometryMatrix () override
 Generates the stoichiometry matrix for the active reactions and species.
 
int getStoichiometryMatrixEntry (const int speciesIndex_defined, const int reactionIndex_defined) const override
 Gets an entry from the stoichiometry matrix for the active species and reactions.
 
double calculateMolarReactionFlow (const reaction::Reaction &reaction, const std::vector< double > &Y_defined, const double T9, const double rho) const override
 Calculates the molar reaction flow for a given reaction in the active network.
 
const reaction::LogicalReactionSetgetNetworkReactions () const override
 Gets the set of active logical reactions in the network.
 
void setNetworkReactions (const reaction::LogicalReactionSet &reactions) override
 
std::expected< std::unordered_map< fourdst::atomic::Species, double >, expectations::StaleEngineErrorgetSpeciesTimescales (const std::vector< double > &Y_defined, const double T9, const double rho) const override
 Computes timescales for all active species in the network.
 
std::expected< std::unordered_map< fourdst::atomic::Species, double >, expectations::StaleEngineErrorgetSpeciesDestructionTimescales (const std::vector< double > &Y_defined, const double T9, const double rho) const override
 
fourdst::composition::Composition update (const NetIn &netIn) override
 Updates the engine view if it is marked as stale.
 
bool isStale (const NetIn &netIn) override
 
void setScreeningModel (screening::ScreeningType model) override
 Sets the screening model for the base engine.
 
screening::ScreeningType getScreeningModel () const override
 Gets the screening model from the base engine.
 
int getSpeciesIndex (const fourdst::atomic::Species &species) const override
 Get the index of a species in the network.
 
std::vector< double > mapNetInToMolarAbundanceVector (const NetIn &netIn) const override
 Map a NetIn object to a vector of molar abundances.
 
PrimingReport primeEngine (const NetIn &netIn) override
 Prime the engine with initial conditions.
 
- Public Member Functions inherited from gridfire::DynamicEngine
virtual void generateJacobianMatrix (const std::vector< double > &Y_dynamic, double T9, double rho, const SparsityPattern &sparsityPattern) const
 
virtual BuildDepthType getDepth () const
 Get the depth of the network.
 
virtual void rebuild (const fourdst::composition::Composition &comp, BuildDepthType depth)
 Rebuild the network with a specified depth.
 
- Public Member Functions inherited from gridfire::Engine
virtual ~Engine ()=default
 Virtual destructor.
 
- Public Member Functions inherited from gridfire::EngineView< DynamicEngine >
virtual ~EngineView ()=default
 Virtual destructor.
 

Protected Attributes

bool m_isStale = true
 
DynamicEnginem_baseEngine
 

Private Member Functions

std::vector< size_t > constructSpeciesIndexMap () const
 Constructs the species index map.
 
std::vector< size_t > constructReactionIndexMap () const
 Constructs the reaction index map.
 
std::vector< double > mapViewToFull (const std::vector< double > &defined) const
 Maps a vector of culled abundances to a vector of full abundances.
 
std::vector< double > mapFullToView (const std::vector< double > &full) const
 Maps a vector of full abundances to a vector of culled abundances.
 
size_t mapViewToFullSpeciesIndex (size_t definedSpeciesIndex) const
 Maps a culled species index to a full species index.
 
size_t mapViewToFullReactionIndex (size_t definedReactionIndex) const
 Maps a culled reaction index to a full reaction index.
 
void validateNetworkState () const
 
void collect (const std::vector< std::string > &peNames)
 

Private Attributes

quill::Logger * m_logger = fourdst::logging::LogManager::getInstance().getLogger("log")
 Active species in the defined engine.
 
std::vector< fourdst::atomic::Species > m_activeSpecies
 Active reactions in the defined engine.
 
reaction::LogicalReactionSet m_activeReactions
 Maps indices of active species to indices in the full network.
 
std::vector< size_t > m_speciesIndexMap
 Maps indices of active reactions to indices in the full network.
 
std::vector< size_t > m_reactionIndexMap
 

Constructor & Destructor Documentation

◆ DefinedEngineView()

gridfire::DefinedEngineView::DefinedEngineView ( const std::vector< std::string > & peNames,
DynamicEngine & baseEngine )

Member Function Documentation

◆ calculateMolarReactionFlow()

double gridfire::DefinedEngineView::calculateMolarReactionFlow ( const reaction::Reaction & reaction,
const std::vector< double > & Y_defined,
const double T9,
const double rho ) const
overridevirtual

Calculates the molar reaction flow for a given reaction in the active network.

Parameters
reactionThe reaction for which to calculate the flow.
Y_definedVector of current abundances for the active species.
T9Temperature in units of 10^9 K.
rhoDensity in g/cm^3.
Returns
Molar flow rate for the reaction (e.g., mol/g/s).
Exceptions
std::runtime_errorIf the view is stale or if the reaction is not in the active set.

Implements gridfire::DynamicEngine.

◆ calculateRHSAndEnergy()

std::expected< StepDerivatives< double >, expectations::StaleEngineError > gridfire::DefinedEngineView::calculateRHSAndEnergy ( const std::vector< double > & Y_defined,
const double T9,
const double rho ) const
overridevirtual

Calculates the right-hand side (dY/dt) and energy generation for the active species.

Parameters
Y_definedA vector of abundances for the active species.
T9The temperature in units of 10^9 K.
rhoThe density in g/cm^3.
Returns
A StepDerivatives struct containing the derivatives of the active species and the nuclear energy generation rate.
Exceptions
std::runtime_errorIf the view is stale (i.e., update() has not been called after setNetworkFile()).

Implements gridfire::Engine.

◆ collect()

void gridfire::DefinedEngineView::collect ( const std::vector< std::string > & peNames)
private

◆ constructReactionIndexMap()

std::vector< size_t > gridfire::DefinedEngineView::constructReactionIndexMap ( ) const
private

Constructs the reaction index map.

Returns
A vector mapping defined reaction indices to full reaction indices.

This method creates a map from the indices of the active reactions to the indices of the corresponding reactions in the full network.

Exceptions
std::runtime_errorIf an active reaction is not found in the base engine's reaction list.

◆ constructSpeciesIndexMap()

std::vector< size_t > gridfire::DefinedEngineView::constructSpeciesIndexMap ( ) const
private

Constructs the species index map.

Returns
A vector mapping defined species indices to full species indices.

This method creates a map from the indices of the active species to the indices of the corresponding species in the full network.

Exceptions
std::runtime_errorIf an active species is not found in the base engine's species list.

◆ generateJacobianMatrix()

void gridfire::DefinedEngineView::generateJacobianMatrix ( const std::vector< double > & Y_dynamic,
const double T9,
const double rho ) const
overridevirtual

Generates the Jacobian matrix for the active species.

Parameters
Y_dynamicA vector of abundances for the active species.
T9The temperature in units of 10^9 K.
rhoThe density in g/cm^3.
Exceptions
std::runtime_errorIf the view is stale.

Implements gridfire::DynamicEngine.

◆ generateStoichiometryMatrix()

void gridfire::DefinedEngineView::generateStoichiometryMatrix ( )
overridevirtual

Generates the stoichiometry matrix for the active reactions and species.

Exceptions
std::runtime_errorIf the view is stale.

Implements gridfire::DynamicEngine.

◆ getBaseEngine()

const DynamicEngine & gridfire::DefinedEngineView::getBaseEngine ( ) const
overridevirtual

Access the underlying engine instance.

Returns
Const reference to the underlying engine.

This method must be implemented by derived classes to provide access to the base engine. The returned reference should remain valid for the lifetime of the EngineView.

Example:

const DynamicEngine& engine = myView.getBaseEngine();
Abstract class for engines supporting Jacobian and stoichiometry operations.
Definition engine_abstract.h:130

Implements gridfire::EngineView< DynamicEngine >.

◆ getJacobianMatrixEntry()

double gridfire::DefinedEngineView::getJacobianMatrixEntry ( const int i_defined,
const int j_defined ) const
overridevirtual

Gets an entry from the Jacobian matrix for the active species.

Parameters
i_definedThe row index (species index) in the defined matrix.
j_definedThe column index (species index) in the defined matrix.
Returns
The value of the Jacobian matrix at (i_defined, j_defined).
Exceptions
std::runtime_errorIf the view is stale.
std::out_of_rangeIf an index is out of bounds.

Implements gridfire::DynamicEngine.

◆ getNetworkReactions()

const reaction::LogicalReactionSet & gridfire::DefinedEngineView::getNetworkReactions ( ) const
overridevirtual

Gets the set of active logical reactions in the network.

Returns
Reference to the LogicalReactionSet containing all active reactions.
Exceptions
std::runtime_errorIf the view is stale.

Implements gridfire::DynamicEngine.

◆ getNetworkSpecies()

const std::vector< Species > & gridfire::DefinedEngineView::getNetworkSpecies ( ) const
overridevirtual

Gets the list of active species in the network defined by the file.

Returns
A const reference to the vector of active species.

Implements gridfire::Engine.

◆ getScreeningModel()

screening::ScreeningType gridfire::DefinedEngineView::getScreeningModel ( ) const
nodiscardoverridevirtual

Gets the screening model from the base engine.

Returns
The current screening model type.

Implements gridfire::DynamicEngine.

◆ getSpeciesDestructionTimescales()

std::expected< std::unordered_map< fourdst::atomic::Species, double >, expectations::StaleEngineError > gridfire::DefinedEngineView::getSpeciesDestructionTimescales ( const std::vector< double > & Y_defined,
const double T9,
const double rho ) const
nodiscardoverridevirtual

◆ getSpeciesIndex()

int gridfire::DefinedEngineView::getSpeciesIndex ( const fourdst::atomic::Species & species) const
nodiscardoverridevirtual

Get the index of a species in the network.

Parameters
speciesThe species to look up.

This method allows querying the index of a specific species in the engine's internal representation. It is useful for accessing species data efficiently.

Implements gridfire::DynamicEngine.

◆ getSpeciesTimescales()

std::expected< std::unordered_map< Species, double >, expectations::StaleEngineError > gridfire::DefinedEngineView::getSpeciesTimescales ( const std::vector< double > & Y_defined,
const double T9,
const double rho ) const
nodiscardoverridevirtual

Computes timescales for all active species in the network.

Parameters
Y_definedVector of current abundances for the active species.
T9Temperature in units of 10^9 K.
rhoDensity in g/cm^3.
Returns
Map from Species to their characteristic timescales (s).
Exceptions
std::runtime_errorIf the view is stale.

Implements gridfire::DynamicEngine.

◆ getStoichiometryMatrixEntry()

int gridfire::DefinedEngineView::getStoichiometryMatrixEntry ( const int speciesIndex_defined,
const int reactionIndex_defined ) const
overridevirtual

Gets an entry from the stoichiometry matrix for the active species and reactions.

Parameters
speciesIndex_definedThe index of the species in the defined species list.
reactionIndex_definedThe index of the reaction in the defined reaction list.
Returns
The stoichiometric coefficient for the given species and reaction.
Exceptions
std::runtime_errorIf the view is stale.
std::out_of_rangeIf an index is out of bounds.

Implements gridfire::DynamicEngine.

◆ isStale()

bool gridfire::DefinedEngineView::isStale ( const NetIn & netIn)
overridevirtual

◆ mapFullToView()

std::vector< double > gridfire::DefinedEngineView::mapFullToView ( const std::vector< double > & full) const
private

Maps a vector of full abundances to a vector of culled abundances.

Parameters
fullA vector of abundances for the full network.
Returns
A vector of abundances for the active species, with the abundances of the active species copied from the full vector.

◆ mapNetInToMolarAbundanceVector()

std::vector< double > gridfire::DefinedEngineView::mapNetInToMolarAbundanceVector ( const NetIn & netIn) const
nodiscardoverridevirtual

Map a NetIn object to a vector of molar abundances.

Parameters
netInThe input conditions for the network.
Returns
A vector of molar abundances corresponding to the species in the network.

This method converts the input conditions into a vector of molar abundances, which can be used for further calculations or diagnostics.

Implements gridfire::DynamicEngine.

◆ mapViewToFull()

std::vector< double > gridfire::DefinedEngineView::mapViewToFull ( const std::vector< double > & defined) const
private

Maps a vector of culled abundances to a vector of full abundances.

Parameters
definedA vector of abundances for the active species.
Returns
A vector of abundances for the full network, with the abundances of the active species copied from the defined vector.

◆ mapViewToFullReactionIndex()

size_t gridfire::DefinedEngineView::mapViewToFullReactionIndex ( size_t definedReactionIndex) const
private

Maps a culled reaction index to a full reaction index.

Parameters
definedReactionIndexThe index of the reaction in the defined reaction list.
Returns
The index of the corresponding reaction in the full network.
Exceptions
std::out_of_rangeIf the defined index is out of bounds for the reaction index map.

◆ mapViewToFullSpeciesIndex()

size_t gridfire::DefinedEngineView::mapViewToFullSpeciesIndex ( size_t definedSpeciesIndex) const
private

Maps a culled species index to a full species index.

Parameters
definedSpeciesIndexThe index of the species in the defined species list.
Returns
The index of the corresponding species in the full network.
Exceptions
std::out_of_rangeIf the defined index is out of bounds for the species index map.

◆ primeEngine()

PrimingReport gridfire::DefinedEngineView::primeEngine ( const NetIn & netIn)
nodiscardoverridevirtual

Prime the engine with initial conditions.

Parameters
netInThe input conditions for the network.
Returns
PrimingReport containing information about the priming process.

This method is used to prepare the engine for calculations by setting up initial conditions, reactions, and species. It may involve compiling reaction rates, initializing internal data structures, and performing any necessary pre-computation.

Implements gridfire::DynamicEngine.

◆ setNetworkReactions()

void gridfire::DefinedEngineView::setNetworkReactions ( const reaction::LogicalReactionSet & reactions)
overridevirtual

◆ setScreeningModel()

void gridfire::DefinedEngineView::setScreeningModel ( screening::ScreeningType model)
overridevirtual

Sets the screening model for the base engine.

Parameters
modelThe screening model to set.

Implements gridfire::DynamicEngine.

◆ update()

fourdst::composition::Composition gridfire::DefinedEngineView::update ( const NetIn & netIn)
overridevirtual

Updates the engine view if it is marked as stale.

This method checks if the view is stale (e.g., after setNetworkFile was called). If it is, it rebuilds the active network from the currently set file. The netIn parameter is not used by this implementation but is required by the interface.

Parameters
netInThe current network input (unused).
Postcondition
If the view was stale, it is rebuilt and is no longer stale.

Implements gridfire::DynamicEngine.

◆ validateNetworkState()

void gridfire::DefinedEngineView::validateNetworkState ( ) const
private

Member Data Documentation

◆ m_activeReactions

reaction::LogicalReactionSet gridfire::DefinedEngineView::m_activeReactions
private

Maps indices of active species to indices in the full network.

◆ m_activeSpecies

std::vector<fourdst::atomic::Species> gridfire::DefinedEngineView::m_activeSpecies
private

Active reactions in the defined engine.

◆ m_baseEngine

DynamicEngine& gridfire::DefinedEngineView::m_baseEngine
protected

◆ m_isStale

bool gridfire::DefinedEngineView::m_isStale = true
protected

◆ m_logger

quill::Logger* gridfire::DefinedEngineView::m_logger = fourdst::logging::LogManager::getInstance().getLogger("log")
private

Active species in the defined engine.

Logger instance for trace and debug information.

◆ m_reactionIndexMap

std::vector<size_t> gridfire::DefinedEngineView::m_reactionIndexMap
private

◆ m_speciesIndexMap

std::vector<size_t> gridfire::DefinedEngineView::m_speciesIndexMap
private

Maps indices of active reactions to indices in the full network.


The documentation for this class was generated from the following files: