Ignore:
Timestamp:
10/16/17 15:22:59 (7 years ago)
Author:
dubos
Message:

devel : multiplicative factor in flux/wind reconstructions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/devel/src/diagnostics/wind.F90

    r585 r587  
    5353  REAL(rstd) :: ucenter(iim*jjm,llm,3) 
    5454  INTEGER :: ij,l 
    55   REAL(rstd) :: ue_le, cx,cy,cz, ux,uy,uz 
     55  REAL(rstd), PARAMETER :: scale=1. 
     56  REAL(rstd) :: fac, ue_le, cx,cy,cz, ux,uy,uz 
    5657#include "../kernels/wind_centered.k90" 
    5758 END SUBROUTINE compute_wind_centered 
    5859  
    59   SUBROUTINE compute_flux_centered(ue,ucenter) 
     60  SUBROUTINE compute_flux_centered(scale,ue,ucenter) 
     61  REAL(rstd), INTENT(IN) :: scale 
    6062  REAL(rstd) :: ue(3*iim*jjm,llm) 
    6163  REAL(rstd) :: ucenter(iim*jjm,llm,3) 
    6264  INTEGER :: ij,l 
    63   REAL(rstd) :: ue_le, cx,cy,cz, ux,uy,uz 
     65  REAL(rstd) :: fac, ue_le, cx,cy,cz, ux,uy,uz 
    6466#include "../kernels/flux_centered.k90" 
    6567  END SUBROUTINE compute_flux_centered 
Note: See TracChangeset for help on using the changeset viewer.