Ignore:
Timestamp:
10/30/15 15:41:06 (9 years ago)
Author:
dubos
Message:

Progress towards NH

File:
1 edited

Legend:

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

    r362 r366  
    55 
    66  TYPE(t_field),POINTER,SAVE,PUBLIC :: f_geopot(:), f_q(:), & 
    7        f_rhodz(:), f_mass(:), f_massm1(:), f_massm2(:), f_dmass(:), & 
    8        f_phis(:), f_ps(:),f_psm1(:), f_psm2(:), f_dps(:), & 
    9        f_u(:),f_um1(:),f_um2(:), f_du(:), & ! previous state 
    10        f_theta_rhodz(:),f_theta_rhodzm1(:),f_theta_rhodzm2(:), f_dtheta_rhodz(:), & ! trends 
    11        f_hflux(:), f_wflux(:), f_hfluxt(:), f_wfluxt(:), & ! accumulated mass fluxes 
    12                                 ! slow/fast trend arrays for HEVI time scheme 
    13        f_dmass_slow(:,:), f_dps_slow(:,:), f_dtheta_rhodz_slow(:,:), & 
    14        f_du_slow(:,:), f_du_fast(:,:) 
     7       f_rhodz(:), f_mass(:), f_massm1(:), f_massm2(:), f_dmass(:), & ! current and previous time steps + tendency of mass, 
     8       f_phis(:), f_ps(:),f_psm1(:), f_psm2(:), f_dps(:), &           ! column-integrated mass 
     9       f_u(:),f_um1(:),f_um2(:), f_du(:), f_W(:), &                   ! 'horizontal' and vertical (NH) momentum 
     10       f_theta_rhodz(:),f_theta_rhodzm1(:),f_theta_rhodzm2(:), f_dtheta_rhodz(:), & ! mass-weighted theta/entropy 
     11       f_hflux(:), f_wflux(:), f_hfluxt(:), f_wfluxt(:), &            ! accumulated mass fluxes 
     12       f_du_slow(:,:), f_du_fast(:,:), &                              ! slow/fast trend arrays  
     13       f_dmass_slow(:,:), f_dps_slow(:,:), f_dtheta_rhodz_slow(:,:), &! for HEVI time scheme  
     14       f_dPhi_slow(:,:), f_dPhi_fast(:,:), &                          ! geopotential tendencies (NH) 
     15       f_dW_slow(:,:), f_dW_fast(:,:)                                 ! vertical momentum tendencies (NH) 
    1516 
    1617  INTEGER, PARAMETER, PUBLIC :: explicit=1, hevi=2, euler=1, rk4=2, mlf=3, rk25=4, ark23=6, ark33=7 
Note: See TracChangeset for help on using the changeset viewer.