module comsaison_h implicit none logical,save :: callsais integer,save :: isaison real,save :: dist_sol real,save :: declin real,save,allocatable :: mu0(:) real,save,allocatable :: fract(:) contains subroutine ini_comsaison_h(ngrid) implicit none integer,intent(in) :: ngrid ! number of atmospheric columns allocate(mu0(ngrid)) allocate(fract(ngrid)) end subroutine ini_comsaison_h end module comsaison_h