Changeset 81


Ignore:
Timestamp:
08/03/12 02:13:15 (12 years ago)
Author:
ymipsl
Message:

Add simplify physics for dcmip testcase

YM

Location:
codes/icosagcm/trunk/src
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/timeloop_gcm.f90

    r63 r81  
    1010  USE guided_mod 
    1111  USE advect_tracer_mod 
     12  USE physics_mod 
    1213   
    1314  IMPLICIT NONE 
     
    9899  CALL init_guided(dt) 
    99100  CALL init_advect_tracer(dt) 
     101  CALL init_physics(dt) 
    100102   
    101103  CALL etat0(f_ps,f_phis,f_theta_rhodz,f_u, f_q) 
     104  CALL transfert_request(f_q,req_i1)  
    102105 
    103106  DO it=0,itaumax 
     107 
    104108    PRINT *,"It No :",It,"   t :",dt*It 
    105109    IF (mod(it,itau_out)==0 ) THEN 
    106110      CALL writefield("q",f_q) 
     111      CALL update_time_counter(dt*it) 
    107112    ENDIF 
    108113     
     
    110115    CALL caldyn(it,f_phis,f_ps,f_theta_rhodz,f_u, f_dps, f_dtheta_rhodz, f_du) 
    111116    CALL advect_tracer(f_ps,f_u,f_q) 
    112  
     117    CALL physics(f_phis, f_ps, f_theta_rhodz, f_u, f_q) 
    113118     
    114119    SELECT CASE (TRIM(scheme)) 
     
    132137         
    133138    END SELECT 
    134  
     139     
    135140 ENDDO 
    136141   
Note: See TracChangeset for help on using the changeset viewer.