Changeset 5117 for LMDZ6/branches/Amaury_dev/libf/filtrez
- Timestamp:
- Jul 24, 2024, 4:23:34 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/filtrez/lmdz_filtreg.F90
r5116 r5117 78 78 INTEGER :: sdd1_type, sdd2_type 79 79 80 if(iim == 1) return ! no filtre in 2D y-z80 IF (iim == 1) return ! no filtre in 2D y-z 81 81 82 82 IF (first) THEN … … 89 89 ENDIF 90 90 91 IF(ifiltre==1. or.ifiltre==-1) &91 IF(ifiltre==1.OR.ifiltre==-1) & 92 92 stop 'Pas de transformee simple dans cette version' 93 93 … … 425 425 IMPLICIT NONE 426 426 ! Arguments: 427 integer, intent(in) :: N428 integer, intent(in) :: NP429 integer, intent(out) :: NROT430 real, intent(inout) :: A(NP, NP)431 real, intent(out) :: D(NP)432 real, intent(out) :: V(NP, NP)427 INTEGER, INTENT(IN) :: N 428 INTEGER, INTENT(IN) :: NP 429 INTEGER, INTENT(OUT) :: NROT 430 REAL, INTENT(INOUT) :: A(NP, NP) 431 REAL, INTENT(OUT) :: D(NP) 432 REAL, INTENT(OUT) :: V(NP, NP) 433 433 434 434 ! local variables: … … 562 562 INTEGER :: i, j 563 563 REAL :: sum 564 real, external :: ssum564 REAL, external :: ssum 565 565 do j = 1, im 566 566 do i = 1, im … … 631 631 !----------------------------------------------------------- 632 632 633 if(iim == 1) return ! No filtre in 2D y-z633 IF (iim == 1) return ! No filtre in 2D y-z 634 634 635 635 pi = 2. * ASIN(1.)
Note: See TracChangeset
for help on using the changeset viewer.