source: trunk/SOURCES/Hudson_files/prop-therm-hudson_mod.f90 @ 334

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

initial import GRISLI trunk

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