Changeset 387


Ignore:
Timestamp:
03/22/23 17:00:13 (13 months ago)
Author:
dumas
Message:

use only for tracers : compile but not tested in a simulation

Location:
branches/GRISLIv3/SOURCES
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/GRISLIv3/SOURCES/celltest_tracer.f90

    r4 r387  
    55 
    66      !!  Find the cell origin index for the previous time_tra step 
    7       use module3d_phy 
    8       use tracer_vars 
     7      use module3d_phy, only:nx,ny,nz,e,dx,dy,uxbar,uybar,flotmx,flotmy,ux,uy,gzmx,gzmy 
     8      use tracer_vars, only:xgrid,ygrid 
    99      implicit none 
    1010 
  • branches/GRISLIv3/SOURCES/tracer_mod.f90

    r54 r387  
    2727module tracer_mod 
    2828 
    29   use module3d_phy 
    30   use tracer_vars             ! module de declaration de variables pour les traceurs 
     29  use module3d_phy, only:nx,ny,nz,itracer,e,time,dtt,num_param,num_rep_42,dx,dy,acc,H,dirforcage,num_forc,& 
     30       ux,uy,uzr,bmelt,S,flot,bm 
     31  use runparam, only:itracebug,num_tracebug,xmin,ymin,tbegin,tend 
     32  ! module de declaration de variables pour les traceurs 
     33  use tracer_vars, only:file_tr_dat,file_tr_out,file_tr_dep,file_tr_dat,coeft_tra,rappact_tra,nij,& 
     34       xgrid,ygrid,xdepk,ydepk,tdepk,nft_tra,tdate_tra,tpert_tra,accucumul,type_accum,time_max_accu,& 
     35       uxsave,uysave,uzrsave,xdep,ydep,tdep,freezeon,xdep_out,ydep_out,tdep_out 
    3136!cdc  use climat_perturb_mois_mod ! on en a besoin, notamment pour NFT 
    3237! afq, new version of tracer, does not require climat_perturb 
     
    7378  integer ::  err                  ! pour l'allocation des tableaux 
    7479  real :: bidon                    ! to skip sealevel change in fileforc 
    75    
     80  integer :: i,j,k 
    7681  integer :: kk   ! indice vertical pour definition de E, mais on veut conserver la valeur de k 
    7782!  real,dimension(nz) :: E   ! vertical coordinate in ice, scaled to H zeta 
     
    299304subroutine tracer 
    300305 
     306  integer :: i,j,k 
    301307  real,dimension(nz) :: E   ! vertical coordinate in ice, scaled to H zeta 
    302308 
  • branches/GRISLIv3/SOURCES/tracer_vars_mod.f90

    r54 r387  
    44module tracer_vars 
    55   
    6   use module3d_phy 
     6  use module3d_phy, only:nx,ny,nz,itracer 
    77   
    88  implicit none 
Note: See TracChangeset for help on using the changeset viewer.