Skip to content

Commit

Permalink
dd water correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangyu-Hu committed Aug 1, 2023
1 parent b1034a0 commit 2494fa5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/2d_examples/test_2d_wetting_effects/src/wetting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ int main()
/** transport formulation for regularizing particle distribution. */
InteractionDynamics<fluid_dynamics::TransportVelocityCorrectionComplex<AllParticles>>
air_transport_correction(air_wall_contact, air_water_complex, 0.05);
InteractionDynamics<fluid_dynamics::TransportVelocityCorrectionComplex<AllParticles>>
water_transport_correction(water_wall_contact, water_air_complex, 0.05);
/** Time step size without considering sound wave speed. */
ReduceDynamics<fluid_dynamics::AdvectionTimeStepSize> get_water_advection_time_step_size(water_block, U_ref);
ReduceDynamics<fluid_dynamics::AdvectionTimeStepSize> get_air_advection_time_step_size(air_block, U_ref);
Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit 2494fa5

Please sign in to comment.