source: branches/GRISLIv3/SOURCES/Hemin40_files/fake-routines-hemin40_mod.f90 @ 446

Last change on this file since 446 was 446, checked in by aquiquet, 7 months ago

Cleaning branch: use only statement in module3D

File size: 1.0 KB
Line 
1!> \file fake-routines-hemin40_mod.f90
2!! Module qui contient des routines vides
3!<
4
5!> \namespace fake_nor
6!! Module qui contient des routines vides
7!! \author ...
8!! \date ...
9!! @note Used module
10!! @note   - use module3D_phy
11!! @note   - use deform_declar
12!<
13
14
15module fake_nor
16
17use module3d_phy
18use runparam, only: itracebug
19
20implicit none
21
22integer :: fake
23
24contains
25!____________________________________________________
26subroutine initial_heino
27
28if (itracebug.eq.1)  call tracebug(' Entree dans routine fake initial_heino')
29fake=1
30
31return
32end subroutine initial_heino
33
34!____________________________________________________
35subroutine track_change_T
36
37if (itracebug.eq.1)  call tracebug(' Entree dans routine fake track_change_T')
38fake=1
39return
40end subroutine track_change_T
41
42!____________________________________________________
43subroutine time_step_recul
44
45if (itracebug.eq.1)  call tracebug(' Entree dans routine fake time_step_recul')
46! quand on n'utilise pas le recul
47end subroutine time_step_recul
48
49end module fake_nor
50!
Note: See TracBrowser for help on using the repository browser.