summaryrefslogtreecommitdiff
path: root/modules/core/tests
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-06 13:30:47 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-06 13:30:47 +0200
commit4353831172a4f2d1a61a31e2821a8179d88147fb (patch)
tree1bcd94b5c25feadf926729b8c689e70a3e8b0378 /modules/core/tests
parent015e941a91552ce6ea4cde4507ec9451c3708e77 (diff)
downloadlibs-lbm-4353831172a4f2d1a61a31e2821a8179d88147fb.tar.gz
Fixed compilation issues. Rerunning momentum gather
Diffstat (limited to 'modules/core/tests')
-rw-r--r--modules/core/tests/particles.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/core/tests/particles.cpp b/modules/core/tests/particles.cpp
index f474e3b..08da227 100644
--- a/modules/core/tests/particles.cpp
+++ b/modules/core/tests/particles.cpp
@@ -276,10 +276,15 @@ SAW_TEST("Verlet integration test 2D"){
SAW_TEST("Spheroid Particle / AABB"){
using namespace kel;
- auto spheroid_pgrp = lbm::create_spheroid_particle_group<sch::Float64, lbm::coll::Spheroid<sch::Float64>>({},{},{8u});
+ using T = sch::Float64;
- auto res = lbm::particle_aabb<sch::Float64,sch::ParticleGroup<T,D,coll::Spheroid<T>>>::calculate(spheroid_pgrp);
+ saw::data<sch::Scalar<T>> radi,dense;
+ radi.at({}) = 2.0f;
+ dense.at({}) = 1.0f;
+ auto spheroid_pgrp = lbm::create_spheroid_particle_group<T,2u>(radi,dense,{8u});
- std::cout<<res<<std::endl;
+ // auto res = lbm::particle_aabb<sch::Float64,sch::ParticleGroup<T,D,coll::Spheroid<T>>>::calculate(spheroid_pgrp);
+
+ // std::cout<<res<<std::endl;
}
}