From 55f0b6c0c1c38dad4da80696160df94f3cc2c2e7 Mon Sep 17 00:00:00 2001 From: Omid Khosravi Date: Sun, 26 Mar 2023 23:04:39 +0430 Subject: [PATCH] Update geometryDict Rotation Speed rotating axis instead of rot axis move rotating axis info to motion model --- .../toteblender/settings/geometryDict | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/tutorials/sphereGranFlow/toteblender/settings/geometryDict b/tutorials/sphereGranFlow/toteblender/settings/geometryDict index 49d486bd..bb045806 100644 --- a/tutorials/sphereGranFlow/toteblender/settings/geometryDict +++ b/tutorials/sphereGranFlow/toteblender/settings/geometryDict @@ -7,7 +7,16 @@ objectType dictionary; /* ------------------------------------------------------------------------- */ // motion model: rotating object around an axis motionModel rotatingAxisMotion; - +// information for rotatingAxisMotion motion model +rotatingAxisMotionInfo +{ + axisOfRotation + { + p1 (-0.1 0.0 0.15); // first point for the axis of rotation + p2 (0.1 0.0 0.15); // second point for the axis of rotation + omega 1.5708; // rotation speed ==> 15 rad/s + } +} surfaces { enterGate @@ -22,7 +31,7 @@ surfaces // material of wall material prop1; // motion component name - motion rotAxis; + motion axisOfRotation; } cylinderinlet @@ -139,13 +148,3 @@ surfaces } } -// information for rotatingAxisMotion motion model -rotatingAxisMotionInfo -{ - rotAxis - { - p1 (-0.1 0.0 0.15); // first point for the axis of rotation - p2 (0.1 0.0 0.15); // second point for the axis of rotation - omega 3; // rotation speed (rad/s) - } -}