Merge pull request #1141 from liangjg/assm_depletion

Differentiate material internally and allow for power density in depletion
This commit is contained in:
Paul Romano 2019-01-02 13:52:46 -06:00 committed by GitHub
commit b7cbaaa808
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 89 additions and 21 deletions

View file

@ -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]
};
//==============================================================================