Skip to content

Commit

Permalink
Updates comments
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Jan 10, 2018
1 parent c43d765 commit 96ba764
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/timesteppers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ end
mutable struct ForwardEulerTimeStepper{dim} <: AbstractTimeStepper
step::Int
dt::Float64
N::Array{Complex{Float64},dim} # Nonlinear term
N::Array{Complex{Float64},dim} # Explicit linear and nonlinear terms
end

function ForwardEulerTimeStepper(dt::Float64, v::AbstractVars)
Expand Down Expand Up @@ -164,7 +164,7 @@ end
mutable struct FilteredForwardEulerTimeStepper{dim} <: AbstractTimeStepper
step::Int
dt::Float64
N::Array{Complex{Float64},dim} # Nonlinear term
N::Array{Complex{Float64},dim} # Explicit linear and nonlinear terms
filter::Array{Float64,dim} # Filter for solution
end

Expand Down Expand Up @@ -213,7 +213,7 @@ end


# ETDRK4 ----------------------------------------------------------------------
# The Rolls-Royce of time-stepping. Exact treatment of linear part of
# The Rolls-Royce of time-stepping. Exact treatment of the implicit linear part of
# the equation, explicit and 4th-order accurate integration of nonlinear
# parts of equation.

Expand Down

0 comments on commit 96ba764

Please sign in to comment.