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/dyn3d/friction.F90

    r5113 r5116  
    4747    ! set friction type
    4848    CALL getin("friction_type", friction_type)
    49     if ((friction_type<0).or.(friction_type>1)) then
     49    if ((friction_type<0).or.(friction_type>1)) THEN
    5050      abort_message = "wrong friction type"
    51       write(lunout, *)'Friction: wrong friction type', friction_type
     51      WRITE(lunout, *)'Friction: wrong friction type', friction_type
    5252      CALL abort_gcm(modname, abort_message, 42)
    5353    endif
     
    5555  ENDIF
    5656
    57   if (friction_type==0) then
     57  if (friction_type==0) THEN
    5858    !   calcul des composantes au carre du vent naturel
    5959    do j = 1, jjp1
     
    118118  endif ! of if (friction_type.eq.0)
    119119
    120   if (friction_type==1) then
     120  if (friction_type==1) THEN
    121121    do l = 1, llm
    122122      ucov(:, :, l) = ucov(:, :, l) * (1. - pdt * kfrict(l))
Note: See TracChangeset for help on using the changeset viewer.