From 8271b23e52831467404707179dd33e89ec9a08ae Mon Sep 17 00:00:00 2001 From: Niki Laptop <2212719@stud.hs-mannheim.de> Date: Wed, 18 Jun 2025 09:34:31 +0200 Subject: [PATCH] remove unused params --- src/utils/constants.jl | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/utils/constants.jl b/src/utils/constants.jl index 4220124..8403768 100644 --- a/src/utils/constants.jl +++ b/src/utils/constants.jl @@ -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