@@ -143,7 +143,7 @@ contains
143143
144144 ! Calling pT- equilibrium for either finishing phase- change module, or as an IC for the pTg- equilibrium
145145 ! for this case, MFL cannot be either 0 or 1 , so I chose it to be 2
146- call s_infinite_pt_relaxation_k(j, k, l, 2 , pS, p_infpT, rM, q_cons_vf, rhoe, TS)
146+ call s_infinite_pt_relaxation_k(j, k, l, 2 , pS, p_infpT, q_cons_vf, rhoe, TS)
147147
148148 ! check if pTg- equilibrium is required
149149 ! NOTE that NOTHING else needs to be updated OTHER than the individual partial densities
@@ -164,7 +164,7 @@ contains
164164 q_cons_vf(vp + contxb - 1 )%sf(j, k, l) = (1.0_wp - mixM)* rM
165165
166166 ! calling pT- equilibrium for overheated vapor, which is MFL = 0
167- call s_infinite_pt_relaxation_k(j, k, l, 0 , pSOV, p_infOV, rM, q_cons_vf, rhoe, TSOV)
167+ call s_infinite_pt_relaxation_k(j, k, l, 0 , pSOV, p_infOV, q_cons_vf, rhoe, TSOV)
168168
169169 ! calculating Saturation temperature
170170 call s_TSat(pSOV, TSatOV, TSOV)
@@ -177,7 +177,7 @@ contains
177177 q_cons_vf(vp + contxb - 1 )%sf(j, k, l) = mixM* rM
178178
179179 ! calling pT- equilibrium for subcooled liquid, which is MFL = 1
180- call s_infinite_pt_relaxation_k(j, k, l, 1 , pSSL, p_infSL, rM, q_cons_vf, rhoe, TSSL)
180+ call s_infinite_pt_relaxation_k(j, k, l, 1 , pSSL, p_infSL, q_cons_vf, rhoe, TSSL)
181181
182182 ! calculating Saturation temperature
183183 call s_TSat(pSSL, TSatSL, TSSL)
@@ -281,7 +281,7 @@ contains
281281 !! @param q_cons_vf Cell- average conservative variables
282282 !! @param rhoe mixture energy
283283 !! @param TS equilibrium temperature at the interface
284- pure subroutine s_infinite_pt_relaxation_k (j , k , l , MFL , pS , p_infpT , rM , q_cons_vf , rhoe , TS )
284+ pure subroutine s_infinite_pt_relaxation_k (j , k , l , MFL , pS , p_infpT , q_cons_vf , rhoe , TS )
285285
286286#ifdef _CRAYFTN
287287 !DIR$ INLINEALWAYS s_infinite_pt_relaxation_k
@@ -293,7 +293,6 @@ contains
293293 integer , intent (in ) :: j, k, l, MFL
294294 real (wp), intent (out ) :: pS
295295 real (wp), dimension (num_fluids), intent (out ) :: p_infpT
296- real (wp), intent (in ) :: rM
297296 type(scalar_field), dimension (sys_size), intent (in ) :: q_cons_vf
298297 real (wp), intent (in ) :: rhoe
299298 real (wp), intent (out ) :: TS
0 commit comments