Skip to content
Snippets Groups Projects
Commit 8350ec26 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL/TH2M] clang-format of phase transition folder.

parent 273a09d5
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables( ...@@ -170,7 +170,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables(
// copy previous state before modification. // copy previous state before modification.
PhaseTransitionModelVariables cv = phase_transition_model_variables; PhaseTransitionModelVariables cv = phase_transition_model_variables;
cv.rhoLR = liquid_phase.property(MaterialPropertyLib::PropertyType::density) cv.rhoLR = liquid_phase.property(MaterialPropertyLib::PropertyType::density)
.template value<double>(variables, pos, t, dt); .template value<double>(variables, pos, t, dt);
cv.rhoWLR = cv.rhoLR; cv.rhoWLR = cv.rhoLR;
// Kelvin-Laplace correction for menisci // Kelvin-Laplace correction for menisci
...@@ -192,7 +192,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables( ...@@ -192,7 +192,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables(
// gas phase mixture density // gas phase mixture density
cv.rhoGR = gas_phase.property(MaterialPropertyLib::PropertyType::density) cv.rhoGR = gas_phase.property(MaterialPropertyLib::PropertyType::density)
.template value<double>(variables, pos, t, dt); .template value<double>(variables, pos, t, dt);
auto const drhoGR_dpGR = auto const drhoGR_dpGR =
gas_phase.property(MaterialPropertyLib::PropertyType::density) gas_phase.property(MaterialPropertyLib::PropertyType::density)
...@@ -261,7 +261,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables( ...@@ -261,7 +261,7 @@ PhaseTransitionEvaporation::updateConstitutiveVariables(
// gas phase viscosity // gas phase viscosity
cv.muGR = gas_phase.property(MaterialPropertyLib::PropertyType::viscosity) cv.muGR = gas_phase.property(MaterialPropertyLib::PropertyType::viscosity)
.template value<double>(variables, pos, t, dt); .template value<double>(variables, pos, t, dt);
// gas phase thermal conductivity // gas phase thermal conductivity
cv.lambdaGR = cv.lambdaGR =
...@@ -270,8 +270,9 @@ PhaseTransitionEvaporation::updateConstitutiveVariables( ...@@ -270,8 +270,9 @@ PhaseTransitionEvaporation::updateConstitutiveVariables(
.template value<double>(variables, pos, t, dt); .template value<double>(variables, pos, t, dt);
// liquid phase viscosity // liquid phase viscosity
cv.muLR = liquid_phase.property(MaterialPropertyLib::PropertyType::viscosity) cv.muLR =
.template value<double>(variables, pos, t, dt); liquid_phase.property(MaterialPropertyLib::PropertyType::viscosity)
.template value<double>(variables, pos, t, dt);
// liquid phase thermal conductivity // liquid phase thermal conductivity
cv.lambdaLR = cv.lambdaLR =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment