ENH: motionSolvers: dynamicMeshDict new syntax

This commit is contained in:
mattijs
2012-08-31 16:51:26 +01:00
parent 1444b6f6c5
commit bfbfa8f4a5
4 changed files with 18 additions and 5 deletions

View File

@ -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 );
}
// ************************************************************************* //

View File

@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (wing);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (wing);
}
// ************************************************************************* //

View File

@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (movingBlock);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (movingBlock);
}
// ************************************************************************* //

View File

@ -20,7 +20,10 @@ motionSolverLibs ("libfvMotionSolvers.so");
solver displacementLaplacian;
diffusivity inverseDistance (floatingObject);
displacementLaplacianCoeffs
{
diffusivity inverseDistance (floatingObject);
}
// ************************************************************************* //