Skip to content

Commit

Permalink
work towards core simulation. fission_rate to bison transfer is worki…
Browse files Browse the repository at this point in the history
…ng ref #1845

r17572
  • Loading branch information
friedmud authored and permcody committed Feb 14, 2014
1 parent 6e39868 commit 2763d7c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/src/multiapps/TransientMultiApp.C
Expand Up @@ -87,6 +87,8 @@ TransientMultiApp::solveStep()
Real
TransientMultiApp::computeDT()
{
std::cout<<"computeDT!!!"<<std::endl;

MPI_Comm swapped = Moose::swapLibMeshComm(_my_comm);

Real smallest_dt = std::numeric_limits<Real>::max();
Expand All @@ -96,6 +98,8 @@ TransientMultiApp::computeDT()
Transient * ex = _transient_executioners[i];
Real dt = ex->computeConstrainedDT();

std::cout<<"dt! "<<dt<<std::endl;

smallest_dt = std::min(dt, smallest_dt);
}

Expand All @@ -104,6 +108,7 @@ TransientMultiApp::computeDT()

Parallel::min(smallest_dt);

std::cout<<"Smallest dt: "<<smallest_dt<<std::endl;
return smallest_dt;
}

0 comments on commit 2763d7c

Please sign in to comment.