Skip to content

Commit

Permalink
Update heat_conduction.jl
Browse files Browse the repository at this point in the history
Update docstring
  • Loading branch information
MasanoriKanamaru committed Oct 14, 2023
1 parent d52b82c commit 5196f5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/heat_conduction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Calculate the temperature for the next time step based on 1D heat conduction equ
# Arguments
- `stpm` : Thermophysical model for a single asteroid
- `Δt` : Time step [sec]
"""
function update_temperature!(stpm::SingleTPM, Δt)
if stpm.SOLVER isa ForwardEulerSolver
Expand All @@ -32,7 +33,7 @@ Calculate the temperature for the next time step based on 1D heat conductivity e
# Arguments
- `btpm` : Thermophysical model for a binary asteroid
- `nₜ` : Index of the current time step
- `Δt` : Time step [sec]
"""
function update_temperature!(btpm::BinaryTPM, Δt)
update_temperature!(btpm.pri, Δt)
Expand Down

0 comments on commit 5196f5a

Please sign in to comment.