remove unused params

feat/docs
Nikola Sebastian Munder 2025-06-18 09:34:31 +02:00
parent ecaaef4623
commit 8271b23e52
1 changed files with 0 additions and 19 deletions

View File

@ -2,25 +2,6 @@
abstract type PDEParams end
struct FHNParams <: PDEParams
N::Int
dx::Float64 # grid spacing
Du::Float64
Dv::Float64
ϵ::Float64
a::Float64
b::Float64
end
struct GSParams <: PDEParams
N::Int # grid size
dx::Float64 # grid spacing
Du::Float64 # diffusion rate U
Dv::Float64 # diffusion rate V
F::Float64 # feed rate
k::Float64 # kill rate
end
struct CombinedPDEParams <: PDEParams
N::Int