mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Merge pull request #1141 from liangjg/assm_depletion
Differentiate material internally and allow for power density in depletion
This commit is contained in:
commit
b7cbaaa808
8 changed files with 89 additions and 21 deletions
|
|
@ -37,7 +37,7 @@ public:
|
|||
Timer() {};
|
||||
|
||||
//! Start running the timer
|
||||
void start ();
|
||||
void start();
|
||||
|
||||
//! Get total elapsed time in seconds
|
||||
//! \return Elapsed time in [s]
|
||||
|
|
@ -52,7 +52,7 @@ public:
|
|||
private:
|
||||
bool running_ {false}; //!< is timer running?
|
||||
std::chrono::time_point<clock> start_; //!< starting point for clock
|
||||
double elapsed_ {0.0}; //!< elasped time in [s]
|
||||
double elapsed_ {0.0}; //!< elapsed time in [s]
|
||||
};
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue