From 2494fa531df903f5ff4c324acdf6e7faf182eae6 Mon Sep 17 00:00:00 2001 From: Xiangyu Hu Date: Tue, 1 Aug 2023 18:33:40 +0200 Subject: [PATCH] dd water correction --- tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp b/tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp index 9127780d9d..0b6ac2244d 100644 --- a/tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp +++ b/tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp @@ -56,6 +56,8 @@ int main() /** transport formulation for regularizing particle distribution. */ InteractionDynamics> air_transport_correction(air_wall_contact, air_water_complex, 0.05); + InteractionDynamics> + water_transport_correction(water_wall_contact, water_air_complex, 0.05); /** Time step size without considering sound wave speed. */ ReduceDynamics get_water_advection_time_step_size(water_block, U_ref); ReduceDynamics get_air_advection_time_step_size(air_block, U_ref); @@ -135,6 +137,7 @@ int main() update_water_density_by_summation.exec(); update_air_density_by_summation.exec(); air_transport_correction.exec(); + water_transport_correction.exec(); air_viscous_acceleration.exec(); water_viscous_acceleration.exec();