Skip to content
Snippets Groups Projects
Commit 0d073852 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

added missing currentBlock property

parent 3061c7f3
No related merge requests found
...@@ -49,6 +49,9 @@ if __name__ == '__main__': ...@@ -49,6 +49,9 @@ if __name__ == '__main__':
ps.addProperty("flags", "walberla::mesa_pd::data::particle_flags::FlagT", defValue="", syncMode="COPY") ps.addProperty("flags", "walberla::mesa_pd::data::particle_flags::FlagT", defValue="", syncMode="COPY")
ps.addProperty("nextParticle", "int", defValue="-1", syncMode="NEVER") ps.addProperty("nextParticle", "int", defValue="-1", syncMode="NEVER")
ps.addInclude("blockforest/BlockForest.h")
ps.addProperty("currentBlock", "blockforest::Block*", defValue="nullptr", syncMode="NEVER")
kernels = [] kernels = []
kernels.append( kernel.DoubleCast(shapes) ) kernels.append( kernel.DoubleCast(shapes) )
kernels.append( kernel.ExplicitEuler() ) kernels.append( kernel.ExplicitEuler() )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment