Updated tutorial file changes

This commit is contained in:
David L. F. Gaden 2013-08-29 17:06:58 -05:00
parent 9630e8099e
commit 6a3bd4a740
8 changed files with 65 additions and 49 deletions

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object p;
location "-1";
object icoFoam1@-1@0@T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -36,7 +37,7 @@ boundaryField
{
type zeroGradient;
}
northBranch // inlet
northBranch
{
type fixedValue;
value uniform 1;
@ -47,4 +48,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volVectorField;
object U;
location "-1";
object icoFoam1@-1@0@U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -30,16 +31,16 @@ boundaryField
type fixedValue;
value uniform (0 0 0);
}
westStreet // closed
westStreet
{
type fixedValue;
value uniform (0 0 0);
}
eastStreet // outlet
eastStreet
{
type zeroGradient;
}
northBranch // inlet
northBranch
{
type fixedValue;
value uniform (0 -1 0);
@ -50,4 +51,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object p;
location "-1";
object icoFoam1@-1@0@p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -28,16 +29,16 @@ boundaryField
{
type zeroGradient;
}
westStreet // closed
westStreet
{
type zeroGradient;
}
eastStreet // outlet
eastStreet
{
type fixedValue;
value uniform 0;
}
northBranch // inlet
northBranch
{
type zeroGradient;
}
@ -47,4 +48,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object p;
location "-1";
object icoFoam2@-1@0@T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -47,4 +48,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volVectorField;
object U;
location "-1";
object icoFoam2@-1@0@U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -30,16 +31,16 @@ boundaryField
type fixedValue;
value uniform (0 0 0);
}
westStreet // outlet
westStreet
{
type zeroGradient;
}
eastStreet // inlet
eastStreet
{
type fixedValue;
value uniform (-1 0 0);
}
northBranch // outlet
northBranch
{
type zeroGradient;
}
@ -49,4 +50,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object p;
location "-1";
object icoFoam2@-1@0@p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -28,16 +29,16 @@ boundaryField
{
type zeroGradient;
}
westStreet // outlet
westStreet
{
type fixedValue;
value uniform 0;
}
eastStreet // inlet
eastStreet
{
type zeroGradient;
}
northBranch // outlet
northBranch
{
type fixedValue;
value uniform 0;
@ -48,4 +49,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object p;
location "-1";
object scalarTransportFoam@-1@0@T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -36,7 +37,7 @@ boundaryField
{
type zeroGradient;
}
northBranch // inlet
northBranch
{
type fixedValue;
value uniform 1;
@ -47,4 +48,5 @@ boundaryField
}
}
// ************************************************************************* //

View file

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -10,7 +10,8 @@ FoamFile
version 2.0;
format ascii;
class volVectorField;
object U;
location "-1";
object scalarTransportFoam@-1@0@U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -30,15 +31,15 @@ boundaryField
type fixedValue;
value uniform (0 0 0);
}
westStreet // outlet
westStreet
{
type zeroGradient;
}
eastStreet // closed
eastStreet
{
type zeroGradient;
}
northBranch // inlet
northBranch
{
type fixedValue;
value uniform (0 -1 0);
@ -49,4 +50,5 @@ boundaryField
}
}
// ************************************************************************* //