37 INTEGER,
INTENT (INOUT) :: ifail
40 REAL (R8) :: dfun(
solver%nrho)
41 REAL (R8) :: intfun(
solver%nrho)
42 LOGICAL, parameter :: debug = .true.
48 choose_numerical_solver:
IF (
solver%TYPE.EQ.1)
THEN
52 ELSE IF (
solver%TYPE.EQ.2)
THEN
56 ELSE IF (
solver%TYPE.EQ.3)
THEN
60 ELSE IF (
solver%TYPE.EQ.4)
THEN
64 ELSE IF (
solver%TYPE.EQ.6)
THEN
72 ELSE IF (
solver%TYPE.EQ.9)
THEN
76 ELSE IF (
solver%TYPE.EQ.10)
THEN
80 ELSE IF (
solver%TYPE.EQ.11)
THEN
85 WRITE(*,*)
'Invalid SOLVER%TYPE = ',
solver%TYPE
86 END IF choose_numerical_solver
88 IF (ifail.GT.2) ifail = 0
93 check_derivative:
DO i = 1,
solver%NDIM
94 derivative_recalculate:
IF (
solver%DERIVATIVE_FLAG(i).EQ.1)
THEN
99 ELSE IF (
solver%DERIVATIVE_FLAG(i).EQ.2)
THEN
108 check_inner_boundary:
IF (
solver%V(i,1).NE.0.0_r8)
THEN
110 END IF check_inner_boundary
111 check_outer_boundary:
IF (
solver%V(i,2).NE.0.0_r8)
THEN
113 END IF check_outer_boundary
115 END IF derivative_recalculate
117 END DO check_derivative
124 WRITE(*,*)
'Solution maximum fractional error (mid radius) = ', &
143 WRITE(*,*)
'Solution maximum fractional error (Boundary 1) = ', &
155 WRITE(*,*)
'Solution maximum fractional error (Boundary 2) = ', &
subroutine solution6(solver, ifail)
subroutine solution_interface(SOLVER, ifail)
INTERFACE TO NUMERICAL SOLVER.
subroutine solution1(SOLVER, ifail)
This subroutine is prepared to solve single transport equation in standardised form adopted by the ET...
subroutine solution3(SOLVER, ifail)
This subroutine solves transport equations using matrix PROGONKA method.
subroutine deriv_fun(N, X, Y, DY)
subroutine solution10(SOLVER, ifail)
This subroutine is prepared to solve single transport equation in standardised form adopted by the ET...
subroutine solutionfem(SOLVER, ifail)
This subroutine is prepared to solve single transport equation in standardised form adopted by the ET...
subroutine solution4(SOLVER, ifail)
This subroutine solves transport equations using matrix PROGONKA method.
subroutine integr_fun(N, X, Y, INTY)
The module declares types of variables used in ETS (transport code)
subroutine solution7(SOLVER, ifail)
This subroutine is prepared to solve single transport equation in standardised form adopted by the ET...
subroutine solution2(SOLVER, ifail)
NUMERICAL SOLUTION.