code41.f90

来自「Fortran 90 and HPF Programs Related to t」· F90 代码 · 共 81 行

F90
81
字号
! Updated 10/24/2001.!!!!!!!!!!!!!!!!!!!!!!!!!!!!   Program 4.1   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!                                                                       !! Please Note:                                                          !!                                                                       !! (1) This computer program is written by Tao Pang in conjunction with  !!     his book, "An Introduction to Computational Physics," published   !!     by Cambridge University Press in 1997.                            !!                                                                       !! (2) No warranties, express or implied, are made for this program.     !!                                                                       !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!SUBROUTINE ELGS (A,N,INDX)!! Subroutine to perform the partial-pivoting Gaussian elimination.! A(N,N) is the original matrix in the input and transformed matrix! plus the pivoting element ratios below the diagonal in the output.! INDX(N) records the pivoting order.  Copyright (c) Tao Pang 2001.!  IMPLICIT NONE  INTEGER, INTENT (IN) :: N  INTEGER :: I,J,K,ITMP  INTEGER, INTENT (OUT), DIMENSION (N) :: INDX  REAL :: C1,PI,PI1,PJ  REAL, INTENT (INOUT), DIMENSION (N,N) :: A  REAL, DIMENSION (N) :: C!! Initialize the index!  DO I = 1, N    INDX(I) = I  END DO!! Find the rescaling factors, one from each row!  DO I = 1, N    C1= 0.0    DO J = 1, N      C1 = AMAX1(C1,ABS(A(I,J)))    END DO    C(I) = C1  END DO!! Search the pivoting (largest) element from each column!  DO J = 1, N-1    PI1 = 0.0    DO I = J, N      PI = ABS(A(INDX(I),J))/C(INDX(I))      IF (PI.GT.PI1) THEN        PI1 = PI        K   = I      ENDIF    END DO!! Interchange the rows via INDX(N) to record pivoting order!    ITMP    = INDX(J)    INDX(J) = INDX(K)    INDX(K) = ITMP    DO I = J+1, N      PJ  = A(INDX(I),J)/A(INDX(J),J)!! Record pivoting ratios below the diagonal!      A(INDX(I),J) = PJ!! Modify other elements accordingly!      DO K = J+1, N        A(INDX(I),K) = A(INDX(I),K)-PJ*A(INDX(J),K)      END DO    END DO  END DO!END SUBROUTINE ELGS

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?