Skip to content

Commit

Permalink
Merge pull request #153 from pabloseleson/heat_transfer_time_step_fix
Browse files Browse the repository at this point in the history
Changed heat transfer time step in solver
  • Loading branch information
streeve authored Nov 22, 2024
2 parents ab7639e + b79a49d commit 788b280
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CabanaPD_Solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ class SolverElastic
{
if ( step % thermal_subcycle_steps == 0 )
computeHeatTransfer( *heat_transfer, *particles,
neigh_iter_tag{}, dt );
neigh_iter_tag{},
thermal_subcycle_steps * dt );
}

// Add non-force boundary condition.
Expand Down

0 comments on commit 788b280

Please sign in to comment.