Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

meshDict

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    meshDict 968 B
    /*--------------------------------*- C++ -*----------------------------------*\
    | =========                 |                                                |
    | \\      /  F ield         | cfMesh: A library for mesh generation          | 
    |  \\    /   O peration     |                                                |
    |   \\  /    A nd           | Author: Franjo Juretic                         | 
    |    \\/     M anipulation  | E-mail: franjo.juretic@c-fields.com            |
    \*---------------------------------------------------------------------------*/
    
    FoamFile
    {
        version   2.0;
        format    ascii;
        class     dictionary;
        location  "system";
        object    meshDict;
    }
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    surfaceFile ".stl"; //hier muss der Name der .stl-Datei ergänzt werden
    
    
    maxCellSize 0.8;
    
    
    boundaryCellSize 0.4;
    
    
    
    
     
    // ************************************************************************* //