diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
commit | 5a166a02efe011931faa7a9ff9fe4043e3a8017a (patch) | |
tree | bdb7432e95f451bfacad651e26b44aaea1917a08 /examples/SConscript | |
parent | 9e37ff62b668694f705a8d132469f40ead9f6f0f (diff) |
Upgrading the cavity example
Diffstat (limited to 'examples/SConscript')
-rw-r--r-- | examples/SConscript | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/SConscript b/examples/SConscript index 73adcf5..13ed580 100644 --- a/examples/SConscript +++ b/examples/SConscript @@ -28,10 +28,16 @@ examples_objects = []; examples_env.add_source_files(examples_objects, ['cavity_2d.cpp'], shared=False); examples_env.cavity_2d = examples_env.Program('#bin/cavity_2d', [env.library_static, examples_objects]); +# Channel Throat 2D +#examples_objects = []; +#examples_env.add_source_files(examples_objects, ['particle_ibm.cpp'], shared=False); +#examples_env.particle_ibm_2d = examples_env.Program('#bin/particle_ibm_2d', [env.library_static, examples_objects]); + # Set Alias env.examples = [ examples_env.meta_2d, - examples_env.cavity_2d + examples_env.cavity_2d, +# examples_env.particle_ibm_2d ]; env.Alias('examples', env.examples); |