Ignore:
Timestamp:
Jul 24, 2024, 2:54:37 PM (2 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move ismin, ismax, minmax into new lmdz_libmath.f90
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3dmem/friction_loc.f90

    r5113 r5116  
    4545  CHARACTER(len=80) :: abort_message
    4646!$OMP THREADPRIVATE(firstcall,friction_type)
    47   integer :: jjb,jje
     47  INTEGER :: jjb,jje
    4848
    4949!$OMP SINGLE
     
    5151    ! set friction type
    5252    CALL getin("friction_type",friction_type)
    53     if ((friction_type<0).or.(friction_type>1)) then
     53    if ((friction_type<0).or.(friction_type>1)) THEN
    5454      abort_message="wrong friction type"
    55       write(lunout,*)'Friction: wrong friction type',friction_type
     55      WRITE(lunout,*)'Friction: wrong friction type',friction_type
    5656      CALL abort_gcm(modname,abort_message,42)
    5757    endif
     
    9999  !   les deux composantes du vent au pole sont obtenues comme
    100100  !   premiers modes de fourier de v pres du pole
    101   if (pole_nord) then
    102 
     101  if (pole_nord) THEN
    103102    upoln=0.
    104103    vpoln=0.
     
    119118  endif
    120119
    121   if (pole_sud) then
    122 
     120  if (pole_sud) THEN
    123121    upols=0.
    124122    vpols=0.
     
    167165  endif ! of if (friction_type.eq.0)
    168166
    169   if (friction_type==1) then
     167  if (friction_type==1) THEN
    170168   ! for ucov()
    171169    jjb=jj_begin
Note: See TracChangeset for help on using the changeset viewer.