Skip to content
Snippets Groups Projects
Commit bfbfa8f4 authored by mattijs's avatar mattijs
Browse files

ENH: motionSolvers: dynamicMeshDict new syntax

parent 1444b6f6
No related merge requests found
......@@ -19,9 +19,13 @@ dynamicFvMesh dynamicMotionSolverFvMesh;
motionSolverLibs ( "libfvMotionSolvers.so" );
solver velocityComponentLaplacian x;
solver velocityComponentLaplacian;
diffusivity directional ( 1 200 0 );
velocityComponentLaplacianCoeffs
{
component x;
diffusivity directional ( 1 200 0 );
}
// ************************************************************************* //
......@@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (wing);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (wing);
}
// ************************************************************************* //
......@@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (movingBlock);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (movingBlock);
}
// ************************************************************************* //
......@@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (floatingObject);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (floatingObject);
}
// ************************************************************************* //
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