Ignore:
Timestamp:
09/15/16 17:52:05 (8 years ago)
Author:
dumas
Message:

Bug correction in flottab : call to determin_tache suppressed | sealevel added in Netcdf output class 1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SOURCES/Ant40_files/lect-anteis_mod.f90

    r85 r86  
    114114     call Read_Ncdf_var('H',topo_ref,tab) 
    115115     H0(:,:)  = tab(:,:) 
    116 !cdc correction de 3 pts qui posent probleme (pente tres forte): 
    117      S0(38,53)=1400. 
    118      Bsoc0(38,53)=-1000. 
    119      H0(38,53)=S0(38,53)-Bsoc0(38,53) 
    120       
    121      S0(35,53)=1300. 
    122      Bsoc0(35,53)=-1000. 
    123      H0(35,53)=S0(35,53)-Bsoc0(35,53) 
    124       
    125      S0(35,56)=1200. 
    126      Bsoc0(35,56)=-1000. 
    127      H0(35,56)=S0(35,56)-Bsoc0(35,56) 
     116!~ !cdc correction de 3 pts qui posent probleme (pente tres forte): 
     117!~      S0(38,53)=1400. 
     118!~      Bsoc0(38,53)=-1000. 
     119!~      H0(38,53)=S0(38,53)-Bsoc0(38,53) 
     120!~       
     121!~      S0(35,53)=1300. 
     122!~      Bsoc0(35,53)=-1000. 
     123!~      H0(35,53)=S0(35,53)-Bsoc0(35,53) 
     124!~       
     125!~      S0(35,56)=1200. 
     126!~      Bsoc0(35,56)=-1000. 
     127!~      H0(35,56)=S0(35,56)-Bsoc0(35,56) 
    128128 
    129129!cdc correction point pole sud : 
     
    161161     H(:,:)  = tab(:,:) 
    162162      
    163 !cdc correction de 3 pts qui posent probleme (pente tres forte): 
    164 !~     do i=34,39 
    165 !~       do j=52,57 
    166 !~         print*,'i j', i, j 
    167 !~         print*,'SHB',S(i,j),Bsoc(i,j),H(i,j) 
    168 !~       enddo 
    169 !~    enddo 
    170  
    171      S(39,54)=1400. 
    172      Bsoc(39,54)=-1000. 
    173      H(39,54)=S(39,54)-Bsoc(39,54) 
    174       
    175      S(36,54)=1300. 
    176      Bsoc(36,54)=-1000. 
    177      H(36,54)=S(36,54)-Bsoc(36,54) 
    178       
    179      S(36,57)=1200. 
    180      Bsoc(36,57)=-1000. 
    181      H(36,57)=S(36,57)-Bsoc(36,57) 
     163!~ !cdc correction de 3 pts qui posent probleme (pente tres forte): 
     164!~      S(39,54)=1400. 
     165!~      Bsoc(39,54)=-1000. 
     166!~      H(39,54)=S(39,54)-Bsoc(39,54) 
     167!~       
     168!~      S(36,54)=1300. 
     169!~      Bsoc(36,54)=-1000. 
     170!~      H(36,54)=S(36,54)-Bsoc(36,54) 
     171!~       
     172!~      S(36,57)=1200. 
     173!~      Bsoc(36,57)=-1000. 
     174!~      H(36,57)=S(36,57)-Bsoc(36,57) 
    182175     
    183176!    S(71,71)=(S(71,70)+S(71,72)+S(70,71)+S(72,71))/4. 
     
    235228    do J=1,NY 
    236229       do I=1,NX 
    237           if ((BSOC(I,J)+H(I,J)*RO/ROW -SEALEVEL).LT.0.) then 
     230          if (((BSOC(I,J)+H(I,J)*RO/ROW -SEALEVEL).LT.0.).and.(H(I,J).gt.1.E-3)) then 
    238231             FLOT(I,J)=.TRUE. 
    239232          else 
Note: See TracChangeset for help on using the changeset viewer.