Skip to content

Commit

Permalink
remove references to month when it should be timestep (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearkatie authored Jul 8, 2022
1 parent 57ea917 commit 00614a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/enrichment.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class Enrichment

#pragma cyclus var { \
"default": 1e299, \
"tooltip": "SWU capacity (kgSWU/month)", \
"tooltip": "SWU capacity (kgSWU/timestep)", \
"uilabel": "SWU Capacity", \
"uitype": "range", \
"range": [0.0, 1e299], \
Expand Down
2 changes: 1 addition & 1 deletion src/sink.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void Sink::Tock() {
// For now, lets just print out what we have at each timestep.
LOG(cyclus::LEV_INFO4, "SnkFac") << "Sink " << this->id()
<< " is holding " << inventory.quantity()
<< " units of material at the close of month "
<< " units of material at the close of timestep "
<< context()->time() << ".";
LOG(cyclus::LEV_INFO3, "SnkFac") << "}";
}
Expand Down

0 comments on commit 00614a2

Please sign in to comment.