source: branches/GRISLIv3/SOURCES/Hemin15_files/fake-routines-hemin15_mod.f90 @ 483

Last change on this file since 483 was 483, checked in by aquiquet, 3 months ago

Cleaning branch: edit of fake modules

File size: 1020 bytes
Line 
1!> \file fake-routines-hemin15_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_hemin15
16
17use runparam, only: itracebug
18
19implicit none
20
21integer :: fake
22
23contains
24!____________________________________________________
25subroutine initial_heino
26
27if (itracebug.eq.1)  call tracebug(' Entree dans routine fake initial_heino')
28fake=1
29
30return
31end subroutine initial_heino
32
33!____________________________________________________
34subroutine track_change_T
35
36if (itracebug.eq.1)  call tracebug(' Entree dans routine fake track_change_T')
37fake=1
38return
39end subroutine track_change_T
40
41!____________________________________________________
42subroutine time_step_recul
43
44if (itracebug.eq.1)  call tracebug(' Entree dans routine fake time_step_recul')
45! quand on n'utilise pas le recul
46end subroutine time_step_recul
47
48end module fake_hemin15
49!
Note: See TracBrowser for help on using the repository browser.