summaryrefslogtreecommitdiff
path: root/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/schaefer_turek_durst_krause_rannbacher/sim.cpp')
-rw-r--r--examples/schaefer_turek_durst_krause_rannbacher/sim.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp b/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp
index b41f850..b3422a5 100644
--- a/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp
+++ b/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp
@@ -214,6 +214,8 @@ saw::error_or<void> k_main(int argc, char** argv){
return lbm_main<FloatT,DescT,method::Hlbm>(args);
} else if(coupling.stl_view() == "fplbm"){
return lbm_main<FloatT,DescT,method::FpLbm>(args);
+ } else if(coupling.stl_view() == "psm"){
+ return lbm_main<FloatT,DescT,method::Psm>(args);
}
return saw::make_error<saw::err::critical>("Invalid coupling");