source: branches/GRISLIv3/SOURCES/no_calving.f90 @ 483

Last change on this file since 483 was 420, checked in by dumas, 14 months ago

Use only in no_claving and no_ablation : compile but not tested

File size: 1.0 KB
Line 
1!> \file calving_frange.f90
2!! Module et routines qui calculent le calving avec la methode de Vincent
3!<
4
5
6!> \namespace module3D_phy
7!! Module et routines qui calculent le calving avec la methode de Vincent
8!! \author ...
9!! \date ...
10!! @note recopie direct de icethick5-ant. A revoir en particulier, accroche avec la glace posee
11!! @note Used modules
12!! @note   - use module3D_phy
13!! @todo il faudrait que le calving soit inactif dans les zones ou l epaisseur est imposee
14!<
15
16module no_calving
17
18  implicit none
19
20contains
21
22  !---------------------------------------------------------------------------------------
23  subroutine init_calving
24
25    use module3D_phy, only:calv
26
27    calv(:,:)=0. 
28
29  end subroutine init_calving
30  !---------------------------------------------------------------------------------------
31  subroutine calving
32
33    use module3D_phy, only: calv
34
35    calv(:,:)=0. 
36
37  end subroutine calving
38  !------------------------------------------------------------------------------------------
39end module no_calving
40
Note: See TracBrowser for help on using the repository browser.