!> \file fake-routines-hemin40_mod.f90 !! Module qui contient des routines vides !< !> \namespace fake_nor !! Module qui contient des routines vides !! \author ... !! \date ... !! @note Used module !! @note - use module3D_phy !! @note - use deform_declar !< module fake_nor use module3d_phy use runparam, only: itracebug implicit none integer :: fake contains !____________________________________________________ subroutine initial_heino if (itracebug.eq.1) call tracebug(' Entree dans routine fake initial_heino') fake=1 return end subroutine initial_heino !____________________________________________________ subroutine track_change_T if (itracebug.eq.1) call tracebug(' Entree dans routine fake track_change_T') fake=1 return end subroutine track_change_T !____________________________________________________ subroutine time_step_recul if (itracebug.eq.1) call tracebug(' Entree dans routine fake time_step_recul') ! quand on n'utilise pas le recul end subroutine time_step_recul end module fake_nor !