Changes between Version 10 and Version 11 of Branches/Driver_Atm_Lev


Ignore:
Timestamp:
2012-06-05T10:22:07+02:00 (12 years ago)
Author:
jpolcher
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Branches/Driver_Atm_Lev

    v10 v11  
    7474We will test for the following variables in the forcing file : 
    7575 
    76 === Sigma and Sigma_uv=== 
     76=== Sigma and Sigma_uv === 
    7777 
    7878Expected is one real value which allows to compute the height of the first level with the following formula : 
    7979 
    8080zlev_vec(i,j) = rau(i,j) * cte_grav * (psurf(i,j) - Sigma * psurf(i,j)) 
     81 
    8182zlevuv_vec() = rau(i,j) * cte_grav * (psurf(i,j) - Sigma_uv * psurf(i,j)) 
    8283 
     
    8889 
    8990zlev_vec(i,j) = rau(i,j) * cte_grav * (psurf(i,j) - (HybSigA + HybSigB * psurf(i,j))) 
     91 
    9092zlevuv_vec(i,j) = rau(i,j) * cte_grav * (psurf(i,j) - (HybSigA_uv + HybSigB_uv * psurf(i,j))) 
    9193 
     
    9799 
    98100The following assignation will be done for the values read at each forcing time step : 
     101 
    99102zlev_vec(i,j) = Levles(i,j) 
    100103 
    101104If levels_uv is present : 
    102 zlevuv_vec(i,j) = levels_uv(i,j) 
     105 
     106   zlevuv_vec(i,j) = levels_uv(i,j) 
     107 
    103108Else : 
    104 zlevuv_vec(i,j) = levels(i,j) 
     109 
     110   zlevuv_vec(i,j) = levels(i,j) 
    105111 
    106112=== Height_Lev1 and Height_Levuv === 
     
    110116The following assignations will be done : 
    111117 
    112 lev_vec(i,j) = Levles(i,j) 
     118zlev_vec(i,j) = Height_Lev1 
    113119 
    114 If levels_uv is present : 
    115 zlevuv_vec(i,j) = levels_uv(i,j) 
     120If Height_Levuv is present : 
     121 
     122   zlevuv_vec(i,j) = Height_Levuv 
     123 
    116124Else : 
    117 zlevuv_vec(i,j) = levels(i,j) 
     125 
     126   zlevuv_vec(i,j) = Height_Lev1 
    118127 
    119128