|
17 | 17 | #include "hexahedron_element.h" |
18 | 18 | #include "linear_function.h" |
19 | 19 | #include "mesh.h" |
20 | | -#include "node.h" |
21 | | -#include "partio_writer.h" |
22 | | -#include "quadrilateral_element.h" |
23 | 20 | #include "mpm_scheme.h" |
24 | 21 | #include "mpm_scheme_usf.h" |
25 | 22 | #include "mpm_scheme_usl.h" |
| 23 | +#include "node.h" |
| 24 | +#include "partio_writer.h" |
| 25 | +#include "quadrilateral_element.h" |
26 | 26 |
|
27 | 27 | //! \brief Check stress update 3D case |
28 | 28 | TEST_CASE("Stress update is checked for USF and USL", |
@@ -194,10 +194,10 @@ TEST_CASE("Stress update is checked for USF and USL", |
194 | 194 | REQUIRE_NOTHROW(mpm_scheme->compute_forces(gravity, phase, step, true)); |
195 | 195 |
|
196 | 196 | // Particle kinematics |
197 | | - REQUIRE_NOTHROW(mpm_scheme->compute_particle_kinematics( |
198 | | - true, phase, "Cundall", 0.02)); |
199 | | - REQUIRE_NOTHROW(mpm_scheme->compute_particle_kinematics( |
200 | | - false, phase, "Cundall", 0.02)); |
| 197 | + REQUIRE_NOTHROW( |
| 198 | + mpm_scheme->compute_particle_kinematics(true, phase, "Cundall", 0.02)); |
| 199 | + REQUIRE_NOTHROW( |
| 200 | + mpm_scheme->compute_particle_kinematics(false, phase, "Cundall", 0.02)); |
201 | 201 | REQUIRE_NOTHROW( |
202 | 202 | mpm_scheme->compute_particle_kinematics(true, phase, "None", 0.02)); |
203 | 203 | REQUIRE_NOTHROW( |
@@ -235,10 +235,10 @@ TEST_CASE("Stress update is checked for USF and USL", |
235 | 235 | REQUIRE_NOTHROW(mpm_scheme->compute_forces(gravity, phase, step, true)); |
236 | 236 |
|
237 | 237 | // Particle kinematics |
238 | | - REQUIRE_NOTHROW(mpm_scheme->compute_particle_kinematics( |
239 | | - true, phase, "Cundall", 0.02)); |
240 | | - REQUIRE_NOTHROW(mpm_scheme->compute_particle_kinematics( |
241 | | - false, phase, "Cundall", 0.02)); |
| 238 | + REQUIRE_NOTHROW( |
| 239 | + mpm_scheme->compute_particle_kinematics(true, phase, "Cundall", 0.02)); |
| 240 | + REQUIRE_NOTHROW( |
| 241 | + mpm_scheme->compute_particle_kinematics(false, phase, "Cundall", 0.02)); |
242 | 242 | REQUIRE_NOTHROW( |
243 | 243 | mpm_scheme->compute_particle_kinematics(true, phase, "None", 0.02)); |
244 | 244 | REQUIRE_NOTHROW( |
|
0 commit comments