diff --git a/src/include/gridfire/config/config.h b/src/include/gridfire/config/config.h index 13380ba5..9c3c9abe 100644 --- a/src/include/gridfire/config/config.h +++ b/src/include/gridfire/config/config.h @@ -3,13 +3,25 @@ #include "fourdst/config/config.h" namespace gridfire::config { - struct CVODESolverConfig { + struct BoundaryFluxConfig { + double relativeThreshold = 3e-8; + double absoluteThreshold = 1e-24; + }; + + struct TriggerConfig { + double offDiagonalThreshold = 1e10; + double timestepCollapseRatio = 0.5; + double maxConvergenceFailures = 2; + BoundaryFluxConfig boundaryFlux; + }; + struct PointSolverConfig { double absTol = 1.0e-8; double relTol = 1.0e-5; + TriggerConfig trigger; }; struct SolverConfig { - CVODESolverConfig cvode; + PointSolverConfig pointSolver; }; struct AdaptiveEngineViewConfig { diff --git a/src/include/gridfire/engine/engine_abstract.h b/src/include/gridfire/engine/engine_abstract.h index e12f75a0..76016f36 100644 --- a/src/include/gridfire/engine/engine_abstract.h +++ b/src/include/gridfire/engine/engine_abstract.h @@ -8,6 +8,8 @@ #include "gridfire/engine/types/reporting.h" #include "gridfire/engine/types/jacobian.h" +#include "gridfire/exceptions/error_engine.h" + #include "gridfire/engine/scratchpads/blob.h" #include "fourdst/composition/composition_abstract.h" @@ -183,6 +185,7 @@ namespace gridfire::engine { /** * @brief Generate the Jacobian matrix for the current state. * + * @param ctx The scratchpad context for the current state. * @param comp Composition object containing current abundances. * @param T9 Temperature in units of 10^9 K. * @param rho Density in g/cm^3. @@ -200,6 +203,7 @@ namespace gridfire::engine { /** * @brief Generate the Jacobian matrix for the current state using a subset of active species. * + * @param ctx The scratchpad context for the current state. * @param comp Composition object containing current abundances. * @param T9 Temperature in units of 10^9 K. * @param rho Density in g/cm^3. @@ -221,6 +225,7 @@ namespace gridfire::engine { /** * @brief Generate the Jacobian matrix for the current state with a specified sparsity pattern. * + * @param ctx Get the scratchpad context for the current state. * @param comp Composition object containing current abundances. * @param T9 Temperature in units of 10^9 K. * @param rho Density in g/cm^3. @@ -245,6 +250,7 @@ namespace gridfire::engine { /** * @brief Calculate the molar reaction flow for a given reaction. * + * @param ctx The scratchpad context for the current state. * @param reaction The reaction for which to calculate the flow. * @param comp Composition object containing current abundances. * @param T9 Temperature in units of 10^9 K. @@ -289,6 +295,39 @@ namespace gridfire::engine { scratch::StateBlob& ctx ) const = 0; + /** + * @brief Get the set of inactive reactions in the network. + * + * @return ReactionSet containing all inactive reactions. + * + * By default, this method returns an empty set. Derived classes can override + * this method to provide the actual set of inactive reactions based on their + * internal logic (e.g., reaction flow culling, QSE partitioning). + */ + [[nodiscard]] virtual reaction::ReactionSet getInactiveNetworkReactions( + scratch::StateBlob &ctx + ) const { + return reaction::ReactionSet{}; + } + + [[nodiscard]] virtual double getInactiveReactionMolarReactionFlow( + scratch::StateBlob& ctx, + const reaction::Reaction &reaction, + const fourdst::composition::CompositionAbstract &comp, + const double T9, + const double rho + ) const { + std::string warning_msg = std::format( + "[GridFire Warning ({}, {}, {})]: Engine of type '{}' does not implement getInactiveReactionMolarReactionFlow. Returning 0.0 flow for reaction '{}'.", + __FILE__, + __LINE__, + __FUNCTION__, + typeid(*this).name(), + reaction.id() + ); + return 0.0; + } + /** * @brief Compute timescales for all species in the network. @@ -311,6 +350,7 @@ namespace gridfire::engine { /** * @brief Compute destruction timescales for all species in the network. * + * @param ctx The scratchpad context for the current state. * @param comp Composition object containing current abundances. * @param T9 Temperature in units of 10^9 K. * @param rho Density in g/cm^3. @@ -329,6 +369,7 @@ namespace gridfire::engine { /** * @brief Update the thread local scratch pad state of a network. * + * @param ctx The scratchpad context for the current state. * @param netIn A struct containing the current network input, such as * temperature, density, and composition. * @@ -354,6 +395,8 @@ namespace gridfire::engine { /** * @brief Get the current electron screening model. * + * @param ctx The scratchpad context for the current state. + * * @return The currently active screening model type. * * @par Usage Example: @@ -368,6 +411,7 @@ namespace gridfire::engine { /** * @brief Get the index of a species in the network. * + * @param ctx The scratchpad context for the current state. * @param species The species to look up. * * This method allows querying the index of a specific species in the @@ -382,6 +426,7 @@ namespace gridfire::engine { /** * @brief Prime the engine with initial conditions. * + * @param ctx The scratchpad context for the current state. * @param netIn The input conditions for the network. * @return PrimingReport containing information about the priming process. * @@ -403,6 +448,7 @@ namespace gridfire::engine { * from each sub engine. * @note It is up to each engine to decide how to handle filling in the return composition. * @note These methods return an unfinalized composition which must then be finalized by the caller + * @param ctx The scratchpad context for the current state. * @param comp Input composition to "normalize". * @param T9 * @param rho @@ -434,5 +480,7 @@ namespace gridfire::engine { scratch::StateBlob& ctx ) const = 0; + [[nodiscard]] virtual std::unique_ptr constructStateBlob(const scratch::StateBlob *blob) const = 0; + }; } \ No newline at end of file diff --git a/src/include/gridfire/engine/engine_graph.h b/src/include/gridfire/engine/engine_graph.h index 25c374a1..67743284 100644 --- a/src/include/gridfire/engine/engine_graph.h +++ b/src/include/gridfire/engine/engine_graph.h @@ -137,6 +137,18 @@ namespace gridfire::engine { */ explicit GraphEngine(const reaction::ReactionSet &reactions); + void addReaction( + const reaction::Reaction& reaction + ); + + void addReaction( + const std::string& reaction_id + ); + + std::unique_ptr constructStateBlob( + const scratch::StateBlob *blob = nullptr + ) const override; + /** * @brief Calculates the right-hand side (dY/dt) and energy generation rate. * @@ -204,6 +216,7 @@ namespace gridfire::engine { double rho ) const override; + /** * @brief Calculates the derivatives of the energy generation rate with respect to temperature and density for a subset of reactions * diff --git a/src/include/gridfire/engine/views/engine_adaptive.h b/src/include/gridfire/engine/views/engine_adaptive.h index 40c2a7de..dc7db772 100644 --- a/src/include/gridfire/engine/views/engine_adaptive.h +++ b/src/include/gridfire/engine/views/engine_adaptive.h @@ -10,7 +10,6 @@ #include "fourdst/config/config.h" #include "fourdst/logging/logging.h" -#include "gridfire/engine/procedures/construction.h" #include "gridfire/engine/scratchpads/blob.h" #include "quill/Logger.h" @@ -234,6 +233,26 @@ namespace gridfire::engine { scratch::StateBlob& ctx ) const override; + /** + * @brief Gets the set of inactive logical reactions in the network. + * + * @return ReactionSet containing all inactive reactions. + * + * This method returns the set of reactions that have been culled from the active + * network based on the adaptation criteria. + */ + [[nodiscard]] reaction::ReactionSet getInactiveNetworkReactions( + scratch::StateBlob &ctx + ) const override; + + [[nodiscard]] double getInactiveReactionMolarReactionFlow( + scratch::StateBlob& ctx, + const reaction::Reaction &reaction, + const fourdst::composition::CompositionAbstract &comp, + double T9, + double rho + ) const override; + /** * @brief Computes timescales for all active species in the network. * @@ -319,6 +338,7 @@ namespace gridfire::engine { /** * @brief Primes the engine with the given network input. * + * @param ctx The scratchpad context for storing thread-local data. * @param netIn The current network input, containing temperature, density, and composition. * @return A PrimingReport indicating the result of the priming operation. * @@ -367,6 +387,8 @@ namespace gridfire::engine { [[nodiscard]] std::optional>getMostRecentRHSCalculation( scratch::StateBlob &ctx ) const override; + + [[nodiscard]] std::unique_ptr constructStateBlob(const scratch::StateBlob *blob) const override; private: using LogManager = fourdst::logging::LogManager; @@ -399,7 +421,7 @@ namespace gridfire::engine { * @param netIn The current network input, containing temperature, density, and composition. * @return A pair with the first element a vector of ReactionFlow structs, each containing a pointer to a * reaction and its calculated flow rate and the second being a composition object where species which were not - * present in netIn but are present in the definition of the base engine are registered but have 0 mass fraction + * present in netIn but are present in the definition of the base engine are registered but have 0 mass fraction. * * @par Algorithm: * 1. Iterates through all species in the base engine's network. diff --git a/src/include/gridfire/engine/views/engine_defined.h b/src/include/gridfire/engine/views/engine_defined.h index 260f0c75..e81b1c7d 100644 --- a/src/include/gridfire/engine/views/engine_defined.h +++ b/src/include/gridfire/engine/views/engine_defined.h @@ -255,6 +255,9 @@ namespace gridfire::engine { [[nodiscard]] std::optional>getMostRecentRHSCalculation( scratch::StateBlob &ctx ) const override; + + [[nodiscard]] std::unique_ptr constructStateBlob(const scratch::StateBlob *blob) const override; + protected: bool m_isStale = true; GraphEngine& m_baseEngine; @@ -343,7 +346,6 @@ namespace gridfire::engine { scratch::StateBlob& ctx, const std::vector& peNames ) const; - }; class FileDefinedEngineView final: public DefinedEngineView { diff --git a/src/include/gridfire/engine/views/engine_multiscale.h b/src/include/gridfire/engine/views/engine_multiscale.h index 23e7921e..6b172937 100644 --- a/src/include/gridfire/engine/views/engine_multiscale.h +++ b/src/include/gridfire/engine/views/engine_multiscale.h @@ -611,6 +611,8 @@ namespace gridfire::engine { [[nodiscard]] std::optional>getMostRecentRHSCalculation( scratch::StateBlob & ) const override; + + [[nodiscard]] std::unique_ptr constructStateBlob(const scratch::StateBlob *blob) const override; public: /** * @brief Struct representing a QSE group. @@ -990,9 +992,6 @@ namespace gridfire::engine { const std::vector &groups, const std::vector &groupReactions ); - - public: - }; } diff --git a/src/include/gridfire/engine/views/engine_priming.h b/src/include/gridfire/engine/views/engine_priming.h index d607bdc0..4f398de3 100644 --- a/src/include/gridfire/engine/views/engine_priming.h +++ b/src/include/gridfire/engine/views/engine_priming.h @@ -31,6 +31,7 @@ namespace gridfire::engine { /** * @brief Constructs the view by looking up the priming species by symbol. * + * @param ctx State Blob containing Engine context * @param primingSymbol Symbol string of the species to prime. * @param baseEngine Reference to the base DynamicEngine to wrap. * @pre primingSymbol must correspond to a valid species in atomic::species registry. @@ -46,6 +47,7 @@ namespace gridfire::engine { /** * @brief Constructs the view using an existing Species object. * + * @param ctx State Blob containing Engine context * @param primingSpecies The species object to prime. * @param baseEngine Reference to the base DynamicEngine to wrap. * @pre primingSpecies must be valid and present in the network of baseEngine. @@ -66,6 +68,7 @@ namespace gridfire::engine { /** * @brief Constructs the set of reaction names that involve the priming species. * + * @param ctx State blob containing engine context * @param primingSpecies Species for which to collect priming reactions. * @param baseEngine Base engine containing the full network of reactions. * @pre baseEngine.getNetworkReactions() returns a valid iterable set of reactions. diff --git a/src/include/gridfire/gridfire.h b/src/include/gridfire/gridfire.h index 0dd3a5d1..9b0719f7 100644 --- a/src/include/gridfire/gridfire.h +++ b/src/include/gridfire/gridfire.h @@ -11,4 +11,4 @@ #include "gridfire/trigger/trigger.h" #include "gridfire/utils/utils.h" -#include "types/types.h" +#include "gridfire/types/types.h" diff --git a/src/include/gridfire/solver/strategies/PointSolver.h b/src/include/gridfire/solver/strategies/PointSolver.h index 480aebf7..55da9ec6 100644 --- a/src/include/gridfire/solver/strategies/PointSolver.h +++ b/src/include/gridfire/solver/strategies/PointSolver.h @@ -58,6 +58,8 @@ namespace gridfire::solver { const size_t currentNonlinearIterations; ///< Total number of non-linear iterations const std::map>& reactionContributionMap; ///< Map of reaction contributions for the current step engine::scratch::StateBlob& state_ctx; ///< Reference to the engine scratch state blob + double current_total_energy = 0.0; ///< Current energy generation rate [erg/g/s] + double current_neutrino_energy_loss_rate = 0.0; ///< Current neutrino energy loss rate [erg/g/s] PointSolverTimestepContext( double t, @@ -76,6 +78,8 @@ namespace gridfire::solver { ); [[nodiscard]] std::vector> describe() const override; + + [[nodiscard]] fourdst::composition::Composition getPhysicalComposition() const; }; using TimestepCallback = std::function; ///< Type alias for a timestep callback function. @@ -169,6 +173,13 @@ namespace gridfire::solver { const engine::DynamicEngine& engine ); + PointSolver( + const engine::DynamicEngine& engine, + const config::GridFireConfig& config + ); + + + config::GridFireConfig getConfig() const { return *m_config; } /** * @brief Integrate from t=0 to netIn.tMax and return final composition and energy. * @@ -264,6 +275,17 @@ namespace gridfire::solver { */ static int cvode_jac_wrapper(sunrealtype t, N_Vector y, N_Vector ydot, SUNMatrix J, void *user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3); + /** + * @brief CVODE error handler that logs errors and warnings from SUNDIALS using the solver's logger. + * @param line + * @param func + * @param file + * @param msg + * @param err_code + * @param err_user_data + * @param sunctx + */ + static void cvode_error_handler(int line, const char *func, const char *file, const char *msg, SUNErrCode err_code, void *err_user_data, SUNContext sunctx); /** * @brief Compute RHS into ydot at time t from the engine and current state y. * diff --git a/src/include/gridfire/solver/strategies/triggers/engine_partitioning_trigger.h b/src/include/gridfire/solver/strategies/triggers/engine_partitioning_trigger.h index 98b7f0e2..72dd3910 100644 --- a/src/include/gridfire/solver/strategies/triggers/engine_partitioning_trigger.h +++ b/src/include/gridfire/solver/strategies/triggers/engine_partitioning_trigger.h @@ -4,6 +4,7 @@ #include "gridfire/trigger/trigger_result.h" #include "gridfire/solver/strategies/PointSolver.h" #include "fourdst/logging/logging.h" +#include "gridfire/config/config.h" #include #include @@ -316,6 +317,46 @@ namespace gridfire::trigger::solver::CVODE { bool rel_failure(const gridfire::solver::PointSolverTimestepContext& ctx) const; }; + class BoundaryFluxTrigger final : public Trigger { + public: + explicit BoundaryFluxTrigger(double relativeThreshold, double absoluteThreshold); + bool check(const gridfire::solver::PointSolverTimestepContext &ctx) const override; + void update(const gridfire::solver::PointSolverTimestepContext &ctx) override; + void step(const gridfire::solver::PointSolverTimestepContext &ctx) override; + void reset() override; + + std::string name() const override; + TriggerResult why(const gridfire::solver::PointSolverTimestepContext &ctx) const override; + std::string describe() const override; + size_t numTriggers() const override; + size_t numMisses() const override; + private: + enum class ReactionSetType : uint8_t { + ACTIVE, + INACTIVE + }; + + static double get_reaction_set_flow( + const reaction::ReactionSet& reactions, + const gridfire::solver::PointSolverTimestepContext& ctx, + const fourdst::composition::Composition& comp, + double T9, + double rho, + ReactionSetType type + ); + private: + quill::Logger* m_logger = fourdst::logging::LogManager::getInstance().getLogger("log"); + + mutable size_t m_hits = 0; + mutable size_t m_misses = 0; + mutable size_t m_updates = 0; + mutable size_t m_resets = 0; + + double m_relativeThreshold; + double m_absoluteThreshold; + + }; + /** * @brief Compose a trigger suitable for deciding engine re-partitioning during CVODE solves. * @@ -329,18 +370,9 @@ namespace gridfire::trigger::solver::CVODE { * See engine_partitioning_trigger.cpp for construction details using OrTrigger and * EveryNthTrigger from trigger_logical.h. * - * @param simulationTimeInterval Interval used by SimulationTimeTrigger (> 0). - * @param offDiagonalThreshold Off-diagonal Jacobian magnitude threshold (>= 0). - * @param timestepCollapseRatio Threshold for timestep deviation (>= 0, and <= 1 when relative). - * @param maxConvergenceFailures Window size for timestep averaging (>= 1 recommended). * @return A unique_ptr to a composed Trigger implementing the policy above. * * @note The exact policy is subject to change; this function centralizes that decision. */ - std::unique_ptr> makeEnginePartitioningTrigger( - double simulationTimeInterval, - double offDiagonalThreshold, - double timestepCollapseRatio, - size_t maxConvergenceFailures - ); + std::unique_ptr> makeEnginePartitioningTrigger(const config::TriggerConfig& cfg); } diff --git a/src/lib/engine/engine_graph.cpp b/src/lib/engine/engine_graph.cpp index de8195f2..9b7647b6 100644 --- a/src/lib/engine/engine_graph.cpp +++ b/src/lib/engine/engine_graph.cpp @@ -32,7 +32,8 @@ #include "cppad/cppad.hpp" #include "cppad/utility/sparse_rc.hpp" #include "cppad/utility/sparse_rcv.hpp" - +#include "fourdst/composition/exceptions/exceptions_composition.h" +#include "gridfire/reaction/reaclib.h" namespace { @@ -132,6 +133,36 @@ namespace gridfire::engine { syncInternalMaps(); } + void GraphEngine::addReaction( + const reaction::Reaction& reaction + ) { + m_reactions.add_reaction(reaction); + syncInternalMaps(); + } + + void GraphEngine::addReaction( + const std::string& reaction_id + ) { + const auto& allReaclibReactions = reaclib::get_all_reaclib_reactions(); + const auto& reaction = allReaclibReactions.get(reaction_id); + if (reaction.has_value()) { + m_reactions.add_reaction(reaction.value()->clone()); + } else { + throw exceptions::BadCollectionError(std::format("Unable to locate reaction with ID {} in reaclib set", reaction_id)); + } + } + + std::unique_ptr GraphEngine::constructStateBlob(const scratch::StateBlob *blob) const { + if (blob) { + throw exceptions::ScratchPadError("GraphEngine does not support accepting an external StateBlob. The state blob for GraphEngine must be constructed internally to ensure it contains the correct scratchpad states."); + } + auto i_blob = std::make_unique(); + i_blob->enroll(); + auto* state = scratch::get_state(*i_blob); + state->initialize(*this); + return i_blob; + } + std::expected, EngineStatus> GraphEngine::calculateRHSAndEnergy( scratch::StateBlob& ctx, const fourdst::composition::CompositionAbstract &comp, @@ -761,7 +792,14 @@ namespace gridfire::engine { for (const auto& species : m_networkSpecies ) { result.registerSpecies(species); if (comp.contains(species)) { - result.setMolarAbundance(species, comp.getMolarAbundance(species)); + double Y = comp.getMolarAbundance(species); + if (Y < 0.0 && std::abs(Y) <= 1e-16) { + result.setMolarAbundance(species, 0.0); + } else if (Y < 0.0 && std::abs(Y) >= 1e-16) { + throw fourdst::composition::exceptions::InvalidCompositionError(std::format("Molar abundance for species {} is negative (Y = {}). GraphEngine does not support non-physical negative abundances, even if they are very small in magnitude (clamp is 1e-16). Check input composition for validity.", species.name(), Y)); + } else { + result.setMolarAbundance(species, Y); + } } } return result; @@ -997,7 +1035,7 @@ namespace gridfire::engine { for (const auto& species: m_networkSpecies) { double Yi = 0.0; // Small floor to avoid issues with zero abundances if (comp.contains(species)) { - Yi = comp.getMolarAbundance(species); + Yi = std::max(comp.getMolarAbundance(species), 1e-30); } x[i] = Yi; i++; diff --git a/src/lib/engine/views/engine_adaptive.cpp b/src/lib/engine/views/engine_adaptive.cpp index 108959c5..49c5fd49 100644 --- a/src/lib/engine/views/engine_adaptive.cpp +++ b/src/lib/engine/views/engine_adaptive.cpp @@ -166,6 +166,35 @@ namespace gridfire::engine { return scratch::get_state(ctx) -> active_reactions; } + reaction::ReactionSet AdaptiveEngineView::getInactiveNetworkReactions(scratch::StateBlob &ctx) const { + const reaction::ReactionSet& baseEngineReactions = m_baseEngine.getNetworkReactions(ctx); + const reaction::ReactionSet baseEngineInactiveReactions = m_baseEngine.getInactiveNetworkReactions(ctx); + + + reaction::ReactionSet inactiveReactions = baseEngineInactiveReactions; + const auto* state = scratch::get_state(ctx); + const reaction::ReactionSet& activeReactions = state->active_reactions; + + for (const auto& active_reaction : baseEngineReactions) { + if (!inactiveReactions.contains(*active_reaction) && !activeReactions.contains(*active_reaction)) { + inactiveReactions.add_reaction(*active_reaction); + } + } + + return inactiveReactions; + + } + + double AdaptiveEngineView::getInactiveReactionMolarReactionFlow( + scratch::StateBlob &ctx, + const reaction::Reaction &reaction, + const fourdst::composition::CompositionAbstract &comp, + const double T9, + const double rho + ) const { + return m_baseEngine.calculateMolarReactionFlow(ctx, reaction, comp, T9, rho); + } + std::expected, EngineStatus> AdaptiveEngineView::getSpeciesTimescales( scratch::StateBlob& ctx, const fourdst::composition::CompositionAbstract &comp, @@ -268,6 +297,19 @@ namespace gridfire::engine { return m_baseEngine.getMostRecentRHSCalculation(ctx); } + std::unique_ptr AdaptiveEngineView::constructStateBlob(const scratch::StateBlob *blob) const { + std::unique_ptr i_blob; + if (blob) { + i_blob = blob->clone_structure(); + } else { + i_blob = std::make_unique(); + } + i_blob->enroll(); + auto* state = scratch::get_state(*i_blob); + state->initialize(*this); + return i_blob; + } + size_t AdaptiveEngineView::getSpeciesIndex( scratch::StateBlob& ctx, const Species &species diff --git a/src/lib/engine/views/engine_defined.cpp b/src/lib/engine/views/engine_defined.cpp index 4dade583..e7077b34 100644 --- a/src/lib/engine/views/engine_defined.cpp +++ b/src/lib/engine/views/engine_defined.cpp @@ -267,6 +267,10 @@ namespace gridfire::engine { return m_baseEngine.getMostRecentRHSCalculation(ctx); } + std::unique_ptr DefinedEngineView::constructStateBlob(const scratch::StateBlob *blob) const { + throw exceptions::ScratchPadError("DefinedEngineView does not support StateBlob construction. This will be implemented in a future version."); + } + std::vector DefinedEngineView::constructSpeciesIndexMap( scratch::StateBlob& ctx ) const { diff --git a/src/lib/engine/views/engine_multiscale.cpp b/src/lib/engine/views/engine_multiscale.cpp index ec3d1a7c..80499101 100644 --- a/src/lib/engine/views/engine_multiscale.cpp +++ b/src/lib/engine/views/engine_multiscale.cpp @@ -30,6 +30,7 @@ #include "sunlinsol/sunlinsol_dense.h" #include "xxhash64.h" +#include "fourdst/composition/exceptions/exceptions_composition.h" #include "fourdst/composition/utils/composition_hash.h" namespace { @@ -1123,6 +1124,19 @@ namespace gridfire::engine { return m_baseEngine.getMostRecentRHSCalculation(ctx); } + std::unique_ptr MultiscalePartitioningEngineView::constructStateBlob(const scratch::StateBlob *blob) const { + std::unique_ptr i_blob; + if (blob) { + i_blob = blob->clone_structure(); + } else { + i_blob = std::make_unique(); + } + i_blob->enroll(); + auto* state = scratch::get_state(*i_blob); + state->initialize(); + return i_blob; + } + size_t MultiscalePartitioningEngineView::getSpeciesIndex( scratch::StateBlob& ctx, const Species &species @@ -1549,8 +1563,10 @@ namespace gridfire::engine { m_logger->flush_log(); throw exceptions::EngineError("Non-finite abundance computed for species " + std::string(sp.name()) + " in QSE group solve."); } - if (y < 0.0 && std::abs(y) < 1e-20) { + if (y < 0.0 && std::abs(y) < 1e-16) { abundances.push_back(0.0); + } else if (y < 0 && std::abs(y) >= 1e-16) { + throw fourdst::composition::exceptions::InvalidCompositionError(std::format("Computed negative and non-trivial abundance {} for species {} in QSE group solve at T9 = {}, rho = {}. This likely indicates a failure of the QSE solver to converge to a physical solution.", y, sp.name(), T9, rho)); } else { abundances.push_back(y); } diff --git a/src/lib/solver/strategies/PointSolver.cpp b/src/lib/solver/strategies/PointSolver.cpp index 01d3aa59..8fceee8e 100644 --- a/src/lib/solver/strategies/PointSolver.cpp +++ b/src/lib/solver/strategies/PointSolver.cpp @@ -23,6 +23,7 @@ #include "gridfire/trigger/procedures/trigger_pprint.h" #include "gridfire/exceptions/error_solver.h" #include "gridfire/utils/sundials.h" +#include "gridfire/config/config.h" namespace gridfire::solver { @@ -74,6 +75,19 @@ namespace gridfire::solver { return description; } + fourdst::composition::Composition PointSolverTimestepContext::getPhysicalComposition() const { + sunrealtype* y_data = N_VGetArrayPointer(state); + std::vector y_vec(y_data, y_data + networkSpecies.size()); + + for (int i = 0; i < y_vec.size(); i++) { + if (y_vec[i] < 0 && std::abs(y_vec[i]) <= 1e-16) { + y_vec[i] = 0.0; // clamp to 0 to avoid small numerical noise issues + } + } + const fourdst::composition::Composition base_comp(networkSpecies, y_vec); + return engine.collectComposition(state_ctx, base_comp, T9, rho); + } + void PointSolverContext::init() { reset_all(); init_context(); @@ -165,6 +179,15 @@ namespace gridfire::solver { const DynamicEngine &engine ): SingleZoneNetworkSolver(engine) {} + PointSolver::PointSolver( + const engine::DynamicEngine &engine, + const config::GridFireConfig &config + ) : SingleZoneNetworkSolver(engine) { + m_config.mutate([&config](auto& cfg) { + cfg = config; + }); + } + NetOut PointSolver::evaluate( SolverContextBase& solver_ctx, const NetIn& netIn @@ -179,10 +202,13 @@ namespace gridfire::solver { bool forceReinitialize ) const { auto* sctx_p = dynamic_cast(&solver_ctx); + if (sctx_p == nullptr) { + throw exceptions::SolverError("Provided solver context is not of type PointSolverContext"); + } LOG_TRACE_L1(m_logger, "Starting solver evaluation with T9: {} and rho: {}", netIn.temperature/1e9, netIn.density); LOG_TRACE_L1(m_logger, "Building engine update trigger...."); - auto trigger = trigger::solver::CVODE::makeEnginePartitioningTrigger(1e12, 1e10, 0.5, 2); + auto trigger = trigger::solver::CVODE::makeEnginePartitioningTrigger(m_config->solver.pointSolver.trigger); LOG_TRACE_L1(m_logger, "Engine update trigger built!"); @@ -194,10 +220,10 @@ namespace gridfire::solver { // 3. If the user has not set tolerances in code and the config does not have them, use hardcoded defaults if (!sctx_p->abs_tol.has_value()) { - sctx_p->abs_tol = m_config->solver.cvode.absTol; + sctx_p->abs_tol = m_config->solver.pointSolver.absTol; } if (!sctx_p->rel_tol.has_value()) { - sctx_p->rel_tol = m_config->solver.cvode.relTol; + sctx_p->rel_tol = m_config->solver.pointSolver.relTol; } @@ -369,6 +395,8 @@ namespace gridfire::solver { rcMap, *sctx_p->engine_ctx ); + ctx.current_total_energy = current_energy; + ctx.current_neutrino_energy_loss_rate = accumulated_neutrino_energy_loss; prev_nonlinear_iterations = nliters + total_nonlinear_iterations; prev_convergence_failures = nlcfails + total_convergence_failures; @@ -395,7 +423,7 @@ namespace gridfire::solver { trigger::printWhy(trigger->why(ctx)); } trigger->update(ctx); - accumulated_energy += current_energy; // Add the specific energy rate to the accumulated energy + accumulated_energy = current_energy; // Add the specific energy rate to the accumulated energy total_nonlinear_iterations += nliters; total_convergence_failures += nlcfails; total_steps += n_steps; @@ -569,7 +597,7 @@ namespace gridfire::solver { LOG_INFO(m_logger, "CVODE iteration complete"); sunrealtype* y_data = N_VGetArrayPointer(sctx_p->Y); - accumulated_energy += y_data[numSpecies]; + accumulated_energy = y_data[numSpecies]; std::vector y_vec(y_data, y_data + numSpecies); for (double & i : y_vec) { @@ -789,6 +817,16 @@ namespace gridfire::solver { return 0; } + void PointSolver::cvode_error_handler(int line, const char *func, const char *file, const char *msg, SUNErrCode err_code, void *err_user_data, SUNContext sunctx) { + auto* logger = static_cast(err_user_data); + if (!logger) return; + + if (err_code < 0) { + LOG_ERROR(logger, "[SUNDIALS ERROR] {} at {}:{}: {}", func, file, line, msg); + } else { + LOG_WARNING(logger, "[SUNDIALS WARNING] {} at {}:{}: {}", func, file, line, msg); + } + } PointSolver::CVODERHSOutputData PointSolver::calculate_rhs( const sunrealtype t, N_Vector y, @@ -863,9 +901,12 @@ namespace gridfire::solver { sctx_p->cvode_mem = CVodeCreate(CV_BDF, sctx_p->sun_ctx); utils::check_cvode_flag(sctx_p->cvode_mem == nullptr ? -1 : 0, "CVodeCreate"); + sctx_p->Y = utils::init_sun_vector(N, sctx_p->sun_ctx); sctx_p->YErr = N_VClone(sctx_p->Y); + SUNContext_PushErrHandler(sctx_p->sun_ctx, cvode_error_handler, m_logger); + sunrealtype *y_data = N_VGetArrayPointer(sctx_p->Y); for (size_t i = 0; i < numSpecies; i++) { const auto& species = m_engine.getNetworkSpecies(*sctx_p->engine_ctx)[i]; @@ -880,6 +921,7 @@ namespace gridfire::solver { utils::check_cvode_flag(CVodeInit(sctx_p->cvode_mem, cvode_rhs_wrapper, current_time, sctx_p->Y), "CVodeInit"); utils::check_cvode_flag(CVodeSStolerances(sctx_p->cvode_mem, relTol, absTol), "CVodeSStolerances"); + utils::check_cvode_flag(CVodeSetInitStep(sctx_p->cvode_mem, 1.0e-8), "CVodeSetInitStep"); // Constraints // We constrain the solution vector using CVODE's built in constraint flags as outlines on page 53 of the CVODE manual @@ -1003,10 +1045,10 @@ namespace gridfire::solver { std::vector E_full(y_err_data, y_err_data + num_components - 1); if (!sctx_p->abs_tol.has_value()) { - sctx_p->abs_tol = m_config->solver.cvode.absTol; + sctx_p->abs_tol = m_config->solver.pointSolver.absTol; } if (!sctx_p->rel_tol.has_value()) { - sctx_p->rel_tol = m_config->solver.cvode.relTol; + sctx_p->rel_tol = m_config->solver.pointSolver.relTol; } auto result = diagnostics::report_limiting_species(ctx, *user_data.engine, Y_full, E_full, sctx_p->rel_tol.value(), sctx_p->abs_tol.value(), 10, to_file); diff --git a/src/lib/solver/strategies/triggers/engine_partitioning_trigger.cpp b/src/lib/solver/strategies/triggers/engine_partitioning_trigger.cpp index 0bbb7878..0b336c16 100644 --- a/src/lib/solver/strategies/triggers/engine_partitioning_trigger.cpp +++ b/src/lib/solver/strategies/triggers/engine_partitioning_trigger.cpp @@ -4,12 +4,16 @@ #include "gridfire/trigger/trigger_logical.h" #include "gridfire/trigger/trigger_abstract.h" +#include "sundials/sundials_nvector.h" + #include "quill/LogMacros.h" #include #include #include +#include "gridfire/utils/utils.h" + namespace { template void push_to_fixed_deque(std::deque& dq, T value, size_t max_size) { @@ -369,23 +373,195 @@ namespace gridfire::trigger::solver::CVODE { return false; } + BoundaryFluxTrigger::BoundaryFluxTrigger( + const double relativeThreshold, + const double absoluteThreshold + ) : + m_relativeThreshold(relativeThreshold), + m_absoluteThreshold(absoluteThreshold) { + if (m_relativeThreshold <= 0.0) { + throw exceptions::GridFireError(std::format("Relative threshold must be positive and non zero, currently it is {}", m_relativeThreshold)); + } + } + + void BoundaryFluxTrigger::step(const gridfire::solver::PointSolverTimestepContext &ctx) { + // Does nothing; not a stateful trigger + } + + + bool BoundaryFluxTrigger::check(const gridfire::solver::PointSolverTimestepContext &ctx) const { + // First get the current total flow through all active reactions + sunrealtype* y_data = N_VGetArrayPointer(ctx.state); + std::vector Y(y_data, y_data + ctx.networkSpecies.size()); + // Adjust any tiny negative abundances to zero using std::ranges + std::ranges::transform( + Y, + Y.begin(), + [](const double y) { + if (y < 0 && y > -1e-16) { + return 0.0; + } + return y; + } + ); + const fourdst::composition::Composition comp(ctx.networkSpecies, Y); + + const double net_active_flow = get_reaction_set_flow( + ctx.engine.getNetworkReactions(ctx.state_ctx), + ctx, + comp, + ctx.T9, + ctx.rho, + ReactionSetType::ACTIVE + ); + + const reaction::ReactionSet inactiveReactions = ctx.engine.getInactiveNetworkReactions(ctx.state_ctx); + if (inactiveReactions.empty()) { + m_misses++; + return false; // No inactive reactions to consider + } + + const double net_boundary_flow = get_reaction_set_flow( + inactiveReactions, + ctx, + comp, + ctx.T9, + ctx.rho, + ReactionSetType::INACTIVE + ); + + + if (net_boundary_flow > m_absoluteThreshold) { + m_hits++; + return true; + } + + const double relative_boundary_flow = net_boundary_flow / (net_active_flow + 1e-300); // Avoid division by zero + if (relative_boundary_flow >= m_relativeThreshold) { + m_hits++; + return true; + } + + m_misses++; + return false; + + } + + void BoundaryFluxTrigger::update(const gridfire::solver::PointSolverTimestepContext &ctx) { + // No-op since this is a stateless trigger + m_updates++; + } + + void BoundaryFluxTrigger::reset() { + m_hits = 0; + m_misses = 0; + m_updates = 0; + m_resets++; + } + + std::string BoundaryFluxTrigger::name() const { + return "BoundaryFluxTrigger"; + } + + std::string BoundaryFluxTrigger::describe() const { + return std::format("BoundaryFluxTrigger(rel={}, abs={})", m_relativeThreshold, m_absoluteThreshold); + } + + TriggerResult BoundaryFluxTrigger::why(const gridfire::solver::PointSolverTimestepContext &ctx) const { + sunrealtype* y_data = N_VGetArrayPointer(ctx.state); + const std::vector Y(y_data, y_data + ctx.networkSpecies.size()); + const fourdst::composition::Composition comp(ctx.networkSpecies, Y); + + const double net_active_flow = get_reaction_set_flow( + ctx.engine.getNetworkReactions(ctx.state_ctx), + ctx, + comp, + ctx.T9, + ctx.rho, + ReactionSetType::ACTIVE + ); + const reaction::ReactionSet inactiveReactions = ctx.engine.getInactiveNetworkReactions(ctx.state_ctx); + const double net_boundary_flow = get_reaction_set_flow( + inactiveReactions, + ctx, + comp, + ctx.T9, + ctx.rho, + ReactionSetType::INACTIVE + ); + + TriggerResult result; + result.name = name(); + if (check(ctx)) { + result.value = true; + result.description = std::format( + "Triggered because boundary flux ({} mol/s) exceeded thresholds: absolute threshold = {} mol/s, relative threshold = {} (boundary flow = {} mol/s, active flow = {} mol/s)", + net_boundary_flow, + m_absoluteThreshold, + m_relativeThreshold, + net_boundary_flow, + net_active_flow + ); + } else { + result.value = false; + result.description = std::format( + "Not triggered because boundary flux ({} mol/g/s) did not exceed thresholds: absolute threshold = {} mol/g/s, relative threshold = {} (boundary flow = {} mol/g/s, active flow = {} mol/g/s)", + net_boundary_flow, + m_absoluteThreshold, + m_relativeThreshold, + net_boundary_flow, + net_active_flow + ); + } + + return result; + } + + size_t BoundaryFluxTrigger::numMisses() const { + return m_misses; + } + + double BoundaryFluxTrigger::get_reaction_set_flow( + const reaction::ReactionSet &reactions, + const gridfire::solver::PointSolverTimestepContext &ctx, + const fourdst::composition::Composition &comp, + const double T9, + const double rho, + const ReactionSetType type + ) { + double flow = 0.0; + for (const auto& reaction: reactions) { + double rFlow = 0.0; + if (type == ReactionSetType::ACTIVE) { + rFlow = ctx.engine.calculateMolarReactionFlow(ctx.state_ctx, *reaction, comp, T9, rho); + } else { + rFlow = ctx.engine.getInactiveReactionMolarReactionFlow(ctx.state_ctx, *reaction, comp, T9, rho); + } + flow += std::abs(rFlow); + } + + return flow; + + } + + size_t BoundaryFluxTrigger::numTriggers() const { + return m_hits; + } + std::unique_ptr> makeEnginePartitioningTrigger( - const double simulationTimeInterval, - const double offDiagonalThreshold, - const double timestepCollapseRatio, - const size_t maxConvergenceFailures + const config::TriggerConfig& cfg ) { using ctx_t = gridfire::solver::PointSolverTimestepContext; - // 1. INSTABILITY TRIGGERS (High Priority) + // 1. INSTABILITY TRIGGERS auto convergenceFailureTrigger = std::make_unique( - maxConvergenceFailures, + cfg.maxConvergenceFailures, 1.0f, 10 ); auto timestepCollapseTrigger = std::make_unique( - timestepCollapseRatio, + cfg.timestepCollapseRatio, true, // relative 5 ); @@ -396,12 +572,24 @@ namespace gridfire::trigger::solver::CVODE { ); // 2. MAINTENANCE TRIGGERS - auto offDiagTrigger = std::make_unique(offDiagonalThreshold); + auto offDiagTrigger = std::make_unique(cfg.offDiagonalThreshold); + + // 3. PREDICTIVE TRIGGERS + auto boundaryFluxTrigger = std::make_unique( + cfg.boundaryFlux.relativeThreshold, + cfg.boundaryFlux.absoluteThreshold + ); + + // Combine boundary flux into off-diagonal trigger + auto nonInstabilityGroup = std::make_unique>( + std::move(offDiagTrigger), + std::move(boundaryFluxTrigger) + ); // Combine: (Instability) OR (Structure Change) return std::make_unique>( std::move(instabilityGroup), - std::move(offDiagTrigger) + std::move(nonInstabilityGroup) ); } diff --git a/src/python/config/bindings.cpp b/src/python/config/bindings.cpp index b98c3651..7c70408f 100644 --- a/src/python/config/bindings.cpp +++ b/src/python/config/bindings.cpp @@ -6,10 +6,24 @@ namespace py = pybind11; void register_config_bindings(pybind11::module &m) { + + py::class_(m, "BoundaryFluxConfig") + .def(py::init<>()) + .def_readwrite("relativeThreshold", &gridfire::config::BoundaryFluxConfig::relativeThreshold) + .def_readwrite("absoluteThreshold", &gridfire::config::BoundaryFluxConfig::absoluteThreshold); + + py::class_(m, "TriggerConfig") + .def(py::init<>()) + .def_readwrite("offDiagonalThreshold", &gridfire::config::TriggerConfig::offDiagonalThreshold) + .def_readwrite("timestepCollapseRatio", &gridfire::config::TriggerConfig::timestepCollapseRatio) + .def_readwrite("maxConvergenceFailures", &gridfire::config::TriggerConfig::maxConvergenceFailures) + .def_readwrite("boundaryFlux", &gridfire::config::TriggerConfig::boundaryFlux); + py::class_(m, "PointSolverConfig") .def(py::init<>()) .def_readwrite("absTol", &gridfire::config::PointSolverConfig::absTol) - .def_readwrite("relTol", &gridfire::config::PointSolverConfig::relTol); + .def_readwrite("relTol", &gridfire::config::PointSolverConfig::relTol) + .def_readwrite("trigger", &gridfire::config::PointSolverConfig::trigger); py::class_(m, "SolverConfig") .def(py::init<>()) diff --git a/src/python/engine/bindings.cpp b/src/python/engine/bindings.cpp index e01ff1e6..02f35d07 100644 --- a/src/python/engine/bindings.cpp +++ b/src/python/engine/bindings.cpp @@ -194,6 +194,25 @@ namespace { py::arg("ctx"), py::arg("species"), "Get the status of a species in the network." + ) + .def("constructStateBlob", + &T::constructStateBlob, + py::arg("blob") = std::nullopt, + "Construct the state blob for this engine. Generally base engines (GraphEngine) can call this with no arguments whereas views should take an argument to an already constructed state blob which will be cloned and then the clone will be modified" + ) + .def( + "getMostRecentRHSCalculation", + [](const T& self, sp::StateBlob& ctx) -> std::optional> { + auto result = self.getMostRecentRHSCalculation(ctx); + if (!result.has_value()) { + return std::nullopt; + } else { + return result.value(); + } + + }, + py::arg("ctx"), + "Retrieve the most recent RHS calculation from the engine" ); } @@ -529,7 +548,18 @@ void con_stype_register_graph_engine_bindings(const pybind11::module &m) { &gridfire::engine::GraphEngine::isUsingReverseReactions, "Check if the engine is using reverse reactions." ); - + py_graph_engine_bindings.def( + "addReaction", + py::overload_cast(&gridfire::engine::GraphEngine::addReaction), + py::arg("reaction"), + "Add a reaction to the engine's network manually." + ); + py_graph_engine_bindings.def( + "addReaction", + py::overload_cast(&gridfire::engine::GraphEngine::addReaction), + py::arg("reaction_id"), + "Add a reaction to the engine's network manually using a reaction identifier string." + ); // Register the general dynamic engine bindings registerDynamicEngineDefs(py_graph_engine_bindings); } diff --git a/src/python/engine/trampoline/py_engine.cpp b/src/python/engine/trampoline/py_engine.cpp index c54d0f94..ea1f17e5 100644 --- a/src/python/engine/trampoline/py_engine.cpp +++ b/src/python/engine/trampoline/py_engine.cpp @@ -293,6 +293,16 @@ std::optional> PyDynamicEngine::getMos ); } +std::unique_ptr PyDynamicEngine::constructStateBlob( + const gridfire::engine::scratch::StateBlob *blob) const { + PYBIND11_OVERRIDE_PURE( + std::unique_ptr, + gridfire::engine::DynamicEngine, + constructStateBlob, + blob + ); +} + const gridfire::engine::Engine& PyEngineView::getBaseEngine() const { PYBIND11_OVERRIDE_PURE( const gridfire::engine::Engine&, diff --git a/src/python/engine/trampoline/py_engine.h b/src/python/engine/trampoline/py_engine.h index 6c0cf8cf..545fdad4 100644 --- a/src/python/engine/trampoline/py_engine.h +++ b/src/python/engine/trampoline/py_engine.h @@ -130,6 +130,10 @@ public: gridfire::engine::scratch::StateBlob &ctx ) const override; + std::unique_ptr constructStateBlob( + const gridfire::engine::scratch::StateBlob *blob + ) const override; + private: mutable std::vector m_species_cache; }; diff --git a/src/python/solver/bindings.cpp b/src/python/solver/bindings.cpp index ec706ecd..0f4539c9 100644 --- a/src/python/solver/bindings.cpp +++ b/src/python/solver/bindings.cpp @@ -51,6 +51,13 @@ void register_solver_bindings(const py::module &m) { }, py::return_value_policy::reference_internal ); + py_cvode_timestep_context.def_property_readonly( + "composition", + [](const gridfire::solver::PointSolverTimestepContext& self) -> fourdst::composition::Composition { + return self.getPhysicalComposition(); + } + ); + auto py_solver_context_base = py::class_(m, "SolverContextBase"); @@ -166,6 +173,20 @@ void register_solver_bindings(const py::module &m) { "Initialize the PointSolver object." ); + py_point_solver.def( + py::init(), + py::arg("engine"), + py::arg("config"), + "Initialize the PointSolver object with a configuration set." + ); + + py_point_solver.def( + "getConfig", + &gridfire::solver::PointSolver::getConfig, + "Get a copy of the config object" + ); + + py_point_solver.def( "evaluate", py::overload_cast(&gridfire::solver::PointSolver::evaluate, py::const_), diff --git a/stubs/gridfiregridfire/__init__.pyi b/stubs/gridfiregridfire/__init__.pyi deleted file mode 100644 index a5db9463..00000000 --- a/stubs/gridfiregridfire/__init__.pyi +++ /dev/null @@ -1,42 +0,0 @@ -from __future__ import annotations -from gridfire._gridfire import config -from gridfire._gridfire import engine -from gridfire._gridfire import exceptions -from gridfire._gridfire import io -from gridfire._gridfire import partition -from gridfire._gridfire import policy -from gridfire._gridfire import reaction -from gridfire._gridfire import screening -from gridfire._gridfire import solver -from gridfire._gridfire import type -from gridfire._gridfire import utils -import importlib as importlib -import sys as sys -from . import _gridfire -__all__: list = ['type', 'utils', 'engine', 'solver', 'exceptions', 'partition', 'reaction', 'screening', 'io', 'policy', 'config'] -def gf_author(): - ... -def gf_collaboration(): - ... -def gf_credits(): - ... -def gf_description(): - ... -def gf_email(): - ... -def gf_license(): - ... -def gf_metadata(): - ... -def gf_url(): - ... -def gf_version(): - ... -__author__ = None -__description__: str = 'Python interface to the GridFire nuclear network code' -__email__: str = '"Emily M. Boudreaux" , Aaron Dotter ' -__license__: str = 'GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\n software and other kinds of works.\n\n The licenses for most software and other practical works are designed\n to take away your freedom to share and change the works. By contrast,\n the GNU General Public License is intended to guarantee your freedom to\n share and change all versions of a program--to make sure it remains free\n software for all its users. We, the Free Software Foundation, use the\n GNU General Public License for most of our software; it applies also to\n any other work released this way by its authors. You can apply it to\n your programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that you\n have the freedom to distribute copies of free software (and charge for\n them if you wish), that you receive source code or can get it if you\n want it, that you can change the software or use pieces of it in new\n free programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\n these rights or asking you to surrender the rights. Therefore, you have\n certain responsibilities if you distribute copies of the software, or if\n you modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must pass on to the recipients the same\n freedoms that you received. You must make sure that they, too, receive\n or can get the source code. And you must show them these terms so they\n know their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n (1) assert copyright on the software, and (2) offer you this License\n giving you legal permission to copy, distribute and/or modify it.\n\n For the developers\' and authors\' protection, the GPL clearly explains\n that there is no warranty for this free software. For both users\' and\n authors\' sake, the GPL requires that modified versions be marked as\n changed, so that their problems will not be attributed erroneously to\n authors of previous versions.\n\n Some devices are designed to deny users access to install or run\n modified versions of the software inside them, although the manufacturer\n can do so. This is fundamentally incompatible with the aim of\n protecting users\' freedom to change the software. The systematic\n pattern of such abuse occurs in the area of products for individuals to\n use, which is precisely where it is most unacceptable. Therefore, we\n have designed this version of the GPL to prohibit the practice for those\n products. If such problems arise substantially in other domains, we\n stand ready to extend this provision to those domains in future versions\n of the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\n States should not allow patents to restrict development and use of\n software on general-purpose computers, but in those that do, we wish to\n avoid the special danger that patents applied to a free program could\n make it effectively proprietary. To prevent this, the GPL assures that\n patents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n "This License" refers to version 3 of the GNU General Public License.\n\n "Copyright" also means copyright-like laws that apply to other kinds of\n works, such as semiconductor masks.\n\n "The Program" refers to any copyrightable work licensed under this\n License. Each licensee is addressed as "you". "Licensees" and\n "recipients" may be individuals or organizations.\n\n To "modify" a work means to copy from or adapt all or part of the work\n in a fashion requiring copyright permission, other than the making of an\n exact copy. The resulting work is called a "modified version" of the\n earlier work or a work "based on" the earlier work.\n\n A "covered work" means either the unmodified Program or a work based\n on the Program.\n\n To "propagate" a work means to do anything with it that, without\n permission, would make you directly or secondarily liable for\n infringement under applicable copyright law, except executing it on a\n computer or modifying a private copy. Propagation includes copying,\n distribution (with or without modification), making available to the\n public, and in some countries other activities as well.\n\n To "convey" a work means any kind of propagation that enables other\n parties to make or receive copies. Mere interaction with a user through\n a computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays "Appropriate Legal Notices"\n to the extent that it includes a convenient and prominently visible\n feature that (1) displays an appropriate copyright notice, and (2)\n tells the user that there is no warranty for the work (except to the\n extent that warranties are provided), that licensees may convey the\n work under this License, and how to view a copy of this License. If\n the interface presents a list of user commands or options, such as a\n menu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The "source code" for a work means the preferred form of the work\n for making modifications to it. "Object code" means any non-source\n form of a work.\n\n A "Standard Interface" means an interface that either is an official\n standard defined by a recognized standards body, or, in the case of\n interfaces specified for a particular programming language, one that\n is widely used among developers working in that language.\n\n The "System Libraries" of an executable work include anything, other\n than the work as a whole, that (a) is included in the normal form of\n packaging a Major Component, but which is not part of that Major\n Component, and (b) serves only to enable use of the work with that\n Major Component, or to implement a Standard Interface for which an\n implementation is available to the public in source code form. A\n "Major Component", in this context, means a major essential component\n (kernel, window system, and so on) of the specific operating system\n (if any) on which the executable work runs, or a compiler used to\n produce the work, or an object code interpreter used to run it.\n\n The "Corresponding Source" for a work in object code form means all\n the source code needed to generate, install, and (for an executable\n work) run the object code and to modify the work, including scripts to\n control those activities. However, it does not include the work\'s\n System Libraries, or general-purpose tools or generally available free\n programs which are used unmodified in performing those activities but\n which are not part of the work. For example, Corresponding Source\n includes interface definition files associated with source files for\n the work, and the source code for shared libraries and dynamically\n linked subprograms that the work is specifically designed to require,\n such as by intimate data communication or control flow between those\n subprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\n can regenerate automatically from other parts of the Corresponding\n Source.\n\n The Corresponding Source for a work in source code form is that\n same work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\n copyright on the Program, and are irrevocable provided the stated\n conditions are met. This License explicitly affirms your unlimited\n permission to run the unmodified Program. The output from running a\n covered work is covered by this License only if the output, given its\n content, constitutes a covered work. This License acknowledges your\n rights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\n convey, without conditions so long as your license otherwise remains\n in force. You may convey covered works to others for the sole purpose\n of having them make modifications exclusively for you, or provide you\n with facilities for running those works, provided that you comply with\n the terms of this License in conveying all material for which you do\n not control copyright. Those thus making or running the covered works\n for you must do so exclusively on your behalf, under your direction\n and control, on terms that prohibit them from making any copies of\n your copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\n the conditions stated below. Sublicensing is not allowed; section 10\n makes it unnecessary.\n\n 3. Protecting Users\' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\n measure under any applicable law fulfilling obligations under article\n 11 of the WIPO copyright treaty adopted on 20 December 1996, or\n similar laws prohibiting or restricting circumvention of such\n measures.\n\n When you convey a covered work, you waive any legal power to forbid\n circumvention of technological measures to the extent such circumvention\n is effected by exercising rights under this License with respect to\n the covered work, and you disclaim any intention to limit operation or\n modification of the work as a means of enforcing, against the work\'s\n users, your or third parties\' legal rights to forbid circumvention of\n technological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program\'s source code as you\n receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy an appropriate copyright notice;\n keep intact all notices stating that this License and any\n non-permissive terms added in accord with section 7 apply to the code;\n keep intact all notices of the absence of any warranty; and give all\n recipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\n and you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\n produce it from the Program, in the form of source code under the\n terms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n "keep intact all notices".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\n works, which are not by their nature extensions of the covered work,\n and which are not combined with it such as to form a larger program,\n in or on a volume of a storage or distribution medium, is called an\n "aggregate" if the compilation and its resulting copyright are not\n used to limit the access or legal rights of the compilation\'s users\n beyond what the individual works permit. Inclusion of a covered work\n in an aggregate does not cause this License to apply to the other\n parts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\n of sections 4 and 5, provided that you also convey the\n machine-readable Corresponding Source under the terms of this License,\n in one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\n from the Corresponding Source as a System Library, need not be\n included in conveying the object code work.\n\n A "User Product" is either (1) a "consumer product", which means any\n tangible personal property which is normally used for personal, family,\n or household purposes, or (2) anything designed or sold for incorporation\n into a dwelling. In determining whether a product is a consumer product,\n doubtful cases shall be resolved in favor of coverage. For a particular\n product received by a particular user, "normally used" refers to a\n typical or common use of that class of product, regardless of the status\n of the particular user or of the way in which the particular user\n actually uses, or expects or is expected to use, the product. A product\n is a consumer product regardless of whether the product has substantial\n commercial, industrial or non-consumer uses, unless such uses represent\n the only significant mode of use of the product.\n\n "Installation Information" for a User Product means any methods,\n procedures, authorization keys, or other information required to install\n and execute modified versions of a covered work in that User Product from\n a modified version of its Corresponding Source. The information must\n suffice to ensure that the continued functioning of the modified object\n code is in no case prevented or interfered with solely because\n modification has been made.\n\n If you convey an object code work under this section in, or with, or\n specifically for use in, a User Product, and the conveying occurs as\n part of a transaction in which the right of possession and use of the\n User Product is transferred to the recipient in perpetuity or for a\n fixed term (regardless of how the transaction is characterized), the\n Corresponding Source conveyed under this section must be accompanied\n by the Installation Information. But this requirement does not apply\n if neither you nor any third party retains the ability to install\n modified object code on the User Product (for example, the work has\n been installed in ROM).\n\n The requirement to provide Installation Information does not include a\n requirement to continue to provide support service, warranty, or updates\n for a work that has been modified or installed by the recipient, or for\n the User Product in which it has been modified or installed. Access to a\n network may be denied when the modification itself materially and\n adversely affects the operation of the network or violates the rules and\n protocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\n in accord with this section must be in a format that is publicly\n documented (and with an implementation available to the public in\n source code form), and must require no special password or key for\n unpacking, reading or copying.\n\n 7. Additional Terms.\n\n "Additional permissions" are terms that supplement the terms of this\n License by making exceptions from one or more of its conditions.\n Additional permissions that are applicable to the entire Program shall\n be treated as though they were included in this License, to the extent\n that they are valid under applicable law. If additional permissions\n apply only to part of the Program, that part may be used separately\n under those permissions, but the entire Program remains governed by\n this License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\n remove any additional permissions from that copy, or from any part of\n it. (Additional permissions may be written to require their own\n removal in certain cases when you modify the work.) You may place\n additional permissions on material, added by you to a covered work,\n for which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\n add to a covered work, you may (if authorized by the copyright holders of\n that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered "further\n restrictions" within the meaning of section 10. If the Program as you\n received it, or any part of it, contains a notice stating that it is\n governed by this License along with a term that is a further\n restriction, you may remove that term. If a license document contains\n a further restriction but permits relicensing or conveying under this\n License, you may add to a covered work material governed by the terms\n of that license document, provided that the further restriction does\n not survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\n must place, in the relevant source files, a statement of the\n additional terms that apply to those files, or a notice indicating\n where to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\n form of a separately written license, or stated as exceptions;\n the above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\n provided under this License. Any attempt otherwise to propagate or\n modify it is void, and will automatically terminate your rights under\n this License (including any patent licenses granted under the third\n paragraph of section 11).\n\n However, if you cease all violation of this License, then your\n license from a particular copyright holder is reinstated (a)\n provisionally, unless and until the copyright holder explicitly and\n finally terminates your license, and (b) permanently, if the copyright\n holder fails to notify you of the violation by some reasonable means\n prior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\n reinstated permanently if the copyright holder notifies you of the\n violation by some reasonable means, this is the first time you have\n received notice of violation of this License (for any work) from that\n copyright holder, and you cure the violation prior to 30 days after\n your receipt of the notice.\n\n Termination of your rights under this section does not terminate the\n licenses of parties who have received copies or rights from you under\n this License. If your rights have been terminated and not permanently\n reinstated, you do not qualify to receive new licenses for the same\n material under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\n run a copy of the Program. Ancillary propagation of a covered work\n occurring solely as a consequence of using peer-to-peer transmission\n to receive a copy likewise does not require acceptance. However,\n nothing other than this License grants you permission to propagate or\n modify any covered work. These actions infringe copyright if you do\n not accept this License. Therefore, by modifying or propagating a\n covered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\n receives a license from the original licensors, to run, modify and\n propagate that work, subject to this License. You are not responsible\n for enforcing compliance by third parties with this License.\n\n An "entity transaction" is a transaction transferring control of an\n organization, or substantially all assets of one, or subdividing an\n organization, or merging organizations. If propagation of a covered\n work results from an entity transaction, each party to that\n transaction who receives a copy of the work also receives whatever\n licenses to the work the party\'s predecessor in interest had or could\n give under the previous paragraph, plus a right to possession of the\n Corresponding Source of the work from the predecessor in interest, if\n the predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\n rights granted or affirmed under this License. For example, you may\n not impose a license fee, royalty, or other charge for exercise of\n rights granted under this License, and you may not initiate litigation\n (including a cross-claim or counterclaim in a lawsuit) alleging that\n any patent claim is infringed by making, using, selling, offering for\n sale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A "contributor" is a copyright holder who authorizes use under this\n License of the Program or a work on which the Program is based. The\n work thus licensed is called the contributor\'s "contributor version".\n\n A contributor\'s "essential patent claims" are all patent claims\n owned or controlled by the contributor, whether already acquired or\n hereafter acquired, that would be infringed by some manner, permitted\n by this License, of making, using, or selling its contributor version,\n but do not include claims that would be infringed only as a\n consequence of further modification of the contributor version. For\n purposes of this definition, "control" includes the right to grant\n patent sublicenses in a manner consistent with the requirements of\n this License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\n patent license under the contributor\'s essential patent claims, to\n make, use, sell, offer for sale, import and otherwise run, modify and\n propagate the contents of its contributor version.\n\n In the following three paragraphs, a "patent license" is any express\n agreement or commitment, however denominated, not to enforce a patent\n (such as an express permission to practice a patent or covenant not to\n sue for patent infringement). To "grant" such a patent license to a\n party means to make such an agreement or commitment not to enforce a\n patent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\n and the Corresponding Source of the work is not available for anyone\n to copy, free of charge and under the terms of this License, through a\n publicly available network server or other readily accessible means,\n then you must either (1) cause the Corresponding Source to be so\n available, or (2) arrange to deprive yourself of the benefit of the\n patent license for this particular work, or (3) arrange, in a manner\n consistent with the requirements of this License, to extend the patent\n license to downstream recipients. "Knowingly relying" means you have\n actual knowledge that, but for the patent license, your conveying the\n covered work in a country, or your recipient\'s use of the covered work\n in a country, would infringe one or more identifiable patents in that\n country that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\n arrangement, you convey, or propagate by procuring conveyance of, a\n covered work, and grant a patent license to some of the parties\n receiving the covered work authorizing them to use, propagate, modify\n or convey a specific copy of the covered work, then the patent license\n you grant is automatically extended to all recipients of the covered\n work and works based on it.\n\n A patent license is "discriminatory" if it does not include within\n the scope of its coverage, prohibits the exercise of, or is\n conditioned on the non-exercise of one or more of the rights that are\n specifically granted under this License. You may not convey a covered\n work if you are a party to an arrangement with a third party that is\n in the business of distributing software, under which you make payment\n to the third party based on the extent of your activity of conveying\n the work, and under which the third party grants, to any of the\n parties who would receive the covered work from you, a discriminatory\n patent license (a) in connection with copies of the covered work\n conveyed by you (or copies made from those copies), or (b) primarily\n for and in connection with specific products or compilations that\n contain the covered work, unless you entered into that arrangement,\n or that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\n any implied license or other defenses to infringement that may\n otherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others\' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\n otherwise) that contradict the conditions of this License, they do not\n excuse you from the conditions of this License. If you cannot convey a\n covered work so as to satisfy simultaneously your obligations under this\n License and any other pertinent obligations, then as a consequence you may\n not convey it at all. For example, if you agree to terms that obligate you\n to collect a royalty for further conveying from those to whom you convey\n the Program, the only way you could satisfy both those terms and this\n License would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\n permission to link or combine any covered work with a work licensed\n under version 3 of the GNU Affero General Public License into a single\n combined work, and to convey the resulting work. The terms of this\n License will continue to apply to the part which is the covered work,\n but the special requirements of the GNU Affero General Public License,\n section 13, concerning interaction through a network will apply to the\n combination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\n the GNU General Public License from time to time. Such new versions will\n be similar in spirit to the present version, but may differ in detail to\n address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies that a certain numbered version of the GNU General\n Public License "or any later version" applies to it, you have the\n option of following the terms and conditions either of that numbered\n version or of any later version published by the Free Software\n Foundation. If the Program does not specify a version number of the\n GNU General Public License, you may choose any version ever published\n by the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\n versions of the GNU General Public License can be used, that proxy\'s\n public statement of acceptance of a version permanently authorizes you\n to choose that version for the Program.\n\n Later license versions may give you additional or different\n permissions. However, no additional obligations are imposed on any\n author or copyright holder as a result of your choosing to follow a\n later version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\n APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\n HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\n IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\n ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\n THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\n GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\n USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\n PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\n EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\n above cannot be given local legal effect according to their terms,\n reviewing courts shall apply local law that most closely approximates\n an absolute waiver of all civil liability in connection with the\n Program, unless a warranty or assumption of liability accompanies a\n copy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\n possible use to the public, the best way to achieve this is to make it\n free software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\n to attach them to the start of each source file to most effectively\n state the exclusion of warranty; and each file should have at least\n the "copyright" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\n Also add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\n notice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w\'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c\' for details.\n\n The hypothetical commands `show w\' and `show c\' should show the appropriate\n parts of the General Public License. Of course, your program\'s commands\n might be different; for a GUI interface, you would use an "about box".\n\n You should also get your employer (if you work as a programmer) or school,\n if any, to sign a "copyright disclaimer" for the program, if necessary.\n For more information on this, and how to apply and follow the GNU GPL, see\n .\n\n The GNU General Public License does not permit incorporating your program\n into proprietary programs. If your program is a subroutine library, you\n may consider it more useful to permit linking proprietary applications with\n the library. If this is what you want to do, use the GNU Lesser General\n Public License instead of this License. But first, please read\n .' -__url__: str = '' -__version__: str = '0.7.4rc3' -__warningregistry__: dict = {'version': 0} -_meta: importlib.metadata._adapters.Message # value = diff --git a/stubs/gridfiregridfire/_gridfire/__init__.pyi b/stubs/gridfiregridfire/_gridfire/__init__.pyi deleted file mode 100644 index 58a175d8..00000000 --- a/stubs/gridfiregridfire/_gridfire/__init__.pyi +++ /dev/null @@ -1,16 +0,0 @@ -""" -Python bindings for the fourdst utility modules which are a part of the 4D-STAR project. -""" -from __future__ import annotations -from . import config -from . import engine -from . import exceptions -from . import io -from . import partition -from . import policy -from . import reaction -from . import screening -from . import solver -from . import type -from . import utils -__all__: list[str] = ['config', 'engine', 'exceptions', 'io', 'partition', 'policy', 'reaction', 'screening', 'solver', 'type', 'utils'] diff --git a/stubs/gridfiregridfire/_gridfire/config.pyi b/stubs/gridfiregridfire/_gridfire/config.pyi deleted file mode 100644 index 57eb9940..00000000 --- a/stubs/gridfiregridfire/_gridfire/config.pyi +++ /dev/null @@ -1,47 +0,0 @@ -""" -GridFire configuration bindings -""" -from __future__ import annotations -import typing -__all__: list[str] = ['AdaptiveEngineViewConfig', 'CVODESolverConfig', 'EngineConfig', 'EngineViewConfig', 'GridFireConfig', 'SolverConfig'] -class AdaptiveEngineViewConfig: - def __init__(self) -> None: - ... - @property - def relativeCullingThreshold(self) -> float: - ... - @relativeCullingThreshold.setter - def relativeCullingThreshold(self, arg0: typing.SupportsFloat) -> None: - ... -class CVODESolverConfig: - def __init__(self) -> None: - ... - @property - def absTol(self) -> float: - ... - @absTol.setter - def absTol(self, arg0: typing.SupportsFloat) -> None: - ... - @property - def relTol(self) -> float: - ... - @relTol.setter - def relTol(self, arg0: typing.SupportsFloat) -> None: - ... -class EngineConfig: - views: EngineViewConfig - def __init__(self) -> None: - ... -class EngineViewConfig: - adaptiveEngineView: AdaptiveEngineViewConfig - def __init__(self) -> None: - ... -class GridFireConfig: - engine: EngineConfig - solver: SolverConfig - def __init__(self) -> None: - ... -class SolverConfig: - cvode: CVODESolverConfig - def __init__(self) -> None: - ... diff --git a/stubs/gridfiregridfire/_gridfire/engine/__init__.pyi b/stubs/gridfiregridfire/_gridfire/engine/__init__.pyi deleted file mode 100644 index bda6579c..00000000 --- a/stubs/gridfiregridfire/_gridfire/engine/__init__.pyi +++ /dev/null @@ -1,972 +0,0 @@ -""" -Engine and Engine View bindings -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.atomic -import fourdst._phys.composition -import gridfire._gridfire.io -import gridfire._gridfire.partition -import gridfire._gridfire.reaction -import gridfire._gridfire.screening -import gridfire._gridfire.type -import numpy -import numpy.typing -import typing -from . import diagnostics -from . import scratchpads -__all__: list[str] = ['ACTIVE', 'ADAPTIVE_ENGINE_VIEW', 'AdaptiveEngineView', 'BuildDepthType', 'DEFAULT', 'DEFINED_ENGINE_VIEW', 'DefinedEngineView', 'DynamicEngine', 'EQUILIBRIUM', 'Engine', 'EngineTypes', 'FILE_DEFINED_ENGINE_VIEW', 'FULL_SUCCESS', 'FifthOrder', 'FileDefinedEngineView', 'FourthOrder', 'Full', 'GRAPH_ENGINE', 'GraphEngine', 'INACTIVE_FLOW', 'MAX_ITERATIONS_REACHED', 'MULTISCALE_PARTITIONING_ENGINE_VIEW', 'MultiscalePartitioningEngineView', 'NONE', 'NOT_PRESENT', 'NO_SPECIES_TO_PRIME', 'NetworkBuildDepth', 'NetworkConstructionFlags', 'NetworkJacobian', 'NetworkPrimingEngineView', 'PRIMING_ENGINE_VIEW', 'PrimingReport', 'PrimingReportStatus', 'REACLIB', 'REACLIB_STRONG', 'REACLIB_WEAK', 'SecondOrder', 'Shallow', 'SparsityPattern', 'SpeciesStatus', 'StepDerivatives', 'ThirdOrder', 'WRL_BETA_MINUS', 'WRL_BETA_PLUS', 'WRL_ELECTRON_CAPTURE', 'WRL_POSITRON_CAPTURE', 'WRL_WEAK', 'build_nuclear_network', 'diagnostics', 'primeNetwork', 'regularize_jacobian', 'scratchpads'] -class AdaptiveEngineView(DynamicEngine): - def __init__(self, baseEngine: DynamicEngine) -> None: - """ - Construct an adaptive engine view with a base engine. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getBaseEngine(self) -> DynamicEngine: - """ - Get the base engine associated with this adaptive engine view. - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class BuildDepthType: - pass -class DefinedEngineView(DynamicEngine): - def __init__(self, peNames: collections.abc.Sequence[str], baseEngine: GraphEngine) -> None: - """ - Construct a defined engine view with a list of tracked reactions and a base engine. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getBaseEngine(self) -> DynamicEngine: - """ - Get the base engine associated with this defined engine view. - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class DynamicEngine: - pass -class Engine: - pass -class EngineTypes: - """ - Members: - - GRAPH_ENGINE : The standard graph-based engine. - - ADAPTIVE_ENGINE_VIEW : An engine that adapts based on certain criteria. - - MULTISCALE_PARTITIONING_ENGINE_VIEW : An engine that partitions the system at multiple scales. - - PRIMING_ENGINE_VIEW : An engine that uses a priming strategy for simulations. - - DEFINED_ENGINE_VIEW : An engine defined by user specifications. - - FILE_DEFINED_ENGINE_VIEW : An engine defined through external files. - """ - ADAPTIVE_ENGINE_VIEW: typing.ClassVar[EngineTypes] # value = - DEFINED_ENGINE_VIEW: typing.ClassVar[EngineTypes] # value = - FILE_DEFINED_ENGINE_VIEW: typing.ClassVar[EngineTypes] # value = - GRAPH_ENGINE: typing.ClassVar[EngineTypes] # value = - MULTISCALE_PARTITIONING_ENGINE_VIEW: typing.ClassVar[EngineTypes] # value = - PRIMING_ENGINE_VIEW: typing.ClassVar[EngineTypes] # value = - __members__: typing.ClassVar[dict[str, EngineTypes]] # value = {'GRAPH_ENGINE': , 'ADAPTIVE_ENGINE_VIEW': , 'MULTISCALE_PARTITIONING_ENGINE_VIEW': , 'PRIMING_ENGINE_VIEW': , 'DEFINED_ENGINE_VIEW': , 'FILE_DEFINED_ENGINE_VIEW': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - @typing.overload - def __repr__(self) -> str: - ... - @typing.overload - def __repr__(self) -> str: - """ - String representation of the EngineTypes. - """ - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class FileDefinedEngineView(DefinedEngineView): - def __init__(self, baseEngine: GraphEngine, fileName: str, parser: gridfire._gridfire.io.NetworkFileParser) -> None: - """ - Construct a defined engine view from a file and a base engine. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getBaseEngine(self) -> DynamicEngine: - """ - Get the base engine associated with this file defined engine view. - """ - def getNetworkFile(self) -> str: - """ - Get the network file associated with this defined engine view. - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getParser(self) -> gridfire._gridfire.io.NetworkFileParser: - """ - Get the parser used for this defined engine view. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class GraphEngine(DynamicEngine): - @typing.overload - def __init__(self, composition: fourdst._phys.composition.Composition, depth: gridfire._gridfire.engine.NetworkBuildDepth | typing.SupportsInt = ...) -> None: - """ - Initialize GraphEngine with a composition and build depth. - """ - @typing.overload - def __init__(self, composition: fourdst._phys.composition.Composition, partitionFunction: gridfire._gridfire.partition.PartitionFunction, depth: gridfire._gridfire.engine.NetworkBuildDepth | typing.SupportsInt = ...) -> None: - """ - Initialize GraphEngine with a composition, partition function and build depth. - """ - @typing.overload - def __init__(self, reactions: gridfire._gridfire.reaction.ReactionSet) -> None: - """ - Initialize GraphEngine with a set of reactions. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def calculateReverseRate(self, reaction: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat, composition: ...) -> float: - """ - Calculate the reverse rate for a given reaction at a specific temperature, density, and composition. - """ - def calculateReverseRateTwoBody(self, reaction: ..., T9: typing.SupportsFloat, forwardRate: typing.SupportsFloat, expFactor: typing.SupportsFloat) -> float: - """ - Calculate the reverse rate for a two-body reaction at a specific temperature. - """ - def calculateReverseRateTwoBodyDerivative(self, reaction: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat, composition: fourdst._phys.composition.Composition, reverseRate: typing.SupportsFloat) -> float: - """ - Calculate the derivative of the reverse rate for a two-body reaction at a specific temperature. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - def exportToCSV(self, ctx: scratchpads.StateBlob, filename: str) -> None: - """ - Export the network to a CSV file for analysis. - """ - def exportToDot(self, ctx: scratchpads.StateBlob, filename: str) -> None: - """ - Export the network to a DOT file for visualization. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getPartitionFunction(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.partition.PartitionFunction: - """ - Get the partition function used by the engine. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - @typing.overload - def getSpeciesDestructionTimescales(self, ctx: scratchpads.StateBlob, composition: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeReactions: gridfire._gridfire.reaction.ReactionSet) -> ...: - ... - @typing.overload - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - @typing.overload - def getSpeciesTimescales(self, ctx: scratchpads.StateBlob, composition: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeReactions: gridfire._gridfire.reaction.ReactionSet) -> ...: - ... - @typing.overload - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def involvesSpecies(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if a given species is involved in the network. - """ - def isPrecomputationEnabled(self, arg0: scratchpads.StateBlob) -> bool: - """ - Check if precomputation is enabled for the engine. - """ - def isUsingReverseReactions(self, arg0: scratchpads.StateBlob) -> bool: - """ - Check if the engine is using reverse reactions. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class MultiscalePartitioningEngineView(DynamicEngine): - def __init__(self, baseEngine: GraphEngine) -> None: - """ - Construct a multiscale partitioning engine view with a base engine. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - def exportToDot(self, ctx: scratchpads.StateBlob, filename: str, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> None: - """ - Export the network to a DOT file for visualization. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getBaseEngine(self) -> DynamicEngine: - """ - Get the base engine associated with this multiscale partitioning engine view. - """ - def getDynamicSpecies(self: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of dynamic species in the network. - """ - def getFastSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of fast species in the network. - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getNormalizedEquilibratedComposition(self, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Get the normalized equilibrated composition for the algebraic species. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def involvesSpecies(self: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if a given species is involved in the network (in either the algebraic or dynamic set). - """ - def involvesSpeciesInDynamic(self: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if a given species is involved in the network's dynamic set. - """ - def involvesSpeciesInQSE(self: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if a given species is involved in the network's algebraic set. - """ - def partitionNetwork(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Partition the network based on species timescales and connectivity. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class NetworkBuildDepth: - """ - Members: - - Full : Full network build depth - - Shallow : Shallow network build depth - - SecondOrder : Second order network build depth - - ThirdOrder : Third order network build depth - - FourthOrder : Fourth order network build depth - - FifthOrder : Fifth order network build depth - """ - FifthOrder: typing.ClassVar[NetworkBuildDepth] # value = - FourthOrder: typing.ClassVar[NetworkBuildDepth] # value = - Full: typing.ClassVar[NetworkBuildDepth] # value = - SecondOrder: typing.ClassVar[NetworkBuildDepth] # value = - Shallow: typing.ClassVar[NetworkBuildDepth] # value = - ThirdOrder: typing.ClassVar[NetworkBuildDepth] # value = - __members__: typing.ClassVar[dict[str, NetworkBuildDepth]] # value = {'Full': , 'Shallow': , 'SecondOrder': , 'ThirdOrder': , 'FourthOrder': , 'FifthOrder': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class NetworkConstructionFlags: - """ - Members: - - NONE : No special construction flags. - - REACLIB_STRONG : Include strong reactions from reaclib. - - WRL_BETA_MINUS : Include beta-minus decay reactions from weak rate library. - - WRL_BETA_PLUS : Include beta-plus decay reactions from weak rate library. - - WRL_ELECTRON_CAPTURE : Include electron capture reactions from weak rate library. - - WRL_POSITRON_CAPTURE : Include positron capture reactions from weak rate library. - - REACLIB_WEAK : Include weak reactions from reaclib. - - WRL_WEAK : Include all weak reactions from weak rate library. - - REACLIB : Include all reactions from reaclib. - - DEFAULT : Default construction flags (Reaclib strong and weak). - """ - DEFAULT: typing.ClassVar[NetworkConstructionFlags] # value = - NONE: typing.ClassVar[NetworkConstructionFlags] # value = - REACLIB: typing.ClassVar[NetworkConstructionFlags] # value = - REACLIB_STRONG: typing.ClassVar[NetworkConstructionFlags] # value = - REACLIB_WEAK: typing.ClassVar[NetworkConstructionFlags] # value = - WRL_BETA_MINUS: typing.ClassVar[NetworkConstructionFlags] # value = - WRL_BETA_PLUS: typing.ClassVar[NetworkConstructionFlags] # value = - WRL_ELECTRON_CAPTURE: typing.ClassVar[NetworkConstructionFlags] # value = - WRL_POSITRON_CAPTURE: typing.ClassVar[NetworkConstructionFlags] # value = - WRL_WEAK: typing.ClassVar[NetworkConstructionFlags] # value = - __members__: typing.ClassVar[dict[str, NetworkConstructionFlags]] # value = {'NONE': , 'REACLIB_STRONG': , 'WRL_BETA_MINUS': , 'WRL_BETA_PLUS': , 'WRL_ELECTRON_CAPTURE': , 'WRL_POSITRON_CAPTURE': , 'REACLIB_WEAK': , 'WRL_WEAK': , 'REACLIB': , 'DEFAULT': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - @typing.overload - def __repr__(self) -> str: - ... - @typing.overload - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class NetworkJacobian: - @typing.overload - def __getitem__(self, key: tuple[fourdst._phys.atomic.Species, fourdst._phys.atomic.Species]) -> float: - """ - Get an entry from the Jacobian matrix using species identifiers. - """ - @typing.overload - def __getitem__(self, key: tuple[typing.SupportsInt, typing.SupportsInt]) -> float: - """ - Get an entry from the Jacobian matrix using indices. - """ - @typing.overload - def __setitem__(self, key: tuple[fourdst._phys.atomic.Species, fourdst._phys.atomic.Species], value: typing.SupportsFloat) -> None: - """ - Set an entry in the Jacobian matrix using species identifiers. - """ - @typing.overload - def __setitem__(self, key: tuple[typing.SupportsInt, typing.SupportsInt], value: typing.SupportsFloat) -> None: - """ - Set an entry in the Jacobian matrix using indices. - """ - def data(self) -> ...: - """ - Get the underlying sparse matrix data. - """ - def infs(self) -> list[tuple[tuple[fourdst._phys.atomic.Species, fourdst._phys.atomic.Species], float]]: - """ - Get all infinite entries in the Jacobian matrix. - """ - def mapping(self) -> dict[fourdst._phys.atomic.Species, int]: - """ - Get the species-to-index mapping. - """ - def nans(self) -> list[tuple[tuple[fourdst._phys.atomic.Species, fourdst._phys.atomic.Species], float]]: - """ - Get all NaN entries in the Jacobian matrix. - """ - def nnz(self) -> int: - """ - Get the number of non-zero entries in the Jacobian matrix. - """ - def rank(self) -> int: - """ - Get the rank of the Jacobian matrix. - """ - def shape(self) -> tuple[int, int]: - """ - Get the shape of the Jacobian matrix as (rows, columns). - """ - def singular(self) -> bool: - """ - Check if the Jacobian matrix is singular. - """ - def to_csv(self, filename: str) -> None: - """ - Export the Jacobian matrix to a CSV file. - """ - def to_numpy(self) -> numpy.typing.NDArray[numpy.float64]: - """ - Convert the Jacobian matrix to a NumPy array. - """ -class NetworkPrimingEngineView(DefinedEngineView): - @typing.overload - def __init__(self, ctx: scratchpads.StateBlob, primingSymbol: str, baseEngine: GraphEngine) -> None: - """ - Construct a priming engine view with a priming symbol and a base engine. - """ - @typing.overload - def __init__(self, ctx: scratchpads.StateBlob, primingSpecies: fourdst._phys.atomic.Species, baseEngine: GraphEngine) -> None: - """ - Construct a priming engine view with a priming species and a base engine. - """ - def calculateEpsDerivatives(self, ctx: scratchpads.StateBlob, comp: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> ...: - """ - Calculate deps/dT and deps/drho - """ - def calculateMolarReactionFlow(self: DynamicEngine, ctx: scratchpads.StateBlob, reaction: ..., comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> float: - """ - Calculate the molar reaction flow for a given reaction. - """ - def calculateRHSAndEnergy(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> StepDerivatives: - """ - Calculate the right-hand side (dY/dt) and energy generation rate. - """ - def collectComposition(self, ctx: scratchpads.StateBlob, composition: ..., T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> fourdst._phys.composition.Composition: - """ - Recursively collect composition from current engine and any sub engines if they exist. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> NetworkJacobian: - """ - Generate the Jacobian matrix for the current state. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, activeSpecies: collections.abc.Sequence[fourdst._phys.atomic.Species]) -> NetworkJacobian: - """ - Generate the jacobian matrix only for the subset of the matrix representing the active species. - """ - @typing.overload - def generateJacobianMatrix(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, sparsityPattern: collections.abc.Sequence[tuple[typing.SupportsInt, typing.SupportsInt]]) -> NetworkJacobian: - """ - Generate the jacobian matrix for the given sparsity pattern - """ - def getBaseEngine(self) -> DynamicEngine: - """ - Get the base engine associated with this priming engine view. - """ - def getNetworkReactions(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of logical reactions in the network. - """ - def getNetworkSpecies(self, arg0: scratchpads.StateBlob) -> list[fourdst._phys.atomic.Species]: - """ - Get the list of species in the network. - """ - def getScreeningModel(self, arg0: scratchpads.StateBlob) -> gridfire._gridfire.screening.ScreeningType: - """ - Get the current screening model of the engine. - """ - def getSpeciesDestructionTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the destruction timescales for each species in the network. - """ - def getSpeciesIndex(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> int: - """ - Get the index of a species in the network. - """ - def getSpeciesStatus(self, ctx: scratchpads.StateBlob, species: fourdst._phys.atomic.Species) -> SpeciesStatus: - """ - Get the status of a species in the network. - """ - def getSpeciesTimescales(self: DynamicEngine, ctx: scratchpads.StateBlob, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> dict[fourdst._phys.atomic.Species, float]: - """ - Get the timescales for each species in the network. - """ - def primeEngine(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> PrimingReport: - """ - Prime the engine with a NetIn object to prepare for calculations. - """ - def project(self, ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn) -> fourdst._phys.composition.Composition: - """ - Update the engine state based on the provided NetIn object. - """ -class PrimingReport: - def __repr__(self) -> str: - ... - @property - def primedComposition(self) -> fourdst._phys.composition.Composition: - """ - The composition after priming. - """ - @property - def status(self) -> PrimingReportStatus: - """ - Status message from the priming process. - """ - @property - def success(self) -> bool: - """ - Indicates if the priming was successful. - """ -class PrimingReportStatus: - """ - Members: - - FULL_SUCCESS : Priming was full successful. - - NO_SPECIES_TO_PRIME : Solver Failed to converge during priming. - - MAX_ITERATIONS_REACHED : Engine has already been primed. - """ - FULL_SUCCESS: typing.ClassVar[PrimingReportStatus] # value = - MAX_ITERATIONS_REACHED: typing.ClassVar[PrimingReportStatus] # value = - NO_SPECIES_TO_PRIME: typing.ClassVar[PrimingReportStatus] # value = - __members__: typing.ClassVar[dict[str, PrimingReportStatus]] # value = {'FULL_SUCCESS': , 'NO_SPECIES_TO_PRIME': , 'MAX_ITERATIONS_REACHED': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - @typing.overload - def __repr__(self) -> str: - ... - @typing.overload - def __repr__(self) -> str: - """ - String representation of the PrimingReport. - """ - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class SparsityPattern: - pass -class SpeciesStatus: - """ - Members: - - ACTIVE : Species is active in the network. - - EQUILIBRIUM : Species is in equilibrium. - - INACTIVE_FLOW : Species is inactive due to flow. - - NOT_PRESENT : Species is not present in the network. - """ - ACTIVE: typing.ClassVar[SpeciesStatus] # value = - EQUILIBRIUM: typing.ClassVar[SpeciesStatus] # value = - INACTIVE_FLOW: typing.ClassVar[SpeciesStatus] # value = - NOT_PRESENT: typing.ClassVar[SpeciesStatus] # value = - __members__: typing.ClassVar[dict[str, SpeciesStatus]] # value = {'ACTIVE': , 'EQUILIBRIUM': , 'INACTIVE_FLOW': , 'NOT_PRESENT': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - @typing.overload - def __repr__(self) -> str: - ... - @typing.overload - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class StepDerivatives: - @property - def dYdt(self) -> dict[fourdst._phys.atomic.Species, float]: - """ - The right-hand side (dY/dt) of the ODE system. - """ - @property - def energy(self) -> float: - """ - The energy generation rate. - """ -def build_nuclear_network(composition: ..., weakInterpolator: ..., maxLayers: gridfire._gridfire.engine.NetworkBuildDepth | typing.SupportsInt = ..., ReactionTypes: NetworkConstructionFlags = ...) -> gridfire._gridfire.reaction.ReactionSet: - """ - Build a nuclear network from a composition using all archived reaction data. - """ -def primeNetwork(ctx: scratchpads.StateBlob, netIn: gridfire._gridfire.type.NetIn, engine: ..., ignoredReactionTypes: collections.abc.Sequence[...] | None = None) -> PrimingReport: - """ - Prime a network with a short timescale ignition - """ -def regularize_jacobian(jacobian: NetworkJacobian, composition: fourdst._phys.composition.Composition) -> NetworkJacobian: - """ - regularize_jacobian - """ -ACTIVE: SpeciesStatus # value = -ADAPTIVE_ENGINE_VIEW: EngineTypes # value = -DEFAULT: NetworkConstructionFlags # value = -DEFINED_ENGINE_VIEW: EngineTypes # value = -EQUILIBRIUM: SpeciesStatus # value = -FILE_DEFINED_ENGINE_VIEW: EngineTypes # value = -FULL_SUCCESS: PrimingReportStatus # value = -FifthOrder: NetworkBuildDepth # value = -FourthOrder: NetworkBuildDepth # value = -Full: NetworkBuildDepth # value = -GRAPH_ENGINE: EngineTypes # value = -INACTIVE_FLOW: SpeciesStatus # value = -MAX_ITERATIONS_REACHED: PrimingReportStatus # value = -MULTISCALE_PARTITIONING_ENGINE_VIEW: EngineTypes # value = -NONE: NetworkConstructionFlags # value = -NOT_PRESENT: SpeciesStatus # value = -NO_SPECIES_TO_PRIME: PrimingReportStatus # value = -PRIMING_ENGINE_VIEW: EngineTypes # value = -REACLIB: NetworkConstructionFlags # value = -REACLIB_STRONG: NetworkConstructionFlags # value = -REACLIB_WEAK: NetworkConstructionFlags # value = -SecondOrder: NetworkBuildDepth # value = -Shallow: NetworkBuildDepth # value = -ThirdOrder: NetworkBuildDepth # value = -WRL_BETA_MINUS: NetworkConstructionFlags # value = -WRL_BETA_PLUS: NetworkConstructionFlags # value = -WRL_ELECTRON_CAPTURE: NetworkConstructionFlags # value = -WRL_POSITRON_CAPTURE: NetworkConstructionFlags # value = -WRL_WEAK: NetworkConstructionFlags # value = diff --git a/stubs/gridfiregridfire/_gridfire/engine/diagnostics.pyi b/stubs/gridfiregridfire/_gridfire/engine/diagnostics.pyi deleted file mode 100644 index e0955a9e..00000000 --- a/stubs/gridfiregridfire/_gridfire/engine/diagnostics.pyi +++ /dev/null @@ -1,16 +0,0 @@ -""" -A submodule for engine diagnostics -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.composition -import gridfire._gridfire.engine -import gridfire._gridfire.engine.scratchpads -import typing -__all__: list[str] = ['inspect_jacobian_stiffness', 'inspect_species_balance', 'report_limiting_species'] -def inspect_jacobian_stiffness(ctx: gridfire._gridfire.engine.scratchpads.StateBlob, engine: gridfire._gridfire.engine.DynamicEngine, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, json: bool) -> ... | None: - ... -def inspect_species_balance(ctx: gridfire._gridfire.engine.scratchpads.StateBlob, engine: gridfire._gridfire.engine.DynamicEngine, species_name: str, comp: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat, json: bool) -> ... | None: - ... -def report_limiting_species(ctx: gridfire._gridfire.engine.scratchpads.StateBlob, engine: gridfire._gridfire.engine.DynamicEngine, Y_full: collections.abc.Sequence[typing.SupportsFloat], E_full: collections.abc.Sequence[typing.SupportsFloat], relTol: typing.SupportsFloat, absTol: typing.SupportsFloat, top_n: typing.SupportsInt, json: bool) -> ... | None: - ... diff --git a/stubs/gridfiregridfire/_gridfire/engine/scratchpads.pyi b/stubs/gridfiregridfire/_gridfire/engine/scratchpads.pyi deleted file mode 100644 index 6509bc84..00000000 --- a/stubs/gridfiregridfire/_gridfire/engine/scratchpads.pyi +++ /dev/null @@ -1,267 +0,0 @@ -""" -Engine ScratchPad bindings -""" -from __future__ import annotations -import fourdst._phys.atomic -import fourdst._phys.composition -import gridfire._gridfire.reaction -import typing -__all__: list[str] = ['ADAPTIVE_ENGINE_VIEW_SCRATCHPAD', 'ADFunRegistrationResult', 'ALREADY_REGISTERED', 'AdaptiveEngineViewScratchPad', 'DEFINED_ENGINE_VIEW_SCRATCHPAD', 'DefinedEngineViewScratchPad', 'GRAPH_ENGINE_SCRATCHPAD', 'GraphEngineScratchPad', 'MULTISCALE_PARTITIONING_ENGINE_VIEW_SCRATCHPAD', 'MultiscalePartitioningEngineViewScratchPad', 'SCRATCHPAD_BAD_CAST', 'SCRATCHPAD_NOT_FOUND', 'SCRATCHPAD_NOT_INITIALIZED', 'SCRATCHPAD_OUT_OF_BOUNDS', 'SCRATCHPAD_TYPE_COLLISION', 'SCRATCHPAD_UNKNOWN_ERROR', 'SUCCESS', 'ScratchPadType', 'StateBlob', 'StateBlobError'] -class ADFunRegistrationResult: - """ - Members: - - SUCCESS - - ALREADY_REGISTERED - """ - ALREADY_REGISTERED: typing.ClassVar[ADFunRegistrationResult] # value = - SUCCESS: typing.ClassVar[ADFunRegistrationResult] # value = - __members__: typing.ClassVar[dict[str, ADFunRegistrationResult]] # value = {'SUCCESS': , 'ALREADY_REGISTERED': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class AdaptiveEngineViewScratchPad: - ID: typing.ClassVar[ScratchPadType] # value = - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def clone(self) -> ...: - ... - def initialize(self, arg0: ...) -> None: - ... - def is_initialized(self) -> bool: - ... - @property - def active_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - ... - @property - def active_species(self) -> list[fourdst._phys.atomic.Species]: - ... - @property - def has_initialized(self) -> bool: - ... -class DefinedEngineViewScratchPad: - ID: typing.ClassVar[ScratchPadType] # value = - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def clone(self) -> ...: - ... - def is_initialized(self) -> bool: - ... - @property - def active_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - ... - @property - def active_species(self) -> set[fourdst._phys.atomic.Species]: - ... - @property - def has_initialized(self) -> bool: - ... - @property - def reaction_index_map(self) -> list[int]: - ... - @property - def species_index_map(self) -> list[int]: - ... -class GraphEngineScratchPad: - ID: typing.ClassVar[ScratchPadType] # value = - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def clone(self) -> ...: - ... - def initialize(self, engine: ...) -> None: - ... - def is_initialized(self) -> bool: - ... - @property - def has_initialized(self) -> bool: - ... - @property - def local_abundance_cache(self) -> list[float]: - ... - @property - def most_recent_rhs_calculation(self) -> ... | None: - ... - @property - def stepDerivativesCache(self) -> dict[int, ...]: - ... -class MultiscalePartitioningEngineViewScratchPad: - ID: typing.ClassVar[ScratchPadType] # value = - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def clone(self) -> ...: - ... - def initialize(self) -> None: - ... - def is_initialized(self) -> bool: - ... - @property - def algebraic_species(self) -> list[fourdst._phys.atomic.Species]: - ... - @property - def composition_cache(self) -> dict[int, fourdst._phys.composition.Composition]: - ... - @property - def dynamic_species(self) -> list[fourdst._phys.atomic.Species]: - ... - @property - def has_initialized(self) -> bool: - ... - @property - def qse_groups(self) -> list[...]: - ... -class ScratchPadType: - """ - Members: - - GRAPH_ENGINE_SCRATCHPAD - - MULTISCALE_PARTITIONING_ENGINE_VIEW_SCRATCHPAD - - ADAPTIVE_ENGINE_VIEW_SCRATCHPAD - - DEFINED_ENGINE_VIEW_SCRATCHPAD - """ - ADAPTIVE_ENGINE_VIEW_SCRATCHPAD: typing.ClassVar[ScratchPadType] # value = - DEFINED_ENGINE_VIEW_SCRATCHPAD: typing.ClassVar[ScratchPadType] # value = - GRAPH_ENGINE_SCRATCHPAD: typing.ClassVar[ScratchPadType] # value = - MULTISCALE_PARTITIONING_ENGINE_VIEW_SCRATCHPAD: typing.ClassVar[ScratchPadType] # value = - __members__: typing.ClassVar[dict[str, ScratchPadType]] # value = {'GRAPH_ENGINE_SCRATCHPAD': , 'MULTISCALE_PARTITIONING_ENGINE_VIEW_SCRATCHPAD': , 'ADAPTIVE_ENGINE_VIEW_SCRATCHPAD': , 'DEFINED_ENGINE_VIEW_SCRATCHPAD': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class StateBlob: - @staticmethod - def error_to_string(arg0: StateBlobError) -> str: - ... - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def clone_structure(self) -> StateBlob: - ... - def enroll(self, arg0: ScratchPadType) -> None: - ... - def get(self, arg0: ScratchPadType) -> ...: - ... - def get_registered_scratchpads(self) -> set[ScratchPadType]: - ... - def get_status(self, arg0: ScratchPadType) -> ...: - ... - def get_status_map(self) -> dict[ScratchPadType, ...]: - ... -class StateBlobError: - """ - Members: - - SCRATCHPAD_OUT_OF_BOUNDS - - SCRATCHPAD_NOT_FOUND - - SCRATCHPAD_BAD_CAST - - SCRATCHPAD_NOT_INITIALIZED - - SCRATCHPAD_TYPE_COLLISION - - SCRATCHPAD_UNKNOWN_ERROR - """ - SCRATCHPAD_BAD_CAST: typing.ClassVar[StateBlobError] # value = - SCRATCHPAD_NOT_FOUND: typing.ClassVar[StateBlobError] # value = - SCRATCHPAD_NOT_INITIALIZED: typing.ClassVar[StateBlobError] # value = - SCRATCHPAD_OUT_OF_BOUNDS: typing.ClassVar[StateBlobError] # value = - SCRATCHPAD_TYPE_COLLISION: typing.ClassVar[StateBlobError] # value = - SCRATCHPAD_UNKNOWN_ERROR: typing.ClassVar[StateBlobError] # value = - __members__: typing.ClassVar[dict[str, StateBlobError]] # value = {'SCRATCHPAD_OUT_OF_BOUNDS': , 'SCRATCHPAD_NOT_FOUND': , 'SCRATCHPAD_BAD_CAST': , 'SCRATCHPAD_NOT_INITIALIZED': , 'SCRATCHPAD_TYPE_COLLISION': , 'SCRATCHPAD_UNKNOWN_ERROR': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -ADAPTIVE_ENGINE_VIEW_SCRATCHPAD: ScratchPadType # value = -ALREADY_REGISTERED: ADFunRegistrationResult # value = -DEFINED_ENGINE_VIEW_SCRATCHPAD: ScratchPadType # value = -GRAPH_ENGINE_SCRATCHPAD: ScratchPadType # value = -MULTISCALE_PARTITIONING_ENGINE_VIEW_SCRATCHPAD: ScratchPadType # value = -SCRATCHPAD_BAD_CAST: StateBlobError # value = -SCRATCHPAD_NOT_FOUND: StateBlobError # value = -SCRATCHPAD_NOT_INITIALIZED: StateBlobError # value = -SCRATCHPAD_OUT_OF_BOUNDS: StateBlobError # value = -SCRATCHPAD_TYPE_COLLISION: StateBlobError # value = -SCRATCHPAD_UNKNOWN_ERROR: StateBlobError # value = -SUCCESS: ADFunRegistrationResult # value = diff --git a/stubs/gridfiregridfire/_gridfire/exceptions.pyi b/stubs/gridfiregridfire/_gridfire/exceptions.pyi deleted file mode 100644 index 92796a95..00000000 --- a/stubs/gridfiregridfire/_gridfire/exceptions.pyi +++ /dev/null @@ -1,61 +0,0 @@ -""" -GridFire exceptions bindings -""" -from __future__ import annotations -__all__: list[str] = ['BadCollectionError', 'BadRHSEngineError', 'CVODESolverFailureError', 'DebugException', 'EngineError', 'FailedToPartitionEngineError', 'GridFireError', 'HashingError', 'IllConditionedJacobianError', 'InvalidQSESolutionError', 'JacobianError', 'KINSolSolverFailureError', 'MissingBaseReactionError', 'MissingKeyReactionError', 'MissingSeedSpeciesError', 'NetworkResizedError', 'PolicyError', 'ReactionError', 'ReactionParsingError', 'SUNDIALSError', 'ScratchPadError', 'SingularJacobianError', 'SolverError', 'StaleJacobianError', 'UnableToSetNetworkReactionsError', 'UninitializedJacobianError', 'UnknownJacobianError', 'UtilityError'] -class BadCollectionError(EngineError): - pass -class BadRHSEngineError(EngineError): - pass -class CVODESolverFailureError(SUNDIALSError): - pass -class DebugException(GridFireError): - pass -class EngineError(GridFireError): - pass -class FailedToPartitionEngineError(EngineError): - pass -class GridFireError(Exception): - pass -class HashingError(UtilityError): - pass -class IllConditionedJacobianError(SolverError): - pass -class InvalidQSESolutionError(EngineError): - pass -class JacobianError(EngineError): - pass -class KINSolSolverFailureError(SUNDIALSError): - pass -class MissingBaseReactionError(PolicyError): - pass -class MissingKeyReactionError(PolicyError): - pass -class MissingSeedSpeciesError(PolicyError): - pass -class NetworkResizedError(EngineError): - pass -class PolicyError(GridFireError): - pass -class ReactionError(GridFireError): - pass -class ReactionParsingError(ReactionError): - pass -class SUNDIALSError(SolverError): - pass -class ScratchPadError(GridFireError): - pass -class SingularJacobianError(SolverError): - pass -class SolverError(GridFireError): - pass -class StaleJacobianError(JacobianError): - pass -class UnableToSetNetworkReactionsError(EngineError): - pass -class UninitializedJacobianError(JacobianError): - pass -class UnknownJacobianError(JacobianError): - pass -class UtilityError(GridFireError): - pass diff --git a/stubs/gridfiregridfire/_gridfire/io.pyi b/stubs/gridfiregridfire/_gridfire/io.pyi deleted file mode 100644 index 6024a26b..00000000 --- a/stubs/gridfiregridfire/_gridfire/io.pyi +++ /dev/null @@ -1,14 +0,0 @@ -""" -GridFire io bindings -""" -from __future__ import annotations -__all__: list[str] = ['NetworkFileParser', 'ParsedNetworkData', 'SimpleReactionListFileParser'] -class NetworkFileParser: - pass -class ParsedNetworkData: - pass -class SimpleReactionListFileParser(NetworkFileParser): - def parse(self, filename: str) -> ParsedNetworkData: - """ - Parse a simple reaction list file and return a ParsedNetworkData object. - """ diff --git a/stubs/gridfiregridfire/_gridfire/partition.pyi b/stubs/gridfiregridfire/_gridfire/partition.pyi deleted file mode 100644 index 50c78f24..00000000 --- a/stubs/gridfiregridfire/_gridfire/partition.pyi +++ /dev/null @@ -1,142 +0,0 @@ -""" -GridFire partition function bindings -""" -from __future__ import annotations -import collections.abc -import typing -__all__: list[str] = ['BasePartitionType', 'CompositePartitionFunction', 'GroundState', 'GroundStatePartitionFunction', 'PartitionFunction', 'RauscherThielemann', 'RauscherThielemannPartitionDataRecord', 'RauscherThielemannPartitionFunction', 'basePartitionTypeToString', 'stringToBasePartitionType'] -class BasePartitionType: - """ - Members: - - RauscherThielemann - - GroundState - """ - GroundState: typing.ClassVar[BasePartitionType] # value = - RauscherThielemann: typing.ClassVar[BasePartitionType] # value = - __members__: typing.ClassVar[dict[str, BasePartitionType]] # value = {'RauscherThielemann': , 'GroundState': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class CompositePartitionFunction: - @typing.overload - def __init__(self, partitionFunctions: collections.abc.Sequence[BasePartitionType]) -> None: - """ - Create a composite partition function from a list of base partition types. - """ - @typing.overload - def __init__(self, arg0: CompositePartitionFunction) -> None: - """ - Copy constructor for CompositePartitionFunction. - """ - def evaluate(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the composite partition function for given Z, A, and T9. - """ - def evaluateDerivative(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the derivative of the composite partition function for given Z, A, and T9. - """ - def get_type(self) -> str: - """ - Get the type of the partition function (should return 'Composite'). - """ - def supports(self, z: typing.SupportsInt, a: typing.SupportsInt) -> bool: - """ - Check if the composite partition function supports given Z and A. - """ -class GroundStatePartitionFunction(PartitionFunction): - def __init__(self) -> None: - ... - def evaluate(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the ground state partition function for given Z, A, and T9. - """ - def evaluateDerivative(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the derivative of the ground state partition function for given Z, A, and T9. - """ - def get_type(self) -> str: - """ - Get the type of the partition function (should return 'GroundState'). - """ - def supports(self, z: typing.SupportsInt, a: typing.SupportsInt) -> bool: - """ - Check if the ground state partition function supports given Z and A. - """ -class PartitionFunction: - pass -class RauscherThielemannPartitionDataRecord: - @property - def a(self) -> int: - """ - Mass number - """ - @property - def ground_state_spin(self) -> float: - """ - Ground state spin - """ - @property - def normalized_g_values(self) -> float: - """ - Normalized g-values for the first 24 energy levels - """ - @property - def z(self) -> int: - """ - Atomic number - """ -class RauscherThielemannPartitionFunction(PartitionFunction): - def __init__(self) -> None: - ... - def evaluate(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the Rauscher-Thielemann partition function for given Z, A, and T9. - """ - def evaluateDerivative(self, z: typing.SupportsInt, a: typing.SupportsInt, T9: typing.SupportsFloat) -> float: - """ - Evaluate the derivative of the Rauscher-Thielemann partition function for given Z, A, and T9. - """ - def get_type(self) -> str: - """ - Get the type of the partition function (should return 'RauscherThielemann'). - """ - def supports(self, z: typing.SupportsInt, a: typing.SupportsInt) -> bool: - """ - Check if the Rauscher-Thielemann partition function supports given Z and A. - """ -def basePartitionTypeToString(type: BasePartitionType) -> str: - """ - Convert BasePartitionType to string. - """ -def stringToBasePartitionType(typeStr: str) -> BasePartitionType: - """ - Convert string to BasePartitionType. - """ -GroundState: BasePartitionType # value = -RauscherThielemann: BasePartitionType # value = diff --git a/stubs/gridfiregridfire/_gridfire/policy.pyi b/stubs/gridfiregridfire/_gridfire/policy.pyi deleted file mode 100644 index 3a5c89b9..00000000 --- a/stubs/gridfiregridfire/_gridfire/policy.pyi +++ /dev/null @@ -1,769 +0,0 @@ -""" -GridFire network policy bindings -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.atomic -import fourdst._phys.composition -import gridfire._gridfire.engine -import gridfire._gridfire.engine.scratchpads -import gridfire._gridfire.partition -import gridfire._gridfire.reaction -import typing -__all__: list[str] = ['CNOChainPolicy', 'CNOIChainPolicy', 'CNOIIChainPolicy', 'CNOIIIChainPolicy', 'CNOIVChainPolicy', 'ConstructionResults', 'HotCNOChainPolicy', 'HotCNOIChainPolicy', 'HotCNOIIChainPolicy', 'HotCNOIIIChainPolicy', 'INITIALIZED_UNVERIFIED', 'INITIALIZED_VERIFIED', 'MISSING_KEY_REACTION', 'MISSING_KEY_SPECIES', 'MainSequencePolicy', 'MainSequenceReactionChainPolicy', 'MultiReactionChainPolicy', 'NetworkPolicy', 'NetworkPolicyStatus', 'ProtonProtonChainPolicy', 'ProtonProtonIChainPolicy', 'ProtonProtonIIChainPolicy', 'ProtonProtonIIIChainPolicy', 'ReactionChainPolicy', 'TemperatureDependentChainPolicy', 'TripleAlphaChainPolicy', 'UNINITIALIZED', 'network_policy_status_to_string'] -class CNOChainPolicy(MultiReactionChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class CNOIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class CNOIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class CNOIIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class CNOIVChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class ConstructionResults: - @property - def engine(self) -> gridfire._gridfire.engine.DynamicEngine: - ... - @property - def scratch_blob(self) -> gridfire._gridfire.engine.scratchpads.StateBlob: - ... -class HotCNOChainPolicy(MultiReactionChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class HotCNOIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class HotCNOIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class HotCNOIIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class MainSequencePolicy(NetworkPolicy): - @typing.overload - def __init__(self, composition: fourdst._phys.composition.Composition) -> None: - """ - Construct MainSequencePolicy from an existing composition. - """ - @typing.overload - def __init__(self, seed_species: collections.abc.Sequence[fourdst._phys.atomic.Species], mass_fractions: collections.abc.Sequence[typing.SupportsFloat]) -> None: - """ - Construct MainSequencePolicy from seed species and mass fractions. - """ - def construct(self) -> ConstructionResults: - """ - Construct the network according to the policy. - """ - def get_engine_stack(self) -> list[gridfire._gridfire.engine.DynamicEngine]: - ... - def get_engine_types_stack(self) -> list[gridfire._gridfire.engine.EngineTypes]: - """ - Get the types of engines in the stack constructed by the network policy. - """ - def get_partition_function(self) -> gridfire._gridfire.partition.PartitionFunction: - ... - def get_seed_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the set of seed reactions required by the network policy. - """ - def get_seed_species(self) -> set[fourdst._phys.atomic.Species]: - """ - Get the set of seed species required by the network policy. - """ - def get_stack_scratch_blob(self) -> gridfire._gridfire.engine.scratchpads.StateBlob: - ... - def get_status(self) -> NetworkPolicyStatus: - """ - Get the current status of the network policy. - """ - def name(self) -> str: - """ - Get the name of the network policy. - """ -class MainSequenceReactionChainPolicy(MultiReactionChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class MultiReactionChainPolicy(ReactionChainPolicy): - pass -class NetworkPolicy: - pass -class NetworkPolicyStatus: - """ - Members: - - UNINITIALIZED - - INITIALIZED_UNVERIFIED - - MISSING_KEY_REACTION - - MISSING_KEY_SPECIES - - INITIALIZED_VERIFIED - """ - INITIALIZED_UNVERIFIED: typing.ClassVar[NetworkPolicyStatus] # value = - INITIALIZED_VERIFIED: typing.ClassVar[NetworkPolicyStatus] # value = - MISSING_KEY_REACTION: typing.ClassVar[NetworkPolicyStatus] # value = - MISSING_KEY_SPECIES: typing.ClassVar[NetworkPolicyStatus] # value = - UNINITIALIZED: typing.ClassVar[NetworkPolicyStatus] # value = - __members__: typing.ClassVar[dict[str, NetworkPolicyStatus]] # value = {'UNINITIALIZED': , 'INITIALIZED_UNVERIFIED': , 'MISSING_KEY_REACTION': , 'MISSING_KEY_SPECIES': , 'INITIALIZED_VERIFIED': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class ProtonProtonChainPolicy(MultiReactionChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class ProtonProtonIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class ProtonProtonIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class ProtonProtonIIIChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -class ReactionChainPolicy: - pass -class TemperatureDependentChainPolicy(ReactionChainPolicy): - pass -class TripleAlphaChainPolicy(TemperatureDependentChainPolicy): - def __eq__(self, other: ReactionChainPolicy) -> bool: - """ - Check equality with another ReactionChainPolicy. - """ - def __hash__(self) -> int: - ... - def __init__(self) -> None: - ... - def __ne__(self, other: ReactionChainPolicy) -> bool: - """ - Check inequality with another ReactionChainPolicy. - """ - def __repr__(self) -> str: - ... - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the reaction chain contains a reaction with the given ID. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the reaction chain contains the given reaction. - """ - def get_reactions(self) -> gridfire._gridfire.reaction.ReactionSet: - """ - Get the ReactionSet representing this reaction chain. - """ - def hash(self, seed: typing.SupportsInt) -> int: - """ - Compute a hash value for the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ - @typing.overload - def name(self) -> str: - """ - Get the name of the reaction chain policy. - """ -def network_policy_status_to_string(status: NetworkPolicyStatus) -> str: - """ - Convert a NetworkPolicyStatus enum value to its string representation. - """ -INITIALIZED_UNVERIFIED: NetworkPolicyStatus # value = -INITIALIZED_VERIFIED: NetworkPolicyStatus # value = -MISSING_KEY_REACTION: NetworkPolicyStatus # value = -MISSING_KEY_SPECIES: NetworkPolicyStatus # value = -UNINITIALIZED: NetworkPolicyStatus # value = diff --git a/stubs/gridfiregridfire/_gridfire/reaction.pyi b/stubs/gridfiregridfire/_gridfire/reaction.pyi deleted file mode 100644 index d2659168..00000000 --- a/stubs/gridfiregridfire/_gridfire/reaction.pyi +++ /dev/null @@ -1,249 +0,0 @@ -""" -GridFire reaction bindings -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.atomic -import fourdst._phys.composition -import typing -__all__: list[str] = ['LogicalReaclibReaction', 'RateCoefficientSet', 'ReaclibReaction', 'ReactionSet', 'get_all_reactions', 'packReactionSet'] -class LogicalReaclibReaction(ReaclibReaction): - @typing.overload - def __init__(self, reactions: collections.abc.Sequence[ReaclibReaction]) -> None: - """ - Construct a LogicalReaclibReaction from a vector of ReaclibReaction objects. - """ - @typing.overload - def __init__(self, reactions: collections.abc.Sequence[ReaclibReaction], is_reverse: bool) -> None: - """ - Construct a LogicalReaclibReaction from a vector of ReaclibReaction objects. - """ - def __len__(self) -> int: - """ - Overload len() to return the number of source rates. - """ - def add_reaction(self, reaction: ReaclibReaction) -> None: - """ - Add another Reaction source to this logical reaction. - """ - def calculate_forward_rate_log_derivative(self, T9: typing.SupportsFloat, rho: typing.SupportsFloat, Ye: typing.SupportsFloat, mue: typing.SupportsFloat, Composition: fourdst._phys.composition.Composition) -> float: - """ - Calculate the forward rate log derivative at a given temperature T9 (in units of 10^9 K). - """ - def calculate_rate(self, T9: typing.SupportsFloat, rho: typing.SupportsFloat, Ye: typing.SupportsFloat, mue: typing.SupportsFloat, Y: collections.abc.Sequence[typing.SupportsFloat], index_to_species_map: collections.abc.Mapping[typing.SupportsInt, fourdst._phys.atomic.Species]) -> float: - """ - Calculate the reaction rate at a given temperature T9 (in units of 10^9 K). Note that for a reaclib reaction only T9 is actually used, all other parameters are there for interface compatibility. - """ - def size(self) -> int: - """ - Get the number of source rates contributing to this logical reaction. - """ - def sources(self) -> list[str]: - """ - Get the list of source labels for the aggregated rates. - """ -class RateCoefficientSet: - def __init__(self, a0: typing.SupportsFloat, a1: typing.SupportsFloat, a2: typing.SupportsFloat, a3: typing.SupportsFloat, a4: typing.SupportsFloat, a5: typing.SupportsFloat, a6: typing.SupportsFloat) -> None: - """ - Construct a RateCoefficientSet with the given parameters. - """ -class ReaclibReaction: - __hash__: typing.ClassVar[None] = None - def __eq__(self, arg0: ReaclibReaction) -> bool: - """ - Equality operator for reactions based on their IDs. - """ - def __init__(self, id: str, peName: str, chapter: typing.SupportsInt, reactants: collections.abc.Sequence[fourdst._phys.atomic.Species], products: collections.abc.Sequence[fourdst._phys.atomic.Species], qValue: typing.SupportsFloat, label: str, sets: RateCoefficientSet, reverse: bool = False) -> None: - """ - Construct a Reaction with the given parameters. - """ - def __neq__(self, arg0: ReaclibReaction) -> bool: - """ - Inequality operator for reactions based on their IDs. - """ - def __repr__(self) -> str: - ... - def all_species(self) -> set[fourdst._phys.atomic.Species]: - """ - Get all species involved in the reaction (both reactants and products) as a set. - """ - def calculate_rate(self, T9: typing.SupportsFloat, rho: typing.SupportsFloat, Y: collections.abc.Sequence[typing.SupportsFloat]) -> float: - """ - Calculate the reaction rate at a given temperature T9 (in units of 10^9 K). - """ - def chapter(self) -> int: - """ - Get the REACLIB chapter number defining the reaction structure. - """ - def contains(self, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if the reaction contains a specific species. - """ - def contains_product(self, arg0: fourdst._phys.atomic.Species) -> bool: - """ - Check if the reaction contains a specific product species. - """ - def contains_reactant(self, arg0: fourdst._phys.atomic.Species) -> bool: - """ - Check if the reaction contains a specific reactant species. - """ - def excess_energy(self) -> float: - """ - Calculate the excess energy from the mass difference of reactants and products. - """ - def hash(self, seed: typing.SupportsInt = 0) -> int: - """ - Compute a hash for the reaction based on its ID. - """ - def id(self) -> str: - """ - Get the unique identifier of the reaction. - """ - def is_reverse(self) -> bool: - """ - Check if this is a reverse reaction rate. - """ - def num_species(self) -> int: - """ - Count the number of species in the reaction. - """ - def peName(self) -> str: - """ - Get the reaction name in (projectile, ejectile) notation (e.g., 'p(p,g)d'). - """ - def product_species(self) -> set[fourdst._phys.atomic.Species]: - """ - Get the product species of the reaction as a set. - """ - def products(self) -> list[fourdst._phys.atomic.Species]: - """ - Get a list of product species in the reaction. - """ - def qValue(self) -> float: - """ - Get the Q-value of the reaction in MeV. - """ - def rateCoefficients(self) -> RateCoefficientSet: - """ - get the set of rate coefficients. - """ - def reactant_species(self) -> set[fourdst._phys.atomic.Species]: - """ - Get the reactant species of the reaction as a set. - """ - def reactants(self) -> list[fourdst._phys.atomic.Species]: - """ - Get a list of reactant species in the reaction. - """ - def sourceLabel(self) -> str: - """ - Get the source label for the rate data (e.g., 'wc12w', 'st08'). - """ - @typing.overload - def stoichiometry(self, species: fourdst._phys.atomic.Species) -> int: - """ - Get the stoichiometry of the reaction as a map from species to their coefficients. - """ - @typing.overload - def stoichiometry(self) -> dict[fourdst._phys.atomic.Species, int]: - """ - Get the stoichiometry of the reaction as a map from species to their coefficients. - """ -class ReactionSet: - __hash__: typing.ClassVar[None] = None - @staticmethod - def from_clones(reactions: collections.abc.Sequence[...]) -> ReactionSet: - """ - Create a ReactionSet that takes ownership of the reactions by cloning the input reactions. - """ - def __eq__(self, LogicalReactionSet: ReactionSet) -> bool: - """ - Equality operator for LogicalReactionSets based on their contents. - """ - def __getitem__(self, index: typing.SupportsInt) -> ...: - """ - Get a LogicalReaclibReaction by index. - """ - def __getitem___(self, id: str) -> ...: - """ - Get a LogicalReaclibReaction by its ID. - """ - @typing.overload - def __init__(self, reactions: collections.abc.Sequence[...]) -> None: - """ - Construct a LogicalReactionSet from a vector of LogicalReaclibReaction objects. - """ - @typing.overload - def __init__(self) -> None: - """ - Default constructor for an empty LogicalReactionSet. - """ - @typing.overload - def __init__(self, other: ReactionSet) -> None: - """ - Copy constructor for LogicalReactionSet. - """ - def __len__(self) -> int: - """ - Overload len() to return the number of LogicalReactions. - """ - def __ne__(self, LogicalReactionSet: ReactionSet) -> bool: - """ - Inequality operator for LogicalReactionSets based on their contents. - """ - def __repr__(self) -> str: - ... - def add_reaction(self, reaction: ...) -> None: - """ - Add a LogicalReaclibReaction to the set. - """ - def clear(self) -> None: - """ - Remove all LogicalReactions from the set. - """ - @typing.overload - def contains(self, id: str) -> bool: - """ - Check if the set contains a specific LogicalReaclibReaction. - """ - @typing.overload - def contains(self, reaction: ...) -> bool: - """ - Check if the set contains a specific Reaction. - """ - def contains_product(self, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if any reaction in the set has the species as a product. - """ - def contains_reactant(self, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if any reaction in the set has the species as a reactant. - """ - def contains_species(self, species: fourdst._phys.atomic.Species) -> bool: - """ - Check if any reaction in the set involves the given species. - """ - def getReactionSetSpecies(self) -> set[fourdst._phys.atomic.Species]: - """ - Get all species involved in the reactions of the set as a set of Species objects. - """ - def hash(self, seed: typing.SupportsInt = 0) -> int: - """ - Compute a hash for the LogicalReactionSet based on its contents. - """ - def remove_reaction(self, reaction: ...) -> None: - """ - Remove a LogicalReaclibReaction from the set. - """ - def size(self) -> int: - """ - Get the number of LogicalReactions in the set. - """ -def get_all_reactions() -> ReactionSet: - """ - Get all reactions from the REACLIB database. - """ -def packReactionSet(reactionSet: ReactionSet) -> ReactionSet: - """ - Convert a ReactionSet to a LogicalReactionSet by aggregating reactions with the same peName. - """ diff --git a/stubs/gridfiregridfire/_gridfire/screening.pyi b/stubs/gridfiregridfire/_gridfire/screening.pyi deleted file mode 100644 index e2b9c181..00000000 --- a/stubs/gridfiregridfire/_gridfire/screening.pyi +++ /dev/null @@ -1,68 +0,0 @@ -""" -GridFire plasma screening bindings -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.atomic -import gridfire._gridfire.reaction -import typing -__all__: list[str] = ['BARE', 'BareScreeningModel', 'ScreeningModel', 'ScreeningType', 'WEAK', 'WeakScreeningModel', 'selectScreeningModel'] -class BareScreeningModel: - def __init__(self) -> None: - ... - def calculateScreeningFactors(self, reactions: gridfire._gridfire.reaction.ReactionSet, species: collections.abc.Sequence[fourdst._phys.atomic.Species], Y: collections.abc.Sequence[typing.SupportsFloat], T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> list[float]: - """ - Calculate the bare plasma screening factors. This always returns 1.0 (bare) - """ -class ScreeningModel: - pass -class ScreeningType: - """ - Members: - - BARE - - WEAK - """ - BARE: typing.ClassVar[ScreeningType] # value = - WEAK: typing.ClassVar[ScreeningType] # value = - __members__: typing.ClassVar[dict[str, ScreeningType]] # value = {'BARE': , 'WEAK': } - def __eq__(self, other: typing.Any) -> bool: - ... - def __getstate__(self) -> int: - ... - def __hash__(self) -> int: - ... - def __index__(self) -> int: - ... - def __init__(self, value: typing.SupportsInt) -> None: - ... - def __int__(self) -> int: - ... - def __ne__(self, other: typing.Any) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, state: typing.SupportsInt) -> None: - ... - def __str__(self) -> str: - ... - @property - def name(self) -> str: - ... - @property - def value(self) -> int: - ... -class WeakScreeningModel: - def __init__(self) -> None: - ... - def calculateScreeningFactors(self, reactions: gridfire._gridfire.reaction.ReactionSet, species: collections.abc.Sequence[fourdst._phys.atomic.Species], Y: collections.abc.Sequence[typing.SupportsFloat], T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> list[float]: - """ - Calculate the weak plasma screening factors using the Salpeter (1954) model. - """ -def selectScreeningModel(type: ScreeningType) -> ScreeningModel: - """ - Select a screening model based on the specified type. Returns a pointer to the selected model. - """ -BARE: ScreeningType # value = -WEAK: ScreeningType # value = diff --git a/stubs/gridfiregridfire/_gridfire/solver.pyi b/stubs/gridfiregridfire/_gridfire/solver.pyi deleted file mode 100644 index 44ae0beb..00000000 --- a/stubs/gridfiregridfire/_gridfire/solver.pyi +++ /dev/null @@ -1,157 +0,0 @@ -""" -GridFire numerical solver bindings -""" -from __future__ import annotations -import collections.abc -import fourdst._phys.atomic -import gridfire._gridfire.engine -import gridfire._gridfire.engine.scratchpads -import gridfire._gridfire.type -import types -import typing -__all__: list[str] = ['GridSolver', 'GridSolverContext', 'MultiZoneDynamicNetworkSolver', 'PointSolver', 'PointSolverContext', 'PointSolverTimestepContext', 'SingleZoneDynamicNetworkSolver', 'SolverContextBase'] -class GridSolver(MultiZoneDynamicNetworkSolver): - def __init__(self, engine: gridfire._gridfire.engine.DynamicEngine, solver: SingleZoneDynamicNetworkSolver) -> None: - """ - Initialize the GridSolver object. - """ - def evaluate(self, solver_ctx: SolverContextBase, netIns: collections.abc.Sequence[gridfire._gridfire.type.NetIn]) -> list[gridfire._gridfire.type.NetOut]: - """ - evaluate the dynamic engine using the dynamic engine class - """ -class GridSolverContext(SolverContextBase): - detailed_logging: bool - stdout_logging: bool - zone_completion_logging: bool - def __init__(self, ctx_template: gridfire._gridfire.engine.scratchpads.StateBlob) -> None: - ... - @typing.overload - def clear_callback(self) -> None: - ... - @typing.overload - def clear_callback(self, zone_idx: typing.SupportsInt) -> None: - ... - def init(self) -> None: - ... - def reset(self) -> None: - ... - @typing.overload - def set_callback(self, callback: collections.abc.Callable[[...], None]) -> None: - ... - @typing.overload - def set_callback(self, callback: collections.abc.Callable[[...], None], zone_idx: typing.SupportsInt) -> None: - ... -class MultiZoneDynamicNetworkSolver: - def evaluate(self, solver_ctx: SolverContextBase, netIns: collections.abc.Sequence[gridfire._gridfire.type.NetIn]) -> list[gridfire._gridfire.type.NetOut]: - """ - evaluate the dynamic engine using the dynamic engine class for multiple zones (using openmp if available) - """ -class PointSolver(SingleZoneDynamicNetworkSolver): - def __init__(self, engine: gridfire._gridfire.engine.DynamicEngine) -> None: - """ - Initialize the PointSolver object. - """ - def evaluate(self, solver_ctx: SolverContextBase, netIn: gridfire._gridfire.type.NetIn, display_trigger: bool = False, force_reinitialization: bool = False) -> gridfire._gridfire.type.NetOut: - """ - evaluate the dynamic engine using the dynamic engine class - """ -class PointSolverContext: - callback: collections.abc.Callable[[PointSolverTimestepContext], None] | None - detailed_logging: bool - stdout_logging: bool - def __init__(self, engine_ctx: gridfire._gridfire.engine.scratchpads.StateBlob) -> None: - ... - def clear_context(self) -> None: - ... - def has_context(self) -> bool: - ... - def init(self) -> None: - ... - def init_context(self) -> None: - ... - def reset_all(self) -> None: - ... - def reset_cvode(self) -> None: - ... - def reset_user(self) -> None: - ... - @property - def J(self) -> _generic_SUNMatrix: - ... - @property - def LS(self) -> _generic_SUNLinearSolver: - ... - @property - def Y(self) -> _generic_N_Vector: - ... - @property - def YErr(self) -> _generic_N_Vector: - ... - @property - def abs_tol(self) -> float: - ... - @abs_tol.setter - def abs_tol(self, arg1: typing.SupportsFloat) -> None: - ... - @property - def cvode_mem(self) -> types.CapsuleType: - ... - @property - def engine_ctx(self) -> gridfire._gridfire.engine.scratchpads.StateBlob: - ... - @property - def num_steps(self) -> int: - ... - @property - def rel_tol(self) -> float: - ... - @rel_tol.setter - def rel_tol(self, arg1: typing.SupportsFloat) -> None: - ... - @property - def sun_ctx(self) -> SUNContext_: - ... -class PointSolverTimestepContext: - @property - def T9(self) -> float: - ... - @property - def currentConvergenceFailures(self) -> int: - ... - @property - def currentNonlinearIterations(self) -> int: - ... - @property - def dt(self) -> float: - ... - @property - def engine(self) -> gridfire._gridfire.engine.DynamicEngine: - ... - @property - def last_step_time(self) -> float: - ... - @property - def networkSpecies(self) -> list[fourdst._phys.atomic.Species]: - ... - @property - def num_steps(self) -> int: - ... - @property - def rho(self) -> float: - ... - @property - def state(self) -> list[float]: - ... - @property - def state_ctx(self) -> gridfire._gridfire.engine.scratchpads.StateBlob: - ... - @property - def t(self) -> float: - ... -class SingleZoneDynamicNetworkSolver: - def evaluate(self, solver_ctx: SolverContextBase, netIn: gridfire._gridfire.type.NetIn) -> gridfire._gridfire.type.NetOut: - """ - evaluate the dynamic engine using the dynamic engine class for a single zone - """ -class SolverContextBase: - pass diff --git a/stubs/gridfiregridfire/_gridfire/type.pyi b/stubs/gridfiregridfire/_gridfire/type.pyi deleted file mode 100644 index 739086da..00000000 --- a/stubs/gridfiregridfire/_gridfire/type.pyi +++ /dev/null @@ -1,67 +0,0 @@ -""" -GridFire type bindings -""" -from __future__ import annotations -import fourdst._phys.composition -import typing -__all__: list[str] = ['NetIn', 'NetOut'] -class NetIn: - composition: fourdst._phys.composition.Composition - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - @property - def density(self) -> float: - ... - @density.setter - def density(self, arg0: typing.SupportsFloat) -> None: - ... - @property - def dt0(self) -> float: - ... - @dt0.setter - def dt0(self, arg0: typing.SupportsFloat) -> None: - ... - @property - def energy(self) -> float: - ... - @energy.setter - def energy(self, arg0: typing.SupportsFloat) -> None: - ... - @property - def tMax(self) -> float: - ... - @tMax.setter - def tMax(self, arg0: typing.SupportsFloat) -> None: - ... - @property - def temperature(self) -> float: - ... - @temperature.setter - def temperature(self, arg0: typing.SupportsFloat) -> None: - ... -class NetOut: - def __repr__(self) -> str: - ... - @property - def composition(self) -> fourdst._phys.composition.Composition: - ... - @property - def dEps_dRho(self) -> float: - ... - @property - def dEps_dT(self) -> float: - ... - @property - def energy(self) -> float: - ... - @property - def num_steps(self) -> int: - ... - @property - def specific_neutrino_energy_loss(self) -> float: - ... - @property - def specific_neutrino_flux(self) -> float: - ... diff --git a/stubs/gridfiregridfire/_gridfire/utils/__init__.pyi b/stubs/gridfiregridfire/_gridfire/utils/__init__.pyi deleted file mode 100644 index 0a86e92c..00000000 --- a/stubs/gridfiregridfire/_gridfire/utils/__init__.pyi +++ /dev/null @@ -1,18 +0,0 @@ -""" -GridFire utility method bindings -""" -from __future__ import annotations -import fourdst._phys.composition -import gridfire._gridfire.engine -import gridfire._gridfire.engine.scratchpads -import typing -from . import hashing -__all__: list[str] = ['formatNuclearTimescaleLogString', 'hash_atomic', 'hash_reaction', 'hashing'] -def formatNuclearTimescaleLogString(ctx: gridfire._gridfire.engine.scratchpads.StateBlob, engine: gridfire._gridfire.engine.DynamicEngine, Y: fourdst._phys.composition.Composition, T9: typing.SupportsFloat, rho: typing.SupportsFloat) -> str: - """ - Format a string for logging nuclear timescales based on temperature, density, and energy generation rate. - """ -def hash_atomic(a: typing.SupportsInt, z: typing.SupportsInt) -> int: - ... -def hash_reaction(reaction: ...) -> int: - ... diff --git a/stubs/gridfiregridfire/_gridfire/utils/hashing/__init__.pyi b/stubs/gridfiregridfire/_gridfire/utils/hashing/__init__.pyi deleted file mode 100644 index b85a400a..00000000 --- a/stubs/gridfiregridfire/_gridfire/utils/hashing/__init__.pyi +++ /dev/null @@ -1,6 +0,0 @@ -""" -module for gridfire hashing functions -""" -from __future__ import annotations -from . import reaction -__all__: list[str] = ['reaction'] diff --git a/stubs/gridfiregridfire/_gridfire/utils/hashing/reaction.pyi b/stubs/gridfiregridfire/_gridfire/utils/hashing/reaction.pyi deleted file mode 100644 index 131f482d..00000000 --- a/stubs/gridfiregridfire/_gridfire/utils/hashing/reaction.pyi +++ /dev/null @@ -1,12 +0,0 @@ -""" -utility module for hashing gridfire reaction functions -""" -from __future__ import annotations -import typing -__all__: list[str] = ['mix_species', 'multiset_combine', 'splitmix64'] -def mix_species(a: typing.SupportsInt, z: typing.SupportsInt) -> int: - ... -def multiset_combine(acc: typing.SupportsInt, x: typing.SupportsInt) -> int: - ... -def splitmix64(x: typing.SupportsInt) -> int: - ... diff --git a/tests/python/logger.py b/tests/python/logger.py new file mode 100644 index 00000000..dd264208 --- /dev/null +++ b/tests/python/logger.py @@ -0,0 +1,80 @@ +from enum import Enum + +from typing import Dict, List, Any, SupportsFloat +import json +from datetime import datetime +import os +import sys + +from gridfire.solver import PointSolverTimestepContext +from gridfire._gridfire.engine.scratchpads import StateBlob +import gridfire + +class LogEntries(Enum): + Step = "Step" + t = "t" + dt = "dt" + eps = "eps" + Composition = "Composition" + ReactionContributions = "ReactionContributions" + + +class StepLogger: + def __init__(self): + self.num_steps : int = 0 + self.steps : List[Dict[LogEntries, Any]] = [] + + def log_step(self, ctx: PointSolverTimestepContext): + comp_data: Dict[str, SupportsFloat] = {} + for species in ctx.engine.getNetworkSpecies(ctx.state_ctx): + sid = ctx.engine.getSpeciesIndex(ctx.state_ctx, species) + comp_data[species.name()] = ctx.state[sid] + entry : Dict[LogEntries, Any] = { + LogEntries.Step: ctx.num_steps, + LogEntries.t: ctx.t, + LogEntries.dt: ctx.dt, + LogEntries.eps: ctx.state[-1], + LogEntries.Composition: comp_data, + } + self.steps.append(entry) + self.num_steps += 1 + + def to_json(self, filename: str, **kwargs): + serializable_steps : List[Dict[str, Any]] = [ + { + LogEntries.Step.value: step[LogEntries.Step], + LogEntries.t.value: step[LogEntries.t], + LogEntries.dt.value: step[LogEntries.dt], + LogEntries.eps.value: step[LogEntries.eps], + LogEntries.Composition.value: step[LogEntries.Composition], + } + for step in self.steps + ] + out_data : Dict[str, Any] = { + "Metadata": { + "NumSteps": self.num_steps, + **kwargs, + "DateCreated": datetime.now().isoformat(), + "GridFireVersion": gridfire.__version__, + "Author": "Emily M. Boudreaux", + "OS": os.uname().sysname, + "ClangVersion": os.popen("clang --version").read().strip(), + "GccVersion": os.popen("gcc --version").read().strip(), + "PythonVersion": sys.version, + }, + "Steps": serializable_steps + } + with open(filename, 'w') as f: + json.dump(out_data, f, indent=4) + + + def summary(self) -> Dict[str, Any]: + if not self.steps: + return {} + final_step = self.steps[-1] + summary_data : Dict[str, Any] = { + "TotalSteps": self.num_steps, + "FinalTime": final_step[LogEntries.t], + "FinalComposition": final_step[LogEntries.Composition], + } + return summary_data diff --git a/validation/ManuscriptFigures/BBQCompare/bbq_compare.py b/validation/ManuscriptFigures/BBQCompare/bbq_compare.py new file mode 100644 index 00000000..b440b387 --- /dev/null +++ b/validation/ManuscriptFigures/BBQCompare/bbq_compare.py @@ -0,0 +1,343 @@ +import numpy as np +import pandas as pd +from IPython.core.pylabtools import figsize +from gridfire.solver import PointSolver, PointSolverContext +from gridfire.policy import MainSequencePolicy + +from gridfire.engine import GraphEngine, MultiscalePartitioningEngineView, AdaptiveEngineView +from gridfire.engine import NetworkBuildDepth + +from scipy.signal import find_peaks + +from gridfire.config import GridFireConfig + +from fourdst.composition import Composition +from scipy.integrate import trapezoid + +from fourdst.composition import CanonicalComposition +from fourdst.atomic import Species +from gridfire.type import NetIn, NetOut + +import matplotlib.pyplot as plt + + +## Note that my default style uses tex rendering. If you do not have tex installed +## simply comment out this line +plt.style.use("../utils/pub.mplstyle") + +from scipy.interpolate import interp1d, CubicSpline + +from enum import Enum + +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../utils"))) + +from logger import StepLogger + +class ShowSave(Enum): + SHOW="SHOW" + SAVE="SAVE" + + def __str__(self): + return self.value + +def rescale_composition(comp_ref : Composition, ZZs : float, Y_primordial : float = 0.248) -> Composition: + CC : CanonicalComposition = comp_ref.getCanonicalComposition() + + dY_dZ = (CC.Y - Y_primordial) / CC.Z + + Z_new = CC.Z * (10**ZZs) + Y_bulk_new = Y_primordial + (dY_dZ * Z_new) + X_new = 1.0 - Z_new - Y_bulk_new + + if X_new < 0: raise ValueError(f"ZZs={ZZs} yields unphysical composition (X < 0)") + + ratio_H = X_new / CC.X if CC.X > 0 else 0 + ratio_He = Y_bulk_new / CC.Y if CC.Y > 0 else 0 + ratio_Z = Z_new / CC.Z if CC.Z > 0 else 0 + + Y_new_list = [] + newComp : Composition = Composition() + s: Species + for s in comp_ref.getRegisteredSpecies(): + Xi_ref = comp_ref.getMassFraction(s) + + if s.el() == "H": + Xi_new = Xi_ref * ratio_H + elif s.el() == "He": + Xi_new = Xi_ref * ratio_He + else: + Xi_new = Xi_ref * ratio_Z + + Y = Xi_new / s.mass() + newComp.registerSpecies(s) + newComp.setMolarAbundance(s, Y) + + return newComp + +def init_composition(ZZs : float = 0) -> Composition: + Y_solar = [7.0262E-01, 1.7479E-06, 6.8955E-02, 2.5000E-04, 7.8554E-05, 6.0144E-04, 8.1031E-05, 2.1513E-05] + S = ["H-1", "He-3", "He-4", "C-12", "N-14", "O-16", "Ne-20", "Mg-24"] + return rescale_composition(Composition(S, Y_solar), ZZs) + + +def init_netIn(temp: float, rho: float, time: float, comp: Composition) -> NetIn: + n : NetIn = NetIn() + n.temperature = temp + n.density = rho + n.tMax = time + n.dt0 = 1e-12 + n.composition = comp + return n + +def years_to_seconds(years: float) -> float: + return years * 3.1536e7 + +def quantify_engine_error(df_base, df_approx, r_base: NetOut, r_approx: NetOut, species_list, floor_val=1e-30): + temporal_results = {} + final_state_results = {} + + t_base = df_base['t'].values + + tracking_cols = ['eps'] + species_list + + for col in tracking_cols: + if col not in df_base.columns or col not in df_approx.columns: + continue + + y_base = df_base[col].values + + interpolator = interp1d( + df_approx['t'], + df_approx[col], + kind='linear', + bounds_error=False, + fill_value=(df_approx[col].iloc[0], df_approx[col].iloc[-1]) + ) + + y_approx_interp = interpolator(t_base) + + abs_diff = np.abs(y_approx_interp - y_base) + + rel_diff = abs_diff / np.maximum(np.abs(y_base), floor_val) + + l2_diff = np.sqrt(trapezoid(abs_diff**2, x=t_base)) + l2_base = np.sqrt(trapezoid(y_base**2, x=t_base)) + + temporal_results[col] = { + 'Max Rel Error (Temporal)': np.max(rel_diff), + 'L2 Rel Error (Temporal)': l2_diff / max(l2_base, floor_val) + } + def calc_rel_err(val_approx, val_base): + return abs(val_approx - val_base) / max(abs(val_base), floor_val) + + final_state_results['Energy'] = { + 'Final Rel Error': calc_rel_err(r_approx.energy, r_base.energy) + } + + final_state_results['Neutrino Loss'] = { + 'Final Rel Error': calc_rel_err(r_approx.specific_neutrino_energy_loss, r_base.specific_neutrino_energy_loss) + } + + for sp in species_list: + try: + val_base = r_base.composition[sp] + val_approx = r_approx.composition[sp] + final_state_results[f"Final {sp}"] = { + 'Final Rel Error': calc_rel_err(val_approx, val_base) + } + except (KeyError, TypeError, AttributeError): + pass + + return pd.DataFrame(temporal_results).T, pd.DataFrame(final_state_results).T + +def main(save_show): + C = init_composition() + netIn = init_netIn(1.5e7, 1.6e2, years_to_seconds(10e9), C) + + + stepLogger = StepLogger() + + engine_graph = GraphEngine(C, 4) + + solver_ctx_graph = PointSolverContext(engine_graph.constructStateBlob()) + solver_ctx_graph.stdout_logging = True + solver_ctx_graph.callback = lambda ctx: stepLogger.log_step(ctx) + + solver_single = PointSolver(engine_graph) + + r_graph = solver_single.evaluate(solver_ctx_graph, netIn, False, False) + df_graph : pd.DataFrame = stepLogger.df + stepLogger.reset() + + QSE_engine = MultiscalePartitioningEngineView(engine_graph) + solver_ctx_graph_qse = PointSolverContext(QSE_engine.constructStateBlob(engine_graph.constructStateBlob())) + solver_ctx_graph_qse.stdout_logging = True + solver_ctx_graph_qse.callback = lambda ctx: stepLogger.log_step(ctx) + + solver_QSE = PointSolver(QSE_engine) + r_qse = solver_QSE.evaluate(solver_ctx_graph_qse, netIn, False, False) + + df_qse = stepLogger.df + stepLogger.reset() + + # policy = MainSequencePolicy(C) + # construct = policy.construct() + # solver_AE_QSE = PointSolver(construct.engine) + # solver_ctx_graph_qse_ae = PointSolverContext(construct.scratch_blob) + # solver_ctx_graph_qse_ae.callback = lambda ctx: stepLogger.log_step(ctx) + # solver_ctx_graph_qse_ae.stdout_logging = False + # + # r_ae_qse = solver_AE_QSE.evaluate(solver_ctx_graph_qse_ae, netIn, False, False) + # + # df_ae_qse = stepLogger.df + # stepLogger.reset() + + # fig, axs = plt.subplots(2, 1, figsize=(10, 7)) + S = ["H-1", "He-4", "C-12", "N-14", "O-16", "Mg-24"] + t = np.logspace(7, 17.5, 5000) + # for spID, sp in enumerate(S): + # gf = interp1d(df_graph.t, df_graph[sp]) + # qf = interp1d(df_qse.t, df_qse[sp]) + # + # ax = axs[0] + # ax.loglog(t, gf(t), 'o-', color=f"C{spID}") + # ax.loglog(t, qf(t), 'o', color=f"C{spID}", linestyle='dashed') + # + # ax.text(1, df_graph[sp].iloc[0]*1.1, sp, fontsize=12, color=f"C{spID}") + # + # ax = axs[1] + # ax.semilogx(t, (qf(t)-gf(t))/gf(t), color=f"C{spID}") + # + # axs[1].set_xlabel("Time [s]", fontsize=15) + # axs[0].set_ylabel("Molar Abundance [mol/g]", fontsize=15) + # axs[1].set_ylabel("Relative Error", fontsize=15) + # + # fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + # ge = interp1d(df_graph.t, df_graph.eps) + # qe = interp1d(df_qse.t, df_qse.eps) + # ax.loglog(t, np.abs((qe(t) - ge(t)) / ge(t))) + + temporal_err_qse, final_err_qse = quantify_engine_error( + df_base=df_graph, + df_approx=df_qse, + r_base=r_graph, + r_approx=r_qse, + species_list=S + ) + + qse_rel_eps_error = (df_graph.eps.iloc[-1] - df_qse.eps.iloc[-1])/df_qse.eps.iloc[-1] + + + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + # ax.semilogx(df_graph.t, df_graph["H-2"], 'o-', color='red') + # ax.semilogx(df_qse.t, df_qse["H-2"], 'o', color='blue', linestyle='dashed') + + graph_h1 = interp1d(df_graph.t, df_graph["H-1"]) + qse_h1 = interp1d(df_qse.t, df_qse["H-1"]) + graph_h2 = interp1d(df_graph.t, df_graph["H-2"]) + qse_h2 = interp1d(df_qse.t, df_qse["H-2"]) + + graph_DH = graph_h2(t)/graph_h1(t) + qse_DH = qse_h2(t)/qse_h1(t) + + dex_diff = np.abs(np.log10(graph_h2(t)) - np.log10(qse_h2(t))) + dex_dh_diff = np.abs(np.log10(graph_DH) - np.log10(qse_DH)) + # ax.semilogx(t, dex_diff, color='green') + ax.loglog(t, dex_dh_diff, color='black') + # ax.semilogx(t, qse_h2(t)/qse_h1(t), color='green') + ax.set_xlabel("Time [s]", fontsize=17) + ax.set_ylabel(r"$\left|\log_{10}\left(\frac{D}{H})\right)_{graph} - \log_{10}\left(\frac{D}{H}\right)_{qse}\right|$", fontsize=17) + + if save_show == ShowSave.SAVE: + plt.savefig("DHErr.pdf") + plt.close() + else: + plt.show() + + sums_qse = {} + sums_graph = {} + symbols = {} + + for sp, y in r_qse.composition: + z = sp.z() + symbols[z] = sp.el() + + y_graph = r_graph.composition.getMolarAbundance(sp) + + sums_qse[int(z)] = sums_qse.get(z, 0.0) + y + sums_graph[int(z)] = sums_graph.get(z, 0.0) + y_graph + + print(sums_qse[3]) + print(sums_graph[3]) + + z_list = sorted(sums_qse.keys()) + dex_list = [] + + symbols = [val for key, val in symbols.items()] + + for z in z_list: + total_qse = sums_qse[z] + total_graph = sums_graph[z] + + if total_graph > 1e-13 and total_qse > 1e-13: + offset = np.log10(total_qse / total_graph) + else: + if z >= 14: + offset = np.nan # Disable these for visualization, they all have abundances so small (on the order of -100 it doesnt matter) + else: + offset = 0.0 + + dex_list.append(offset) + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + data = sorted(zip(z_list, symbols, dex_list), key=lambda x: x[0]) + sorted_z, sorted_symbols, sorted_dex = zip(*data) + print(sorted_symbols) + print(sorted_dex) + # 2. Create the plot + fig, ax = plt.subplots(1, 1, figsize=(12, 6)) + print(sorted_symbols) + bars = ax.bar(sorted_symbols, sorted_dex, color='grey', edgecolor='grey', alpha=0.8) + + # 3. Add styling and labels + ax.axhline(0, color='black', linewidth=0.8) # Adds a clear baseline at 0 dex + ax.set_xlabel('Element', fontsize=25) + ax.set_ylabel('Offset [dex]', fontsize=25) + + if save_show == ShowSave.SAVE: + plt.savefig("DexElementalOffset.pdf") + plt.close() + + + e_graph = interp1d(df_graph.t, df_graph.eps) + e_qse = interp1d(df_qse.t, df_qse.eps) + + dex_eps_diff = np.log10(e_graph(t)) - np.log10(e_qse(t)) + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + ax.semilogx(t, dex_eps_diff, color='black') + ax.set_xlabel("Time [s]", fontsize=25) + ax.set_xlabel("Offset [dex]", fontsize=25) + + if save_show == ShowSave.SAVE: + plt.savefig("DexEpsOffset.pdf") + plt.close() + + + if save_show == ShowSave.SHOW: + plt.show() + + print("=== QSE ===") + print(temporal_err_qse) + print(final_err_qse) + print(f"Relative ε error: {qse_rel_eps_error}") + + print(f"Neutrino Loss Difference [dex]: {np.log10(r_graph.specific_neutrino_energy_loss) - np.log10(r_qse.specific_neutrino_energy_loss)}") + +if __name__ == "__main__": + import argparse + app = argparse.ArgumentParser(prog="Derivative Smoothness", description="Generate of view plots of derivative smoothness") + app.add_argument("-s", type=ShowSave, default=ShowSave.SHOW, choices=list(ShowSave), help="Whether to show or save the generated plot") + + args = app.parse_args() + main(args.s) diff --git a/validation/ManuscriptFigures/ErrorBudget/error_budget.py b/validation/ManuscriptFigures/ErrorBudget/error_budget.py new file mode 100644 index 00000000..85add2a5 --- /dev/null +++ b/validation/ManuscriptFigures/ErrorBudget/error_budget.py @@ -0,0 +1,343 @@ +import numpy as np +import pandas as pd +from IPython.core.pylabtools import figsize +from gridfire.solver import PointSolver, PointSolverContext +from gridfire.policy import MainSequencePolicy + +from gridfire.engine import GraphEngine, MultiscalePartitioningEngineView, AdaptiveEngineView +from gridfire.engine import NetworkBuildDepth + +from scipy.signal import find_peaks + +from gridfire.config import GridFireConfig + +from fourdst.composition import Composition +from scipy.integrate import trapezoid + +from fourdst.composition import CanonicalComposition +from fourdst.atomic import Species +from gridfire.type import NetIn, NetOut + +import matplotlib.pyplot as plt + + +## Note that my default style uses tex rendering. If you do not have tex installed +## simply comment out this line +plt.style.use("../utils/pub.mplstyle") + +from scipy.interpolate import interp1d, CubicSpline + +from enum import Enum + +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../utils"))) + +from logger import StepLogger + +class ShowSave(Enum): + SHOW="SHOW" + SAVE="SAVE" + + def __str__(self): + return self.value + +def rescale_composition(comp_ref : Composition, ZZs : float, Y_primordial : float = 0.248) -> Composition: + CC : CanonicalComposition = comp_ref.getCanonicalComposition() + + dY_dZ = (CC.Y - Y_primordial) / CC.Z + + Z_new = CC.Z * (10**ZZs) + Y_bulk_new = Y_primordial + (dY_dZ * Z_new) + X_new = 1.0 - Z_new - Y_bulk_new + + if X_new < 0: raise ValueError(f"ZZs={ZZs} yields unphysical composition (X < 0)") + + ratio_H = X_new / CC.X if CC.X > 0 else 0 + ratio_He = Y_bulk_new / CC.Y if CC.Y > 0 else 0 + ratio_Z = Z_new / CC.Z if CC.Z > 0 else 0 + + Y_new_list = [] + newComp : Composition = Composition() + s: Species + for s in comp_ref.getRegisteredSpecies(): + Xi_ref = comp_ref.getMassFraction(s) + + if s.el() == "H": + Xi_new = Xi_ref * ratio_H + elif s.el() == "He": + Xi_new = Xi_ref * ratio_He + else: + Xi_new = Xi_ref * ratio_Z + + Y = Xi_new / s.mass() + newComp.registerSpecies(s) + newComp.setMolarAbundance(s, Y) + + return newComp + +def init_composition(ZZs : float = 0) -> Composition: + Y_solar = [7.0262E-01, 1.7479E-06, 6.8955E-02, 2.5000E-04, 7.8554E-05, 6.0144E-04, 8.1031E-05, 2.1513E-05] + S = ["H-1", "He-3", "He-4", "C-12", "N-14", "O-16", "Ne-20", "Mg-24"] + return rescale_composition(Composition(S, Y_solar), ZZs) + + +def init_netIn(temp: float, rho: float, time: float, comp: Composition) -> NetIn: + n : NetIn = NetIn() + n.temperature = temp + n.density = rho + n.tMax = time + n.dt0 = 1e-12 + n.composition = comp + return n + +def years_to_seconds(years: float) -> float: + return years * 3.1536e7 + +def quantify_engine_error(df_base, df_approx, r_base: NetOut, r_approx: NetOut, species_list, floor_val=1e-30): + temporal_results = {} + final_state_results = {} + + t_base = df_base['t'].values + + tracking_cols = ['eps'] + species_list + + for col in tracking_cols: + if col not in df_base.columns or col not in df_approx.columns: + continue + + y_base = df_base[col].values + + interpolator = interp1d( + df_approx['t'], + df_approx[col], + kind='linear', + bounds_error=False, + fill_value=(df_approx[col].iloc[0], df_approx[col].iloc[-1]) + ) + + y_approx_interp = interpolator(t_base) + + abs_diff = np.abs(y_approx_interp - y_base) + + rel_diff = abs_diff / np.maximum(np.abs(y_base), floor_val) + + l2_diff = np.sqrt(trapezoid(abs_diff**2, x=t_base)) + l2_base = np.sqrt(trapezoid(y_base**2, x=t_base)) + + temporal_results[col] = { + 'Max Rel Error (Temporal)': np.max(rel_diff), + 'L2 Rel Error (Temporal)': l2_diff / max(l2_base, floor_val) + } + def calc_rel_err(val_approx, val_base): + return abs(val_approx - val_base) / max(abs(val_base), floor_val) + + final_state_results['Energy'] = { + 'Final Rel Error': calc_rel_err(r_approx.energy, r_base.energy) + } + + final_state_results['Neutrino Loss'] = { + 'Final Rel Error': calc_rel_err(r_approx.specific_neutrino_energy_loss, r_base.specific_neutrino_energy_loss) + } + + for sp in species_list: + try: + val_base = r_base.composition[sp] + val_approx = r_approx.composition[sp] + final_state_results[f"Final {sp}"] = { + 'Final Rel Error': calc_rel_err(val_approx, val_base) + } + except (KeyError, TypeError, AttributeError): + pass + + return pd.DataFrame(temporal_results).T, pd.DataFrame(final_state_results).T + +def main(save_show): + C = init_composition() + netIn = init_netIn(1.5e7, 1.6e2, years_to_seconds(10e9), C) + + + stepLogger = StepLogger() + + engine_graph = GraphEngine(C, 4) + + solver_ctx_graph = PointSolverContext(engine_graph.constructStateBlob()) + solver_ctx_graph.stdout_logging = True + solver_ctx_graph.callback = lambda ctx: stepLogger.log_step(ctx) + + solver_single = PointSolver(engine_graph) + + r_graph = solver_single.evaluate(solver_ctx_graph, netIn, False, False) + df_graph = stepLogger.df + stepLogger.reset() + + QSE_engine = MultiscalePartitioningEngineView(engine_graph) + solver_ctx_graph_qse = PointSolverContext(QSE_engine.constructStateBlob(engine_graph.constructStateBlob())) + solver_ctx_graph_qse.stdout_logging = True + solver_ctx_graph_qse.callback = lambda ctx: stepLogger.log_step(ctx) + + solver_QSE = PointSolver(QSE_engine) + r_qse = solver_QSE.evaluate(solver_ctx_graph_qse, netIn, False, False) + + df_qse = stepLogger.df + stepLogger.reset() + + # policy = MainSequencePolicy(C) + # construct = policy.construct() + # solver_AE_QSE = PointSolver(construct.engine) + # solver_ctx_graph_qse_ae = PointSolverContext(construct.scratch_blob) + # solver_ctx_graph_qse_ae.callback = lambda ctx: stepLogger.log_step(ctx) + # solver_ctx_graph_qse_ae.stdout_logging = False + # + # r_ae_qse = solver_AE_QSE.evaluate(solver_ctx_graph_qse_ae, netIn, False, False) + # + # df_ae_qse = stepLogger.df + # stepLogger.reset() + + # fig, axs = plt.subplots(2, 1, figsize=(10, 7)) + S = ["H-1", "He-4", "C-12", "N-14", "O-16", "Mg-24"] + t = np.logspace(7, 17.5, 5000) + # for spID, sp in enumerate(S): + # gf = interp1d(df_graph.t, df_graph[sp]) + # qf = interp1d(df_qse.t, df_qse[sp]) + # + # ax = axs[0] + # ax.loglog(t, gf(t), 'o-', color=f"C{spID}") + # ax.loglog(t, qf(t), 'o', color=f"C{spID}", linestyle='dashed') + # + # ax.text(1, df_graph[sp].iloc[0]*1.1, sp, fontsize=12, color=f"C{spID}") + # + # ax = axs[1] + # ax.semilogx(t, (qf(t)-gf(t))/gf(t), color=f"C{spID}") + # + # axs[1].set_xlabel("Time [s]", fontsize=15) + # axs[0].set_ylabel("Molar Abundance [mol/g]", fontsize=15) + # axs[1].set_ylabel("Relative Error", fontsize=15) + # + # fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + # ge = interp1d(df_graph.t, df_graph.eps) + # qe = interp1d(df_qse.t, df_qse.eps) + # ax.loglog(t, np.abs((qe(t) - ge(t)) / ge(t))) + + temporal_err_qse, final_err_qse = quantify_engine_error( + df_base=df_graph, + df_approx=df_qse, + r_base=r_graph, + r_approx=r_qse, + species_list=S + ) + + qse_rel_eps_error = (df_graph.eps.iloc[-1] - df_qse.eps.iloc[-1])/df_qse.eps.iloc[-1] + + + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + # ax.semilogx(df_graph.t, df_graph["H-2"], 'o-', color='red') + # ax.semilogx(df_qse.t, df_qse["H-2"], 'o', color='blue', linestyle='dashed') + + graph_h1 = interp1d(df_graph.t, df_graph["H-1"]) + qse_h1 = interp1d(df_qse.t, df_qse["H-1"]) + graph_h2 = interp1d(df_graph.t, df_graph["H-2"]) + qse_h2 = interp1d(df_qse.t, df_qse["H-2"]) + + graph_DH = graph_h2(t)/graph_h1(t) + qse_DH = qse_h2(t)/qse_h1(t) + + dex_diff = np.abs(np.log10(graph_h2(t)) - np.log10(qse_h2(t))) + dex_dh_diff = np.abs(np.log10(graph_DH) - np.log10(qse_DH)) + # ax.semilogx(t, dex_diff, color='green') + ax.loglog(t, dex_dh_diff, color='black') + # ax.semilogx(t, qse_h2(t)/qse_h1(t), color='green') + ax.set_xlabel("Time [s]", fontsize=17) + ax.set_ylabel(r"$\left|\log_{10}\left(\frac{D}{H})\right)_{graph} - \log_{10}\left(\frac{D}{H}\right)_{qse}\right|$", fontsize=17) + + if save_show == ShowSave.SAVE: + plt.savefig("DHErr.pdf") + plt.close() + else: + plt.show() + + sums_qse = {} + sums_graph = {} + symbols = {} + + for sp, y in r_qse.composition: + z = sp.z() + symbols[z] = sp.el() + + y_graph = r_graph.composition.getMolarAbundance(sp) + + sums_qse[int(z)] = sums_qse.get(z, 0.0) + y + sums_graph[int(z)] = sums_graph.get(z, 0.0) + y_graph + + print(sums_qse[3]) + print(sums_graph[3]) + + z_list = sorted(sums_qse.keys()) + dex_list = [] + + symbols = [val for key, val in symbols.items()] + + for z in z_list: + total_qse = sums_qse[z] + total_graph = sums_graph[z] + + if total_graph > 1e-13 and total_qse > 1e-13: + offset = np.log10(total_qse / total_graph) + else: + if z >= 14: + offset = np.nan # Disable these for visualization, they all have abundances so small (on the order of -100 it doesnt matter) + else: + offset = 0.0 + + dex_list.append(offset) + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + data = sorted(zip(z_list, symbols, dex_list), key=lambda x: x[0]) + sorted_z, sorted_symbols, sorted_dex = zip(*data) + print(sorted_symbols) + print(sorted_dex) + # 2. Create the plot + fig, ax = plt.subplots(1, 1, figsize=(12, 6)) + print(sorted_symbols) + bars = ax.bar(sorted_symbols, sorted_dex, color='grey', edgecolor='grey', alpha=0.8) + + # 3. Add styling and labels + ax.axhline(0, color='black', linewidth=0.8) # Adds a clear baseline at 0 dex + ax.set_xlabel('Element', fontsize=25) + ax.set_ylabel('Offset [dex]', fontsize=25) + + if save_show == ShowSave.SAVE: + plt.savefig("DexElementalOffset.pdf") + plt.close() + + + e_graph = interp1d(df_graph.t, df_graph.eps) + e_qse = interp1d(df_qse.t, df_qse.eps) + + dex_eps_diff = np.log10(e_graph(t)) - np.log10(e_qse(t)) + fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + ax.semilogx(t, dex_eps_diff, color='black') + ax.set_xlabel("Time [s]", fontsize=25) + ax.set_xlabel("Offset [dex]", fontsize=25) + + if save_show == ShowSave.SAVE: + plt.savefig("DexEpsOffset.pdf") + plt.close() + + + if save_show == ShowSave.SHOW: + plt.show() + + print("=== QSE ===") + print(temporal_err_qse) + print(final_err_qse) + print(f"Relative ε error: {qse_rel_eps_error}") + + print(f"Neutrino Loss Difference [dex]: {np.log10(r_graph.specific_neutrino_energy_loss) - np.log10(r_qse.specific_neutrino_energy_loss)}") + +if __name__ == "__main__": + import argparse + app = argparse.ArgumentParser(prog="Derivative Smoothness", description="Generate of view plots of derivative smoothness") + app.add_argument("-s", type=ShowSave, default=ShowSave.SHOW, choices=list(ShowSave), help="Whether to show or save the generated plot") + + args = app.parse_args() + main(args.s) diff --git a/validation/ManuscriptFigures/SmoothnessThroughPartitioning/testSmoothEnergyDerivaties.py b/validation/ManuscriptFigures/SmoothnessThroughPartitioning/testSmoothEnergyDerivaties.py new file mode 100644 index 00000000..130900de --- /dev/null +++ b/validation/ManuscriptFigures/SmoothnessThroughPartitioning/testSmoothEnergyDerivaties.py @@ -0,0 +1,227 @@ +import numpy as np +from IPython.core.pylabtools import figsize +from gridfire.solver import PointSolver, PointSolverContext +from gridfire.policy import MainSequencePolicy + +from scipy.signal import find_peaks + +from gridfire.config import GridFireConfig + +from fourdst.composition import Composition +from scipy.integrate import trapezoid + +from fourdst.composition import CanonicalComposition +from fourdst.atomic import Species +from gridfire.type import NetIn + +import matplotlib.pyplot as plt + + +## Note that my default style uses tex rendering. If you do not have tex installed +## simply comment out this line +plt.style.use("../utils/pub.mplstyle") + +from scipy.interpolate import interp1d, CubicSpline + +from enum import Enum + +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../utils"))) + +from logger import StepLogger + +class ShowSave(Enum): + SHOW="SHOW" + SAVE="SAVE" + + def __str__(self): + return self.value + +def rescale_composition(comp_ref : Composition, ZZs : float, Y_primordial : float = 0.248) -> Composition: + CC : CanonicalComposition = comp_ref.getCanonicalComposition() + + dY_dZ = (CC.Y - Y_primordial) / CC.Z + + Z_new = CC.Z * (10**ZZs) + Y_bulk_new = Y_primordial + (dY_dZ * Z_new) + X_new = 1.0 - Z_new - Y_bulk_new + + if X_new < 0: raise ValueError(f"ZZs={ZZs} yields unphysical composition (X < 0)") + + ratio_H = X_new / CC.X if CC.X > 0 else 0 + ratio_He = Y_bulk_new / CC.Y if CC.Y > 0 else 0 + ratio_Z = Z_new / CC.Z if CC.Z > 0 else 0 + + Y_new_list = [] + newComp : Composition = Composition() + s: Species + for s in comp_ref.getRegisteredSpecies(): + Xi_ref = comp_ref.getMassFraction(s) + + if s.el() == "H": + Xi_new = Xi_ref * ratio_H + elif s.el() == "He": + Xi_new = Xi_ref * ratio_He + else: + Xi_new = Xi_ref * ratio_Z + + Y = Xi_new / s.mass() + newComp.registerSpecies(s) + newComp.setMolarAbundance(s, Y) + + return newComp + +def init_composition(ZZs : float = 0) -> Composition: + Y_solar = [7.0262E-01, 9.7479E-06, 6.8955E-02, 2.5000E-04, 7.8554E-05, 6.0144E-04, 8.1031E-05, 2.1513E-05] + S = ["H-1", "He-3", "He-4", "C-12", "N-14", "O-16", "Ne-20", "Mg-24"] + return rescale_composition(Composition(S, Y_solar), ZZs) + + +def init_netIn(temp: float, rho: float, time: float, comp: Composition) -> NetIn: + n : NetIn = NetIn() + n.temperature = temp + n.density = rho + n.tMax = time + n.dt0 = 1e-12 + n.composition = comp + return n + +def years_to_seconds(years: float) -> float: + return years * 3.1536e7 + +def main(save_show): + C = init_composition() + netIn = init_netIn(1.5e7, 160, years_to_seconds(10e9), C) + policy = MainSequencePolicy(C) + construct = policy.construct() + + # 3e-8 and 1e-24 are the default tolerances we adopt as testing indicates it works well for + # main sequence evolution. We encorage researchers to trial various relative and + # absolute thresholds + # config = GridFireConfig() + # config.solver.pointSolver.trigger.boundaryFlux.relativeThreshold = 3e-8 + # config.solver.pointSolver.trigger.boundaryFlux.absoluteThreshold = 1e-24 + # solver = PointSolver(construct.engine, config) + + solver = PointSolver(construct.engine) + solver_ctx = PointSolverContext(construct.scratch_blob) + + stepLogger = StepLogger() + solver_ctx.callback = lambda ctx: stepLogger.log_step(ctx); + solver.evaluate(solver_ctx, netIn, False, False) + + df = stepLogger.df + + + fig, axs = plt.subplots(2, 1, figsize=(17, 10)) + + t = np.linspace(df.t.min(), df.t.max(), 1000) + + # Note we are not plotting Ne-20 as its molar abundance is so close to N-14 that it makes it hard to + # distinguish that species + PlottingSpecies = ["H-1", "He-3", "He-4", "C-12", "N-14", "O-16", "Mg-24"] + stable_index = 10 + + for sp in PlottingSpecies: + x = df.t[stable_index:] + y = df[sp][stable_index:] + axs[0].loglog(x, y) + axs[1].semilogx(x, np.gradient(y, x)) + + axs[0].text(x.iloc[0], y.iloc[0]*1.1, sp, fontsize=12) + + axs[0].set_ylabel("$Y$ [mol/g]", fontsize=23) + axs[1].set_ylabel(r"$\frac{dY}{dt}$ [mol/g/s]", fontsize=23) + axs[1].set_xlabel("Time [s]") + + ax_eps = axs[0].twinx() + ax_deps = axs[1].twinx() + + ax_eps.set_ylabel(r"$\epsilon$ [erg/g/s]", rotation=270, labelpad=25, fontsize=23) + ax_deps.set_ylabel(r"$\frac{d\epsilon}{dt}$ [erg/g/s$^2$]", rotation=270, labelpad=25, fontsize=23) + + ax_eps.axvline(1.008e+15, color='grey', linestyle='dashed') + ax_deps.axvline(1.008e+15, color='grey', linestyle='dashed') + + ax_eps.loglog(df.t[stable_index:], df.eps[stable_index:], color='red', linestyle='dashed') + ax_eps.text(df.t[stable_index:].iloc[0]*1.05, df.eps[stable_index:].iloc[0]*3, r"$\epsilon$", rotation=25, fontsize=20) + + ax_deps.semilogx(df.t[stable_index:], np.gradient(df.eps[stable_index:], df.t[stable_index:]), color='red', linestyle='dashed') + + + if save_show == ShowSave.SHOW: + plt.show() + else: + plt.savefig("smoothness_plot.pdf") + plt.close() + + + t = df.t.values + eps = df.eps.values + + # Use this plot to determine the index to test removal of + # fig, ax = plt.subplots(1, 1, figsize=(10, 7)) + # ax.plot(np.gradient(eps, t)) + # ax.grid() + # plt.show() + + idx = 156 + t1 = t + eps1 = eps + + t2 = np.delete(t, idx) + eps2 = np.delete(eps, idx) + + f_deps_1 = interp1d(t1, np.gradient(eps1, t1)) + f_deps_2 = interp1d(t2, np.gradient(eps2, t2)) + + int_deps_1 = trapezoid(f_deps_1(t), t) + int_deps_2 = trapezoid(f_deps_2(t), t) + + rel_err = (int_deps_1 - int_deps_2) / int_deps_2 + print(f"Rel Error: {rel_err:+0.3E}") + + window = 10 + indices = np.arange(idx - window, idx + window + 1) + indices_no_gap = np.delete(indices, window) + + clean_t = t[indices_no_gap] + clean_eps = eps[indices_no_gap] + spline = CubicSpline(clean_t, clean_eps) + + eps_predicted = spline(t[idx]) + eps_actual = eps[idx] + + absolute_jump = np.abs(eps_actual - eps_predicted) + relative_jump = absolute_jump / eps_actual + + print(f"Local Discontinuity at index {idx}: {relative_jump:.3%}") + + E_actual = trapezoid(eps, t) + + t_clean = np.delete(t, idx) + eps_clean_points = np.delete(eps, idx) + spline = CubicSpline(t_clean, eps_clean_points) + + eps_smooth = np.copy(eps) + eps_smooth[idx] = spline(t[idx]) + + E_smooth = trapezoid(eps_smooth, t) + + total_rel_error = (E_actual - E_smooth) / E_smooth + print(f"Total Relative Energy Error: {total_rel_error:+0.12E}") + + + + + + + +if __name__ == "__main__": + import argparse + app = argparse.ArgumentParser(prog="Derivative Smoothness", description="Generate of view plots of derivative smoothness") + app.add_argument("-s", type=ShowSave, default=ShowSave.SHOW, choices=list(ShowSave), help="Whether to show or save the generated plot") + + args = app.parse_args() + main(args.s) diff --git a/validation/ManuscriptFigures/utils/logger.py b/validation/ManuscriptFigures/utils/logger.py new file mode 100644 index 00000000..dd264208 --- /dev/null +++ b/validation/ManuscriptFigures/utils/logger.py @@ -0,0 +1,80 @@ +from enum import Enum + +from typing import Dict, List, Any, SupportsFloat +import json +from datetime import datetime +import os +import sys + +from gridfire.solver import PointSolverTimestepContext +from gridfire._gridfire.engine.scratchpads import StateBlob +import gridfire + +class LogEntries(Enum): + Step = "Step" + t = "t" + dt = "dt" + eps = "eps" + Composition = "Composition" + ReactionContributions = "ReactionContributions" + + +class StepLogger: + def __init__(self): + self.num_steps : int = 0 + self.steps : List[Dict[LogEntries, Any]] = [] + + def log_step(self, ctx: PointSolverTimestepContext): + comp_data: Dict[str, SupportsFloat] = {} + for species in ctx.engine.getNetworkSpecies(ctx.state_ctx): + sid = ctx.engine.getSpeciesIndex(ctx.state_ctx, species) + comp_data[species.name()] = ctx.state[sid] + entry : Dict[LogEntries, Any] = { + LogEntries.Step: ctx.num_steps, + LogEntries.t: ctx.t, + LogEntries.dt: ctx.dt, + LogEntries.eps: ctx.state[-1], + LogEntries.Composition: comp_data, + } + self.steps.append(entry) + self.num_steps += 1 + + def to_json(self, filename: str, **kwargs): + serializable_steps : List[Dict[str, Any]] = [ + { + LogEntries.Step.value: step[LogEntries.Step], + LogEntries.t.value: step[LogEntries.t], + LogEntries.dt.value: step[LogEntries.dt], + LogEntries.eps.value: step[LogEntries.eps], + LogEntries.Composition.value: step[LogEntries.Composition], + } + for step in self.steps + ] + out_data : Dict[str, Any] = { + "Metadata": { + "NumSteps": self.num_steps, + **kwargs, + "DateCreated": datetime.now().isoformat(), + "GridFireVersion": gridfire.__version__, + "Author": "Emily M. Boudreaux", + "OS": os.uname().sysname, + "ClangVersion": os.popen("clang --version").read().strip(), + "GccVersion": os.popen("gcc --version").read().strip(), + "PythonVersion": sys.version, + }, + "Steps": serializable_steps + } + with open(filename, 'w') as f: + json.dump(out_data, f, indent=4) + + + def summary(self) -> Dict[str, Any]: + if not self.steps: + return {} + final_step = self.steps[-1] + summary_data : Dict[str, Any] = { + "TotalSteps": self.num_steps, + "FinalTime": final_step[LogEntries.t], + "FinalComposition": final_step[LogEntries.Composition], + } + return summary_data diff --git a/validation/ManuscriptFigures/utils/pub.mplstyle b/validation/ManuscriptFigures/utils/pub.mplstyle new file mode 100644 index 00000000..e69de29b