Skip to content
Snippets Groups Projects

CONFIG: add settings for Cray compiler and cray mpich

Merged Mark OLESEN requested to merge feature-config-cray into develop
Viewing commit 28024e5f
Show latest version
12 files
+ 2551
0
Preferences
Compare changes
Files
12
  • 28024e5f
    This tutorial demonstrates moving mesh and AMI with a Lagrangian cloud.
    It is very slow, as interaction lists (required to compute collisions)
    are not optimised for moving meshes. The simulation time has therefore
    been made very short, so that it finishes in a reasonable time. The
    mixer only completes a small fraction of a rotation in this time. This
    is still sufficient to test tracking and collisions in the presence of
    AMI and mesh motion.
    
    In order to generate a convincing animation, however, the end time must
    be increased and the simulation run for a number of days.
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
rotor
{
type movingWallVelocity;
value uniform (0 0 0);
}
stator
{
type movingWallVelocity;
value uniform (0 0 0);
}
front
{
type empty;
}
back
{
type empty;
}
AMI1
{
type cyclicAMI;
value $internalField;
}
AMI2
{
type cyclicAMI;
value $internalField;
}
}
// ************************************************************************* //