source: branches/GRISLIv3/SOURCES/Ant40_files/fake-routines-ant_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: 765 bytes
Line 
1!> \file fake-routines-ant_mod.f90
2!! Module qui contient des routines vides
3!<
4
5!> \namespace fake_ant
6!! Module qui contient des routines vides
7!! \author ...
8!! \date ...
9!! @note Used module
10!! @note   - use module3D_phy
11!<
12
13module fake_ant
14
15use module3d_phy
16use runparam, only: itracebug
17
18implicit none
19
20integer :: fake
21
22contains
23!____________________________________________________
24subroutine initial_heino
25
26if (itracebug.eq.1)  call tracebug(' Entree dans routine fake initial_heino')
27fake=1
28
29return
30end subroutine initial_heino
31
32!____________________________________________________
33subroutine track_change_T
34
35if (itracebug.eq.1)  call tracebug(' Entree dans routine fake track_change_T')
36fake=1
37return
38end subroutine track_change_T
39
40end module fake_ant
41!
Note: See TracBrowser for help on using the repository browser.