FoamFile { version 2.0; format ascii; class volVectorField; object U; } // Unité : m/s dimensions [0 1 -1 0 0 0 0]; // Champ uniforme. internalField uniform (0 0 0); // https://www.openfoam.com/documentation/user-guide/standard-boundaryconditions.php boundaryField { // On fait circuler du vent horizontalement au plafond. movingWall { type fixedValue; // 1 m/s value uniform (1 0 0); } // Les murs n'autorisent pas le glissement (vélocité à 0) fixedWalls { type noSlip; } // le devant et derrière n'existent pas. frontAndBack { type empty; } }