source: trunk/SOURCES/Heino_files/prop-therm-Heino_mod.f90 @ 159

Last change on this file since 159 was 4, checked in by dumas, 10 years ago

initial import GRISLI trunk

File size: 936 bytes
Line 
1!> \file prop-therm-Heino_mod.f90
2!! Module qui definit les proprietes thermiques de la glace
3!<
4
5!> \namespace  prop_therm_ice_heino
6!! Définit les proprietes thermiques de la glace
7!! \author ...
8!! \date ...
9!! @note Used module
10!! @note   - use module3D_phy
11!<
12
13module prop_therm_ice_heino
14
15
16! défini les proprietes thermiques de la glace
17! bloc qui était avant dans icetemp
18
19
20use module3D_phy
21
22contains
23subroutine thermal_prop
24
25
26do k=1,nz 
27  do j=1,ny
28    do i=1,nx
29
30!  temperature de fusion:TPMP (en deg C)
31!  capacite calorifique : CP en J/Kg/K puis multiplie par ro en J/m3/K
32!  conductivite : CT  en J/m/K/an
33!   Attention pour la conductivite c'est la formule de Yin-Chao Yen
34
35
36       tpmp(i,j,k)=-0.00087*(k-1)*de*h(i,j)
37       cp(i,j,k)=2009.*ro ! en J/m3/K
38!       ct(i,j,k)=6.627e7 !en J/m/K/an
39       ct(i,j,k)=2.1*secyear
40 
41       end do
42    end do
43 end do
44
45end subroutine thermal_prop
46end module prop_therm_ice_heino
Note: See TracBrowser for help on using the repository browser.