Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cmake/OpenFMSSources.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ set(OPENFMS_CORE_SOURCES
src/particle_types.f90
src/read_geometry.f90
src/read_namelist.f90
src/remove_dead.f90
src/shutdown.f90
)
4 changes: 2 additions & 2 deletions src/dynamics.f90
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
!! @ingroup propagation
!<
recursive subroutine FMS_Dynamics(Bundle, Timestep, GoalTime)
use FMSModule, only: FMS_Shutdown, FMS_RemoveDead
use FMSModule, only: FMS_Shutdown
use GlobalModule, only: DefReal, DefInt, FPZero, fmiOut, &
& FMS_StepRejected, FMS_PrintMessg, FMSWorkingDir, FMS_RejectStep, &
& fmzWriteEveryStep, gldCoupTimeStep, &
& gldCurrentTStep, gldTimeStep, gldMinTimeStep, &
& glzStochastic, glnStepsRejected, FMS_DieError
use BundleModule
use BundleIOModule, only: FMS_Output
use SelectionModule, only: FMS_StochasticCollapse
use SelectionModule, only: FMS_StochasticCollapse, FMS_RemoveDead
use RestartModule, only: PutRestart
use PropagationModule, only: FMS_Monitor
implicit none
Expand Down
5 changes: 0 additions & 5 deletions src/fortran_interfaces.inc
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
real (kind=DefReal) :: SimulationTIme
end subroutine FMS_ReadNameList

subroutine FMS_RemoveDead(B1)
use BundleModule
type(T_TrajectoryBundle), intent(inout) :: B1
end subroutine FMS_RemoveDead

subroutine FMS_Shutdown(B1, T1, terminate)
use TrajectoryModule
use BundleModule
Expand Down
4 changes: 2 additions & 2 deletions src/modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ BundleIOModule.o: BundleIOModule.f90 BundleCalcsModule.o BundleModule.o \
SMDModule.o OverlapModule.o SpawnModule.o

SelectionModule.o: SelectionModule.f90 GlobalModule.o RandomModule.o OverlapModule.o \
TrajectoryModule.o BundleModule.o BundleCalcsModule.o
TrajectoryModule.o BundleModule.o BundleCalcsModule.o SpawnModule.o

SpawnModule.o: SpawnModule.f90 GlobalModule.o SelectionModule.o FMSModule.o \
SpawnModule.o: SpawnModule.f90 GlobalModule.o FMSModule.o \
TrajectoryModule.o TrajectoryCalcsModule.o TrajectoryIOModule.o \
BundleModule.o BundleCalcsModule.o OverlapModule.o VerletModule.o

Expand Down
Loading
Loading