Skip to content

Commit

Permalink
Move some files into respective folders (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
termi-official authored Jan 2, 2025
1 parent 6d17e0a commit 9e47a94
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/Thunderbolt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ import GPUArraysCore: AbstractGPUVector, AbstractGPUArray
import Adapt:
Adapt, adapt_structure, adapt

include("logging.jl")

include("utils.jl")

include("mesh/meshes.jl")

include("transfer_operators.jl")
include("ferrite-addons/transfer_operators.jl")
include("ferrite-addons/gpu/gpugrid.jl")
include("ferrite-addons/gpu/gpudofhandler.jl")

# Note that some modules below have an "interface.jl" but this one has only a "common.jl".
# This is simply because there is no modeling interface, but just individual physics modules and couplers.
Expand All @@ -73,24 +74,23 @@ include("discretization/interface.jl")
include("discretization/fem.jl")
include("discretization/operator.jl")

include("solver/logging.jl")
include("solver/interface.jl")
include("solver/linear.jl")
include("solver/nonlinear.jl")
include("solver/time_integration.jl")


include("processing/ecg.jl")
include("modeling/electrophysiology/ecg.jl")

include("io.jl")
include("ferrite-addons/io.jl")

include("disambiguation.jl")

# TODO where to put these?
include("modeling/rsafdq2022.jl")
include("discretization/rsafdq-operator.jl")

include("accelerator/grid.jl")
include("accelerator/dofhandler.jl")

# TODO put exports into the individual submodules above!
export
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ module FerriteUtils
include("ferrite-addons/PR883.jl")
end

include("collections.jl")
include("quadrature_iterator.jl")
include("ferrite-addons/collections.jl")
include("ferrite-addons/quadrature_iterator.jl")

function celldofsview(dh::DofHandler, i::Int)
ndofs = ndofs_per_cell(dh, i)
Expand Down

0 comments on commit 9e47a94

Please sign in to comment.