Ignore:
Timestamp:
Jul 4, 2014, 12:44:45 PM (10 years ago)
Author:
idelkadi
Message:

Rajout des directives OPENMP pour la lecture des cles et parametres de convection et wakes dans les fichier conv_param.data, ep_param.data et wake_param.data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/cv3_routines.F90

    r2039 r2078  
    55
    66SUBROUTINE cv3_param(nd, delt)
     7
     8  use mod_phys_lmdz_para
    79  IMPLICIT NONE
    810
     
    9193    betad = 10.0 ! original value (from convect 4.3)
    9294
     95   !$OMP MASTER
    9396    OPEN (99, FILE='conv_param.data', STATUS='old', FORM='formatted', ERR=9999)
    9497    READ (99, *, END=9998) dpbase
     
    124127    WRITE (*, *) 'tlcrit=', tlcrit
    125128! IM end: ajout fis. reglage ep
     129  !$OMP END MASTER
     130
     131   CALL bcast(dpbase)
     132   CALL bcast(pbcrit)
     133   CALL bcast(ptcrit)
     134   CALL bcast(sigdz)
     135   CALL bcast(spfac)
     136   CALL bcast(tau)
     137   CALL bcast(flag_wb)
     138   CALL bcast(wbmax)
     139
     140   CALL bcast(flag_epkeorig)
     141   CALL bcast(elcrit)
     142   CALL bcast(tlcrit)
    126143
    127144    first = .FALSE.
     
    129146  END IF ! (first)
    130147
    131 ! print*,'tau=',tau
    132148  beta = 1.0 - delt/tau
    133149  alpha1 = 1.5E-3
Note: See TracChangeset for help on using the changeset viewer.