@@ -85,11 +85,11 @@ contains
8585 subroutine s_infinite_relaxation_k (q_cons_vf )
8686
8787 type(scalar_field), dimension (sys_size), intent (inout ) :: q_cons_vf
88- real (kind ( 0.0_wp ) ) :: pS, pSOV, pSSL !< equilibrium pressure for mixture, overheated vapor, and subcooled liquid
89- real (kind ( 0.0_wp ) ) :: TS, TSOV, TSSL, TSatOV, TSatSL !< equilibrium temperature for mixture, overheated vapor, and subcooled liquid. Saturation Temperatures at overheated vapor and subcooled liquid
90- real (kind ( 0.0_wp ) ) :: rhoe, dynE, rhos !< total internal energy, kinetic energy, and total entropy
91- real (kind ( 0.0_wp ) ) :: rho, rM, m1, m2, MCT !< total density, total reacting mass, individual reacting masses
92- real (kind ( 0.0_wp ) ) :: TvF !< total volume fraction
88+ real (wp ) :: pS, pSOV, pSSL !< equilibrium pressure for mixture, overheated vapor, and subcooled liquid
89+ real (wp ) :: TS, TSOV, TSSL, TSatOV, TSatSL !< equilibrium temperature for mixture, overheated vapor, and subcooled liquid. Saturation Temperatures at overheated vapor and subcooled liquid
90+ real (wp ) :: rhoe, dynE, rhos !< total internal energy, kinetic energy, and total entropy
91+ real (wp ) :: rho, rM, m1, m2, MCT !< total density, total reacting mass, individual reacting masses
92+ real (wp ) :: TvF !< total volume fraction
9393
9494 !$acc declare create(pS, pSOV, pSSL, TS, TSOV, TSatOV, TSatSL, TSSL, rhoe, dynE, rhos, rho, rM, m1, m2, MCT, TvF)
9595
@@ -295,13 +295,13 @@ contains
295295
296296 ! initializing variables
297297 integer , intent (in ) :: j, k, l, MFL
298- real (kind ( 0.0_wp ) ), intent (out ) :: pS
299- real (kind ( 0.0_wp ) ), dimension (num_fluids), intent (out ) :: p_infpT
300- real (kind ( 0.0_wp ) ), intent (in ) :: rM
298+ real (wp ), intent (out ) :: pS
299+ real (wp ), dimension (num_fluids), intent (out ) :: p_infpT
300+ real (wp ), intent (in ) :: rM
301301 type(scalar_field), dimension (sys_size), intent (in ) :: q_cons_vf
302- real (kind ( 0.0_wp ) ), intent (in ) :: rhoe
303- real (kind ( 0.0_wp ) ), intent (out ) :: TS
304- real (kind ( 0.0_wp ) ) :: gp, gpp, hp, pO, mCP, mQ !< variables for the Newton Solver
302+ real (wp ), intent (in ) :: rhoe
303+ real (wp ), intent (out ) :: TS
304+ real (wp ) :: gp, gpp, hp, pO, mCP, mQ !< variables for the Newton Solver
305305
306306 integer :: i, ns !< generic loop iterators
307307
@@ -399,17 +399,17 @@ contains
399399#endif
400400
401401 integer , intent (in ) :: j, k, l
402- real (kind ( 0.0_wp ) ), intent (inout ) :: pS
403- real (kind ( 0.0_wp ) ), dimension (num_fluids), intent (in ) :: p_infpT
404- real (kind ( 0.0_wp ) ), intent (in ) :: rhoe
402+ real (wp ), intent (inout ) :: pS
403+ real (wp ), dimension (num_fluids), intent (in ) :: p_infpT
404+ real (wp ), intent (in ) :: rhoe
405405 type(scalar_field), dimension (sys_size), intent (inout ) :: q_cons_vf
406- real (kind ( 0.0_wp ) ), intent (inout ) :: TS
406+ real (wp ), intent (inout ) :: TS
407407
408- real (kind ( 0.0_wp ) ), dimension (num_fluids) :: p_infpTg !< stiffness for the participating fluids for pTg- equilibrium
409- real (kind ( 0.0_wp ) ), dimension (2 , 2 ) :: Jac, InvJac, TJac !< matrices for the Newton Solver
410- real (kind ( 0.0_wp ) ), dimension (2 ) :: R2D, DeltamP !< residual and correction array
411- real (kind ( 0.0_wp ) ) :: Om ! underrelaxation factor
412- real (kind ( 0.0_wp ) ) :: mCP, mCPD, mCVGP, mCVGP2, mQ, mQD ! auxiliary variables for the pTg- solver
408+ real (wp ), dimension (num_fluids) :: p_infpTg !< stiffness for the participating fluids for pTg- equilibrium
409+ real (wp ), dimension (2 , 2 ) :: Jac, InvJac, TJac !< matrices for the Newton Solver
410+ real (wp ), dimension (2 ) :: R2D, DeltamP !< residual and correction array
411+ real (wp ) :: Om ! underrelaxation factor
412+ real (wp ) :: mCP, mCPD, mCVGP, mCVGP2, mQ, mQD ! auxiliary variables for the pTg- solver
413413
414414 !< Generic loop iterators
415415 integer :: i, ns
@@ -525,9 +525,9 @@ contains
525525
526526 !> @name variables for the correction of the reacting partial densities
527527 !> @{
528- real(kind(0.0_wp) ), intent(out) :: MCT
528+ real(wp ), intent(out) :: MCT
529529 type(scalar_field), dimension(sys_size), intent(inout) :: q_cons_vf
530- real(kind(0.0_wp) ), intent(inout) :: rM
530+ real(wp ), intent(inout) :: rM
531531 integer, intent(in) :: j, k, l
532532 !> @}
533533 if (rM < 0.0_wp) then
@@ -586,15 +586,15 @@ contains
586586 !$acc routine seq
587587#endif
588588
589- real(kind(0.0_wp) ), dimension(2, 2), intent(out) :: InvJac
589+ real(wp ), dimension(2, 2), intent(out) :: InvJac
590590 integer, intent(in) :: j
591- real(kind(0.0_wp) ), dimension(2, 2), intent(out) :: Jac
591+ real(wp ), dimension(2, 2), intent(out) :: Jac
592592 integer, intent(in) :: k, l
593- real(kind(0.0_wp) ), intent(in) :: mCPD, mCVGP, mCVGP2, pS
593+ real(wp ), intent(in) :: mCPD, mCVGP, mCVGP2, pS
594594 type(scalar_field), dimension(sys_size), intent(in) :: q_cons_vf
595- real(kind(0.0_wp) ), dimension(2, 2), intent(out) :: TJac
595+ real(wp ), dimension(2, 2), intent(out) :: TJac
596596
597- real(kind(0.0_wp) ) :: ml, mT, TS, dFdT, dTdm, dTdp ! mass of the reacting fluid, total reacting mass, and auxiliary variables
597+ real(wp ) :: ml, mT, TS, dFdT, dTdm, dTdp ! mass of the reacting fluid, total reacting mass, and auxiliary variables
598598
599599 ! mass of the reacting liquid
600600 ml = q_cons_vf(lp + contxb - 1)%sf(j, k, l)
@@ -694,12 +694,12 @@ contains
694694#endif
695695
696696 integer, intent(in) :: j, k, l
697- real(kind(0.0_wp) ), intent(in) :: mCPD, mCVGP, mQD
697+ real(wp ), intent(in) :: mCPD, mCVGP, mQD
698698 type(scalar_field), dimension(sys_size), intent(in) :: q_cons_vf
699- real(kind(0.0_wp) ), intent(in) :: pS, rhoe
700- real(kind(0.0_wp) ), dimension(2), intent(out) :: R2D
699+ real(wp ), intent(in) :: pS, rhoe
700+ real(wp ), dimension(2), intent(out) :: R2D
701701
702- real(kind(0.0_wp) ) :: ml, mT, TS !< mass of the reacting liquid, total reacting mass, equilibrium temperature
702+ real(wp ) :: ml, mT, TS !< mass of the reacting liquid, total reacting mass, equilibrium temperature
703703
704704 ! mass of the reacting liquid
705705 ml = q_cons_vf(lp + contxb - 1)%sf(j, k, l)
@@ -744,11 +744,11 @@ contains
744744 !$acc routine seq
745745#endif
746746
747- real(kind(0.0_wp) ), intent(in) :: pSat
748- real(kind(0.0_wp) ), intent(out) :: TSat
749- real(kind(0.0_wp) ), intent(in) :: TSIn
747+ real(wp ), intent(in) :: pSat
748+ real(wp ), intent(out) :: TSat
749+ real(wp ), intent(in) :: TSIn
750750
751- real(kind(0.0_wp) ) :: dFdT, FT, Om !< auxiliary variables
751+ real(wp ) :: dFdT, FT, Om !< auxiliary variables
752752
753753 ! Generic loop iterators
754754 integer :: ns
0 commit comments