Changeset 608 for trunk/src/wave_equations_integrator.F90
- Timestamp:
- 08/17/11 16:06:08 (22 months ago)
- File:
-
- 1 edited
-
trunk/src/wave_equations_integrator.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wave_equations_integrator.F90
r594 r608 72 72 SCALAR_REL = EQ3 73 73 74 integer, parameter :: M_RK2 = 1, &75 M_RK4 = 2, &76 M_RKF4 = 3, &77 M_RKCK4 = 4, &78 M_RKPD8 = 574 integer, parameter :: ODE_RK2 = 1, & 75 ODE_RK4 = 2, & 76 ODE_RKF4 = 3, & 77 ODE_RKCK4 = 4, & 78 ODE_RKPD8 = 5 79 79 80 80 … … 98 98 SCHRODINGER_FINF, & 99 99 DIRAC_FINF, & 100 M_RK2, &101 M_RK4, &102 M_RKF4, &103 M_RKCK4, &104 M_RKPD8100 ODE_RK2, & 101 ODE_RK4, & 102 ODE_RKF4, & 103 ODE_RKCK4, & 104 ODE_RKPD8 105 105 106 106 contains … … 130 130 call oct_parse_int('SteppingFunction', 5, stepping_func) 131 131 select case (stepping_func) 132 case ( M_RK2)132 case (ODE_RK2) 133 133 message(1) = " Stepping function: Embedded 2nd order Runge-Kutta" 134 134 message(2) = " with 3rd order error estimate" 135 135 call write_info(2,20) 136 case ( M_RK4)136 case (ODE_RK4) 137 137 message(1) = " Stepping function: 4th order (classical) Runge-Kutta method" 138 138 call write_info(1,20) 139 case ( M_RKF4)139 case (ODE_RKF4) 140 140 message(1) = " Stepping function: Embedded 4th order Runge-Kutta-Fehlberg " 141 141 message(2) = " method with 5th order error estimate" 142 142 call write_info(2,20) 143 case ( M_RKCK4)143 case (ODE_RKCK4) 144 144 message(1) = " Stepping function: Embedded 4th order Runge-Kutta Cash-Karp" 145 145 message(2) = " method with 5th order error estimate" 146 146 call write_info(2,20) 147 case ( M_RKPD8)147 case (ODE_RKPD8) 148 148 message(1) = " Stepping function: Embedded 8th order Runge-Kutta Prince-Dormand" 149 149 message(2) = " method with 9th order error estimate"
Note: See TracChangeset
for help on using the changeset viewer.