Changeset 414 for branches/GRISLIv3


Ignore:
Timestamp:
04/07/23 15:26:01 (15 months ago)
Author:
dumas
Message:

use only in subroutine lineartemp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GRISLIv3/SOURCES/lineartemp-0.2.f90

    r113 r414  
    1 !> \file lineartemp-0.2.F 
     1!> \file lineartemp-0.2.f90 
    22!!  Linear temperature in ice 
    33!< 
     
    55!> SUBROUTINE: LINEARTEMP 
    66!! Calculate the linear temperature in ice 
    7 !! \author  ... 
    8 !! \date ... 
    9 !! @note Used modules: 
    10 !! @note    - use module3D_phy 
    11 !! @note    - use icetemp_declar 
    12 !< 
    137 
    14 subroutine LINEARTEMP 
     8subroutine lineartemp 
    159 
    1610  !     ********************************************************* 
     
    1812  !     ********************************************************* 
    1913 
    20   USE module3D_phy 
    21   USE icetemp_declar 
     14  use geography, only:nx,ny,nz,nzm 
     15  use module3D_phy, only:H1,H,B1,B,TG,bmelt,T,TS,tpmp,ghf 
     16  use icetemp_declar, only:Dzm,Cm 
     17   
    2218  implicit none 
    2319 
    24   !     character(len=80) :: filin 
    25  
    26   !     char SccsId[] = "@(#)lineartemp.f       1.3   date delta= 01/06/95    heure delta= 14:56:20    date lecture= 01/09/95" 
    27  
    28  
    29   !     filin='templin.res' 
    30  
    31  
    32   !     open(num_templin,file=filin) 
    33   !     write(num_templin,*) 'temperature initiale lineaire' 
    34  
     20  integer :: i,j,k 
    3521 
    3622  do I=1,NX 
     
    6248     end do 
    6349  end do 
    64   close(num_templin)  
    6550 
    6651 
    67 end subroutine LINEARTEMP 
     52end subroutine lineartemp 
Note: See TracChangeset for help on using the changeset viewer.