Changeset 38 for branches


Ignore:
Timestamp:
01/21/16 17:26:45 (8 years ago)
Author:
dumas
Message:

Merge avec la r37 du trunk

Location:
branches/iLoveclim
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/iLoveclim

    • Property svn:mergeinfo changed
      /trunkmerged: 37
  • branches/iLoveclim/SOURCES/3D-physique-gen_mod.f90

    r32 r38  
    192192  real ::  toblim                       !<  
    193193  real ::  moteurmax                    !<  
    194   real ::  betamax                      !<  
     194  real ::  betamax                      !< (Pa) frottement maxi sous les streams 
    195195  real ::  deltaacc                     !<  
    196196  real ::  pvimin                       !< valeur de pvi pour les noeuds fictifs 
  • branches/iLoveclim/SOURCES/dragging_hwat_sedim_mod.f90

    r14 r38  
    2626 
    2727real :: tostick   ! pour la glace posee 
    28 real :: tobmax    ! tobmax : (Pa) frottement maxi sous les streams 
    2928real :: tob_ile    ! pour les iles 
    3029real :: cry_lim=50.  ! courbure limite pour le suivi des fleuves 
     
    6362implicit none 
    6463  
    65 namelist/drag_hwat_sedim/file_sedim,hwatstream,cf,tobmax,toblim,seuil_hwater,seuil_sedim,seuil_neff,coef_sedim,coef_gz,coef_ile     
     64namelist/drag_hwat_sedim/file_sedim,hwatstream,cf,betamax,toblim,seuil_hwater,seuil_sedim,seuil_neff,coef_sedim,coef_gz,coef_ile     
    6665 
    6766if (itracebug.eq.1) write(num_tracebug,*)' dragging avec hwatermax' 
    6867 
     68iter_beta=0 
    6969 
    7070! formats pour les ecritures dans 42 
     
    8383write(num_rep_42,*) 'hwatstream     = ', hwatstream  
    8484write(num_rep_42,*) 'cf             = ', cf 
    85 write(num_rep_42,*) 'tobmax         = ', tobmax 
     85write(num_rep_42,*) 'betamax        = ', betamax 
    8686write(num_rep_42,*) 'toblim         = ', toblim 
    8787write(num_rep_42,*) 'seuil_hwater   = ', seuil_hwater 
     
    9797write(num_rep_42,428) '! cf coefficient de la loi de frottement fonction Neff' 
    9898write(num_rep_42,428) '! seulement pour les points cotiers' 
    99 write(num_rep_42,428) '! tobmax : (Pa) frottement maxi sous les streams ' 
     99write(num_rep_42,428) '! betamax : (Pa) frottement maxi sous les streams ' 
    100100write(num_rep_42,428) '! toblim : (Pa)  pour les iles ' 
    101101write(num_rep_42,428) '! seuil_hwater (m) : seuil hwater pour avoir glissement sur zone sediment' 
     
    108108 
    109109tostick=1.e5   ! valeurs pour les points non flgzmx 
    110 tob_ile=tobmax/2. 
     110tob_ile=betamax/2. 
    111111moteurmax=toblim 
    112112 
     
    129129 
    130130! lecture du fichier sediment : 
    131 open(20,file=TRIM(DIRNAMEINP)//trim(file_sedim)) !   'sediment_ij_hemin40.dat') 
    132 do j=1,ny 
    133    do i=1,nx 
    134       read(20,*),toto,toto,h_sedim(i,j) 
    135    enddo 
    136 enddo 
    137 h_sedim(:,:)=max(h_sedim(:,:),0.)  ! pas d'epaisseurs de sediments negatives 
    138     
     131!open(20,file=TRIM(DIRNAMEINP)//trim(file_sedim)) !   'sediment_ij_hemin40.dat') 
     132!do j=1,ny 
     133!   do i=1,nx 
     134!      read(20,*),toto,toto,h_sedim(i,j) 
     135!   enddo 
     136!enddo 
     137!h_sedim(:,:)=max(h_sedim(:,:),0.)  ! pas d'epaisseurs de sediments negatives 
     138h_sedim(:,:)=10.  
     139   
    139140      return 
    140141      end subroutine init_dragging 
Note: See TracChangeset for help on using the changeset viewer.