source: trunk/SOURCES/Snowball_files/massb_snowball_perturb.f90 @ 243

Last change on this file since 243 was 57, checked in by dumas, 8 years ago

Add Snowball configuration

File size: 568 bytes
Line 
1
2
3subroutine MASSB_ANTEIS_PERTURB ()
4
5
6  USE module3D_phy
7  USE CLIMAT_PERTURB_MOD
8
9  implicit none
10! C. DUMAS Oct 2008 : perturbation de Tann, Tjuly avec lapse rate
11! precip en exp de temp
12! on utilise TAFOR pour perturber la temp dans le temps
13   
14
15!     surface temperature et accumulation
16  do J=1,NY
17     do I=1,NX
18        Tann(i,j)=TA0(I,J)-0.00914*(S(i,j)-S0(I,J))+TAFOR
19        TJULY(I,J)=TJ0(I,J)-0.00914*(S(i,j)-S0(I,J))+TAFOR
20        ACC(I,J)=PRECIP0(I,J)*exp(rappact*(TANN(I,J)-TA0(I,J)))
21     end do
22  end do
23  return
24end subroutine MASSB_ANTEIS_PERTURB
Note: See TracBrowser for help on using the repository browser.