From 19c3a70d8052d6c92ac0ab66f6bbc62917adfb2f Mon Sep 17 00:00:00 2001 From: graham <g.macpherson@opencfd.co.uk> Date: Wed, 30 Mar 2011 16:30:14 +0100 Subject: [PATCH] ENH: new DEM tutorial - hopper emptying. --- .../icoUncoupledKinematicParcelFoam/Allclean | 14 + .../icoUncoupledKinematicParcelFoam/Allrun | 21 + .../hopperEmptying/0/U | 45 + .../hopperEmptying/constant/RASProperties | 25 + .../hopperEmptying/constant/g | 22 + .../constant/kinematicCloudProperties | 132 + .../constant/polyMesh/blockMeshDict | 85 + .../hopperEmptying/constant/polyMesh/boundary | 46 + .../constant/transportProperties | 24 + .../constant/turbulenceProperties | 21 + .../hopperEmptying/system/controlDict | 48 + .../hopperEmptying/system/decomposeParDict | 45 + .../hopperEmptying/system/fvSchemes | 43 + .../hopperEmptying/system/fvSolution | 22 + .../hopperEmptying/system/mapFieldsDict | 29 + .../hopperInitialState/0/U | 40 + .../hopperInitialState/constant/RASProperties | 25 + .../hopperInitialState/constant/g | 22 + .../constant/kinematicCloudPositions | 3321 +++++++++++++++++ .../constant/kinematicCloudProperties | 150 + .../constant/polyMesh/blockMeshDict | 64 + .../constant/polyMesh/boundary | 34 + .../constant/transportProperties | 24 + .../constant/turbulenceProperties | 21 + .../hopperInitialState/system/controlDict | 48 + .../system/decomposeParDict | 45 + .../hopperInitialState/system/fvSchemes | 43 + .../hopperInitialState/system/fvSolution | 22 + 28 files changed, 4481 insertions(+) create mode 100755 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean create mode 100755 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes create mode 100644 tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean new file mode 100755 index 00000000000..75ce1691a21 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean @@ -0,0 +1,14 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # run from this directory + +# Source tutorial run functions +. $WM_PROJECT_DIR/bin/tools/CleanFunctions + +cd hopperInitialState +cleanCase + +cd ../hopperEmptying +cleanCase +rm -rf 0/lagrangian + +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun new file mode 100755 index 00000000000..3be363cb27d --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun @@ -0,0 +1,21 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # run from this directory + +# Source tutorial run functions +. $WM_PROJECT_DIR/bin/tools/RunFunctions + +cd hopperInitialState +runApplication blockMesh +runApplication decomposePar +runParallel `getApplication` 4 +runApplication reconstructPar -latestTime +cd .. + +cd hopperEmptying +runApplication blockMesh +runApplication mapFields ../hopperInitialState -sourceTime latestTime +runApplication decomposePar +runParallel `getApplication` 4 +runApplication reconstructPar + +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U new file mode 100644 index 00000000000..efab0e473cf --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + location "0"; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + walls + { + type fixedValue; + value uniform (0 0 0); + } + frontAndBack + { + type fixedValue; + value uniform (0 0 0); + } + inlet + { + type zeroGradient; + } + outlet + { + type zeroGradient; + } +} + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties new file mode 100644 index 00000000000..fe2fb03c503 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties @@ -0,0 +1,25 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object RASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +RASModel laminar; + +turbulence on; + +printCoeffs on; + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g new file mode 100644 index 00000000000..4fea433a003 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class uniformDimensionedVectorField; + location "constant"; + object g; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -2 0 0 0 0]; +value ( 0 -9.81 0 ); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties new file mode 100644 index 00000000000..4376f6ce5aa --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties @@ -0,0 +1,132 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object reactingCloud1Properties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solution +{ + active true; + coupled false; + transient yes; + cellValueSourceCorrection off; + + sourceTerms + { + schemes + { + } + } + + interpolationSchemes + { + rho cell; + U cellPoint; + mu cell; + } + + integrationSchemes + { + U Euler; + } +} + +constantProperties +{ + parcelTypeId 1; + + rhoMin 1e-15; + minParticleMass 1e-15; + + rho0 964; + youngsModulus 6e8; + poissonsRatio 0.35; + + constantVolume false; +} + +subModels +{ + particleForces + { + sphereDrag; + gravity; + } + + injectionModel none; + + dispersionModel none; + + patchInteractionModel standardWallInteraction; + + heatTransferModel none; + + postProcessingModel none; + + surfaceFilmModel none; + + collisionModel pairCollision; + + radiation off; + + pairCollisionCoeffs + { + maxInteractionDistance 0.006; + + writeReferredParticleCloud no; + + pairModel pairSpringSliderDashpot; + + pairSpringSliderDashpotCoeffs + { + useEquivalentSize no; + alpha 0.12; + b 1.5; + mu 0.52; + collisionResolutionSteps 12; + }; + + wallModel wallLocalSpringSliderDashpot; + + wallLocalSpringSliderDashpotCoeffs + { + useEquivalentSize no; + collisionResolutionSteps 12; + walls + { + youngsModulus 1e10; + poissonsRatio 0.23; + alpha 0.12; + b 1.5; + mu 0.43; + } + frontAndBack + { + youngsModulus 1e10; + poissonsRatio 0.23; + alpha 0.12; + b 1.5; + mu 0.1; + } + }; + } + + standardWallInteractionCoeffs + { + type rebound; + } +} + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict new file mode 100644 index 00000000000..77ae319149f --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict @@ -0,0 +1,85 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +convertToMeters 0.001; + +vertices +( + (0 77.9423 6.2) + (135 0 6.2) + (0 -77.9423 6.2) + (300 -77.9423 6.2) + (165 0 6.2) + (300 77.9423 6.2) + (300 500 6.2) + (0 500 6.2) + (0 77.9423 0) + (135 0 0) + (0 -77.9423 0) + (300 -77.9423 0) + (165 0 0) + (300 77.9423 0) + (300 500 0) + (0 500 0) +); + + +blocks +( + hex (8 13 14 15 0 5 6 7) (24 50 1) simpleGrading (1 1 1) + hex (9 12 13 8 1 4 5 0) (24 8 1) simpleGrading (1 1 1) + hex (10 11 12 9 2 3 4 1) (24 6 1) simpleGrading (1 1 1) +); + +patches +( + + wall walls + ( + //side walls + (0 7 15 8) + (1 0 8 9) + (13 14 6 5) + (12 13 5 4) + (2 1 9 10) + (11 12 4 3) + ) + + wall frontAndBack + ( + //front and back walls + (4 5 0 1) + (5 6 7 0) + (15 14 13 8) + (8 13 12 9) + (3 4 1 2) + (12 11 10 9) + ) + + patch inlet + ( + (15 7 6 14) + ) + + patch outlet + ( + (3 2 10 11) + ) + +); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary new file mode 100644 index 00000000000..a4ff6e34314 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary @@ -0,0 +1,46 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class polyBoundaryMesh; + location "constant/polyMesh"; + object boundary; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +4 +( + walls + { + type wall; + nFaces 128; + startFace 2984; + } + frontAndBack + { + type wall; + nFaces 3072; + startFace 3112; + } + inlet + { + type patch; + nFaces 24; + startFace 6184; + } + outlet + { + type patch; + nFaces 24; + startFace 6208; + } +) + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties new file mode 100644 index 00000000000..30ebf88e3de --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties @@ -0,0 +1,24 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +rhoInf rhoInf [ 1 -3 0 0 0 0 0 ] 1.2; + +transportModel Newtonian; + +nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties new file mode 100644 index 00000000000..3e945495c51 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RASModel; + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict new file mode 100644 index 00000000000..5aee7b41b0e --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application icoUncoupledKinematicParcelFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 15; + +deltaT 5e-5; + +writeControl runTime; + +writeInterval 0.05; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression uncompressed; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict new file mode 100644 index 00000000000..badba37e524 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 4; + +method simple; + +simpleCoeffs +{ + n ( 4 1 1 ); + delta 0.001; +} + +hierarchicalCoeffs +{ + n ( 4 1 1 ); + delta 0.001; + order xyz; +} + +manualCoeffs +{ + dataFile ""; +} + +distributed no; + +roots ( ); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes new file mode 100644 index 00000000000..1b8a2d358ff --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default none; +} + +gradSchemes +{ + default none; +} + +divSchemes +{ + default none; +} + +laplacianSchemes +{ + default none; +} + +interpolationSchemes +{ + default none; +} + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution new file mode 100644 index 00000000000..39c45aff34b --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ +} + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict new file mode 100644 index 00000000000..ce5f93c23cb --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict @@ -0,0 +1,29 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object mapFieldsDict; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// List of pairs of source/target patches for mapping +patchMap +( +); + +// List of target patches cutting the source domain (these need to be +// handled specially e.g. interpolated from internal values) +cuttingPatches +( +); + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U new file mode 100644 index 00000000000..e81e9468470 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U @@ -0,0 +1,40 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.com | +| \\/ 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 +{ + outlet + { + type zeroGradient; + value uniform (0 0 0); + } + walls + { + type fixedValue; + value uniform (0 0 0); + } + frontAndBack + { + type fixedValue; + value uniform (0 0 0); + } +} + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties new file mode 100644 index 00000000000..fe2fb03c503 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties @@ -0,0 +1,25 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object RASProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +RASModel laminar; + +turbulence on; + +printCoeffs on; + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g new file mode 100644 index 00000000000..4fea433a003 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class uniformDimensionedVectorField; + location "constant"; + object g; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -2 0 0 0 0]; +value ( 0 -9.81 0 ); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions new file mode 100644 index 00000000000..74091054f00 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions @@ -0,0 +1,3321 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class vectorField; + object kinematicCloudPositions; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + + +( +(0.01 0.299 0.0032) +(0.01 0.305 0.0032) +(0.01 0.311 0.0032) +(0.01 0.317 0.0032) +(0.01 0.323 0.0032) +(0.01 0.329 0.0032) +(0.01 0.335 0.0032) +(0.01 0.341 0.0032) +(0.01 0.347 0.0032) +(0.01 0.353 0.0032) +(0.01 0.359 0.0032) +(0.01 0.365 0.0032) +(0.01 0.371 0.0032) +(0.01 0.377 0.0032) +(0.01 0.383 0.0032) +(0.01 0.389 0.0032) +(0.01 0.395 0.0032) +(0.01 0.401 0.0032) +(0.01 0.407 0.0032) +(0.01 0.413 0.0032) +(0.01 0.419 0.0032) +(0.01 0.425 0.0032) +(0.01 0.431 0.0032) +(0.01 0.437 0.0032) +(0.01 0.443 0.0032) +(0.01 0.449 0.0032) +(0.01 0.455 0.0032) +(0.01 0.461 0.0032) +(0.01 0.467 0.0032) +(0.01 0.473 0.0032) +(0.01 0.479 0.0032) +(0.01 0.485 0.0032) +(0.01 0.491 0.0032) +(0.01 0.497 0.0032) +(0.016 0.077 0.0032) +(0.016 0.083 0.0032) +(0.016 0.089 0.0032) +(0.016 0.095 0.0032) +(0.016 0.101 0.0032) +(0.016 0.107 0.0032) +(0.016 0.113 0.0032) +(0.016 0.119 0.0032) +(0.016 0.125 0.0032) +(0.016 0.131 0.0032) +(0.016 0.137 0.0032) +(0.016 0.143 0.0032) +(0.016 0.149 0.0032) +(0.016 0.155 0.0032) +(0.016 0.161 0.0032) +(0.016 0.167 0.0032) +(0.016 0.173 0.0032) +(0.016 0.179 0.0032) +(0.016 0.185 0.0032) +(0.016 0.191 0.0032) +(0.016 0.197 0.0032) +(0.016 0.203 0.0032) +(0.016 0.209 0.0032) +(0.016 0.215 0.0032) +(0.016 0.221 0.0032) +(0.016 0.227 0.0032) +(0.016 0.233 0.0032) +(0.016 0.239 0.0032) +(0.016 0.245 0.0032) +(0.016 0.251 0.0032) +(0.016 0.257 0.0032) +(0.016 0.263 0.0032) +(0.016 0.269 0.0032) +(0.016 0.275 0.0032) +(0.016 0.281 0.0032) +(0.016 0.287 0.0032) +(0.016 0.293 0.0032) +(0.016 0.299 0.0032) +(0.016 0.305 0.0032) +(0.016 0.311 0.0032) +(0.016 0.317 0.0032) +(0.016 0.323 0.0032) +(0.016 0.329 0.0032) +(0.016 0.335 0.0032) +(0.016 0.341 0.0032) +(0.016 0.347 0.0032) +(0.016 0.353 0.0032) +(0.016 0.359 0.0032) +(0.016 0.365 0.0032) +(0.016 0.371 0.0032) +(0.016 0.377 0.0032) +(0.016 0.383 0.0032) +(0.016 0.389 0.0032) +(0.016 0.395 0.0032) +(0.016 0.401 0.0032) +(0.016 0.407 0.0032) +(0.016 0.413 0.0032) +(0.016 0.419 0.0032) +(0.016 0.425 0.0032) +(0.016 0.431 0.0032) +(0.016 0.437 0.0032) +(0.016 0.443 0.0032) +(0.016 0.449 0.0032) +(0.016 0.455 0.0032) +(0.016 0.461 0.0032) +(0.016 0.467 0.0032) +(0.016 0.473 0.0032) +(0.016 0.479 0.0032) +(0.016 0.485 0.0032) +(0.016 0.491 0.0032) +(0.016 0.497 0.0032) +(0.022 0.077 0.0032) +(0.022 0.083 0.0032) +(0.022 0.089 0.0032) +(0.022 0.095 0.0032) +(0.022 0.101 0.0032) +(0.022 0.107 0.0032) +(0.022 0.113 0.0032) +(0.022 0.119 0.0032) +(0.022 0.125 0.0032) +(0.022 0.131 0.0032) +(0.022 0.137 0.0032) +(0.022 0.143 0.0032) +(0.022 0.149 0.0032) +(0.022 0.155 0.0032) +(0.022 0.161 0.0032) +(0.022 0.167 0.0032) +(0.022 0.173 0.0032) +(0.022 0.179 0.0032) +(0.022 0.185 0.0032) +(0.022 0.191 0.0032) +(0.022 0.197 0.0032) +(0.022 0.203 0.0032) +(0.022 0.209 0.0032) +(0.022 0.215 0.0032) +(0.022 0.221 0.0032) +(0.022 0.227 0.0032) +(0.022 0.233 0.0032) +(0.022 0.239 0.0032) +(0.022 0.245 0.0032) +(0.022 0.251 0.0032) +(0.022 0.257 0.0032) +(0.022 0.263 0.0032) +(0.022 0.269 0.0032) +(0.022 0.275 0.0032) +(0.022 0.281 0.0032) +(0.022 0.287 0.0032) +(0.022 0.293 0.0032) +(0.022 0.299 0.0032) +(0.022 0.305 0.0032) +(0.022 0.311 0.0032) +(0.022 0.317 0.0032) +(0.022 0.323 0.0032) +(0.022 0.329 0.0032) +(0.022 0.335 0.0032) +(0.022 0.341 0.0032) +(0.022 0.347 0.0032) +(0.022 0.353 0.0032) +(0.022 0.359 0.0032) +(0.022 0.365 0.0032) +(0.022 0.371 0.0032) +(0.022 0.377 0.0032) +(0.022 0.383 0.0032) +(0.022 0.389 0.0032) +(0.022 0.395 0.0032) +(0.022 0.401 0.0032) +(0.022 0.407 0.0032) +(0.022 0.413 0.0032) +(0.022 0.419 0.0032) +(0.022 0.425 0.0032) +(0.022 0.431 0.0032) +(0.022 0.437 0.0032) +(0.022 0.443 0.0032) +(0.022 0.449 0.0032) +(0.022 0.455 0.0032) +(0.022 0.461 0.0032) +(0.022 0.467 0.0032) +(0.022 0.473 0.0032) +(0.022 0.479 0.0032) +(0.022 0.485 0.0032) +(0.022 0.491 0.0032) +(0.022 0.497 0.0032) +(0.028 0.077 0.0032) +(0.028 0.083 0.0032) +(0.028 0.089 0.0032) +(0.028 0.095 0.0032) +(0.028 0.101 0.0032) +(0.028 0.107 0.0032) +(0.028 0.113 0.0032) +(0.028 0.119 0.0032) +(0.028 0.125 0.0032) +(0.028 0.131 0.0032) +(0.028 0.137 0.0032) +(0.028 0.143 0.0032) +(0.028 0.149 0.0032) +(0.028 0.155 0.0032) +(0.028 0.161 0.0032) +(0.028 0.167 0.0032) +(0.028 0.173 0.0032) +(0.028 0.179 0.0032) +(0.028 0.185 0.0032) +(0.028 0.191 0.0032) +(0.028 0.197 0.0032) +(0.028 0.203 0.0032) +(0.028 0.209 0.0032) +(0.028 0.215 0.0032) +(0.028 0.221 0.0032) +(0.028 0.227 0.0032) +(0.028 0.233 0.0032) +(0.028 0.239 0.0032) +(0.028 0.245 0.0032) +(0.028 0.251 0.0032) +(0.028 0.257 0.0032) +(0.028 0.263 0.0032) +(0.028 0.269 0.0032) +(0.028 0.275 0.0032) +(0.028 0.281 0.0032) +(0.028 0.287 0.0032) +(0.028 0.293 0.0032) +(0.028 0.299 0.0032) +(0.028 0.305 0.0032) +(0.028 0.311 0.0032) +(0.028 0.317 0.0032) +(0.028 0.323 0.0032) +(0.028 0.329 0.0032) +(0.028 0.335 0.0032) +(0.028 0.341 0.0032) +(0.028 0.347 0.0032) +(0.028 0.353 0.0032) +(0.028 0.359 0.0032) +(0.028 0.365 0.0032) +(0.028 0.371 0.0032) +(0.028 0.377 0.0032) +(0.028 0.383 0.0032) +(0.028 0.389 0.0032) +(0.028 0.395 0.0032) +(0.028 0.401 0.0032) +(0.028 0.407 0.0032) +(0.028 0.413 0.0032) +(0.028 0.419 0.0032) +(0.028 0.425 0.0032) +(0.028 0.431 0.0032) +(0.028 0.437 0.0032) +(0.028 0.443 0.0032) +(0.028 0.449 0.0032) +(0.028 0.455 0.0032) +(0.028 0.461 0.0032) +(0.028 0.467 0.0032) +(0.028 0.473 0.0032) +(0.028 0.479 0.0032) +(0.028 0.485 0.0032) +(0.028 0.491 0.0032) +(0.028 0.497 0.0032) +(0.034 0.077 0.0032) +(0.034 0.083 0.0032) +(0.034 0.089 0.0032) +(0.034 0.095 0.0032) +(0.034 0.101 0.0032) +(0.034 0.107 0.0032) +(0.034 0.113 0.0032) +(0.034 0.119 0.0032) +(0.034 0.125 0.0032) +(0.034 0.131 0.0032) +(0.034 0.137 0.0032) +(0.034 0.143 0.0032) +(0.034 0.149 0.0032) +(0.034 0.155 0.0032) +(0.034 0.161 0.0032) +(0.034 0.167 0.0032) +(0.034 0.173 0.0032) +(0.034 0.179 0.0032) +(0.034 0.185 0.0032) +(0.034 0.191 0.0032) +(0.034 0.197 0.0032) +(0.034 0.203 0.0032) +(0.034 0.209 0.0032) +(0.034 0.215 0.0032) +(0.034 0.221 0.0032) +(0.034 0.227 0.0032) +(0.034 0.233 0.0032) +(0.034 0.239 0.0032) +(0.034 0.245 0.0032) +(0.034 0.251 0.0032) +(0.034 0.257 0.0032) +(0.034 0.263 0.0032) +(0.034 0.269 0.0032) +(0.034 0.275 0.0032) +(0.034 0.281 0.0032) +(0.034 0.287 0.0032) +(0.034 0.293 0.0032) +(0.034 0.299 0.0032) +(0.034 0.305 0.0032) +(0.034 0.311 0.0032) +(0.034 0.317 0.0032) +(0.034 0.323 0.0032) +(0.034 0.329 0.0032) +(0.034 0.335 0.0032) +(0.034 0.341 0.0032) +(0.034 0.347 0.0032) +(0.034 0.353 0.0032) +(0.034 0.359 0.0032) +(0.034 0.365 0.0032) +(0.034 0.371 0.0032) +(0.034 0.377 0.0032) +(0.034 0.383 0.0032) +(0.034 0.389 0.0032) +(0.034 0.395 0.0032) +(0.034 0.401 0.0032) +(0.034 0.407 0.0032) +(0.034 0.413 0.0032) +(0.034 0.419 0.0032) +(0.034 0.425 0.0032) +(0.034 0.431 0.0032) +(0.034 0.437 0.0032) +(0.034 0.443 0.0032) +(0.034 0.449 0.0032) +(0.034 0.455 0.0032) +(0.034 0.461 0.0032) +(0.034 0.467 0.0032) +(0.034 0.473 0.0032) +(0.034 0.479 0.0032) +(0.034 0.485 0.0032) +(0.034 0.491 0.0032) +(0.034 0.497 0.0032) +(0.04 0.077 0.0032) +(0.04 0.083 0.0032) +(0.04 0.089 0.0032) +(0.04 0.095 0.0032) +(0.04 0.101 0.0032) +(0.04 0.107 0.0032) +(0.04 0.113 0.0032) +(0.04 0.119 0.0032) +(0.04 0.125 0.0032) +(0.04 0.131 0.0032) +(0.04 0.137 0.0032) +(0.04 0.143 0.0032) +(0.04 0.149 0.0032) +(0.04 0.155 0.0032) +(0.04 0.161 0.0032) +(0.04 0.167 0.0032) +(0.04 0.173 0.0032) +(0.04 0.179 0.0032) +(0.04 0.185 0.0032) +(0.04 0.191 0.0032) +(0.04 0.197 0.0032) +(0.04 0.203 0.0032) +(0.04 0.209 0.0032) +(0.04 0.215 0.0032) +(0.04 0.221 0.0032) +(0.04 0.227 0.0032) +(0.04 0.233 0.0032) +(0.04 0.239 0.0032) +(0.04 0.245 0.0032) +(0.04 0.251 0.0032) +(0.04 0.257 0.0032) +(0.04 0.263 0.0032) +(0.04 0.269 0.0032) +(0.04 0.275 0.0032) +(0.04 0.281 0.0032) +(0.04 0.287 0.0032) +(0.04 0.293 0.0032) +(0.04 0.299 0.0032) +(0.04 0.305 0.0032) +(0.04 0.311 0.0032) +(0.04 0.317 0.0032) +(0.04 0.323 0.0032) +(0.04 0.329 0.0032) +(0.04 0.335 0.0032) +(0.04 0.341 0.0032) +(0.04 0.347 0.0032) +(0.04 0.353 0.0032) +(0.04 0.359 0.0032) +(0.04 0.365 0.0032) +(0.04 0.371 0.0032) +(0.04 0.377 0.0032) +(0.04 0.383 0.0032) +(0.04 0.389 0.0032) +(0.04 0.395 0.0032) +(0.04 0.401 0.0032) +(0.04 0.407 0.0032) +(0.04 0.413 0.0032) +(0.04 0.419 0.0032) +(0.04 0.425 0.0032) +(0.04 0.431 0.0032) +(0.04 0.437 0.0032) +(0.04 0.443 0.0032) +(0.04 0.449 0.0032) +(0.04 0.455 0.0032) +(0.04 0.461 0.0032) +(0.04 0.467 0.0032) +(0.04 0.473 0.0032) +(0.04 0.479 0.0032) +(0.04 0.485 0.0032) +(0.04 0.491 0.0032) +(0.04 0.497 0.0032) +(0.046 0.077 0.0032) +(0.046 0.083 0.0032) +(0.046 0.089 0.0032) +(0.046 0.095 0.0032) +(0.046 0.101 0.0032) +(0.046 0.107 0.0032) +(0.046 0.113 0.0032) +(0.046 0.119 0.0032) +(0.046 0.125 0.0032) +(0.046 0.131 0.0032) +(0.046 0.137 0.0032) +(0.046 0.143 0.0032) +(0.046 0.149 0.0032) +(0.046 0.155 0.0032) +(0.046 0.161 0.0032) +(0.046 0.167 0.0032) +(0.046 0.173 0.0032) +(0.046 0.179 0.0032) +(0.046 0.185 0.0032) +(0.046 0.191 0.0032) +(0.046 0.197 0.0032) +(0.046 0.203 0.0032) +(0.046 0.209 0.0032) +(0.046 0.215 0.0032) +(0.046 0.221 0.0032) +(0.046 0.227 0.0032) +(0.046 0.233 0.0032) +(0.046 0.239 0.0032) +(0.046 0.245 0.0032) +(0.046 0.251 0.0032) +(0.046 0.257 0.0032) +(0.046 0.263 0.0032) +(0.046 0.269 0.0032) +(0.046 0.275 0.0032) +(0.046 0.281 0.0032) +(0.046 0.287 0.0032) +(0.046 0.293 0.0032) +(0.046 0.299 0.0032) +(0.046 0.305 0.0032) +(0.046 0.311 0.0032) +(0.046 0.317 0.0032) +(0.046 0.323 0.0032) +(0.046 0.329 0.0032) +(0.046 0.335 0.0032) +(0.046 0.341 0.0032) +(0.046 0.347 0.0032) +(0.046 0.353 0.0032) +(0.046 0.359 0.0032) +(0.046 0.365 0.0032) +(0.046 0.371 0.0032) +(0.046 0.377 0.0032) +(0.046 0.383 0.0032) +(0.046 0.389 0.0032) +(0.046 0.395 0.0032) +(0.046 0.401 0.0032) +(0.046 0.407 0.0032) +(0.046 0.413 0.0032) +(0.046 0.419 0.0032) +(0.046 0.425 0.0032) +(0.046 0.431 0.0032) +(0.046 0.437 0.0032) +(0.046 0.443 0.0032) +(0.046 0.449 0.0032) +(0.046 0.455 0.0032) +(0.046 0.461 0.0032) +(0.046 0.467 0.0032) +(0.046 0.473 0.0032) +(0.046 0.479 0.0032) +(0.046 0.485 0.0032) +(0.046 0.491 0.0032) +(0.046 0.497 0.0032) +(0.052 0.077 0.0032) +(0.052 0.083 0.0032) +(0.052 0.089 0.0032) +(0.052 0.095 0.0032) +(0.052 0.101 0.0032) +(0.052 0.107 0.0032) +(0.052 0.113 0.0032) +(0.052 0.119 0.0032) +(0.052 0.125 0.0032) +(0.052 0.131 0.0032) +(0.052 0.137 0.0032) +(0.052 0.143 0.0032) +(0.052 0.149 0.0032) +(0.052 0.155 0.0032) +(0.052 0.161 0.0032) +(0.052 0.167 0.0032) +(0.052 0.173 0.0032) +(0.052 0.179 0.0032) +(0.052 0.185 0.0032) +(0.052 0.191 0.0032) +(0.052 0.197 0.0032) +(0.052 0.203 0.0032) +(0.052 0.209 0.0032) +(0.052 0.215 0.0032) +(0.052 0.221 0.0032) +(0.052 0.227 0.0032) +(0.052 0.233 0.0032) +(0.052 0.239 0.0032) +(0.052 0.245 0.0032) +(0.052 0.251 0.0032) +(0.052 0.257 0.0032) +(0.052 0.263 0.0032) +(0.052 0.269 0.0032) +(0.052 0.275 0.0032) +(0.052 0.281 0.0032) +(0.052 0.287 0.0032) +(0.052 0.293 0.0032) +(0.052 0.299 0.0032) +(0.052 0.305 0.0032) +(0.052 0.311 0.0032) +(0.052 0.317 0.0032) +(0.052 0.323 0.0032) +(0.052 0.329 0.0032) +(0.052 0.335 0.0032) +(0.052 0.341 0.0032) +(0.052 0.347 0.0032) +(0.052 0.353 0.0032) +(0.052 0.359 0.0032) +(0.052 0.365 0.0032) +(0.052 0.371 0.0032) +(0.052 0.377 0.0032) +(0.052 0.383 0.0032) +(0.052 0.389 0.0032) +(0.052 0.395 0.0032) +(0.052 0.401 0.0032) +(0.052 0.407 0.0032) +(0.052 0.413 0.0032) +(0.052 0.419 0.0032) +(0.052 0.425 0.0032) +(0.052 0.431 0.0032) +(0.052 0.437 0.0032) +(0.052 0.443 0.0032) +(0.052 0.449 0.0032) +(0.052 0.455 0.0032) +(0.052 0.461 0.0032) +(0.052 0.467 0.0032) +(0.052 0.473 0.0032) +(0.052 0.479 0.0032) +(0.052 0.485 0.0032) +(0.052 0.491 0.0032) +(0.052 0.497 0.0032) +(0.058 0.077 0.0032) +(0.058 0.083 0.0032) +(0.058 0.089 0.0032) +(0.058 0.095 0.0032) +(0.058 0.101 0.0032) +(0.058 0.107 0.0032) +(0.058 0.113 0.0032) +(0.058 0.119 0.0032) +(0.058 0.125 0.0032) +(0.058 0.131 0.0032) +(0.058 0.137 0.0032) +(0.058 0.143 0.0032) +(0.058 0.149 0.0032) +(0.058 0.155 0.0032) +(0.058 0.161 0.0032) +(0.058 0.167 0.0032) +(0.058 0.173 0.0032) +(0.058 0.179 0.0032) +(0.058 0.185 0.0032) +(0.058 0.191 0.0032) +(0.058 0.197 0.0032) +(0.058 0.203 0.0032) +(0.058 0.209 0.0032) +(0.058 0.215 0.0032) +(0.058 0.221 0.0032) +(0.058 0.227 0.0032) +(0.058 0.233 0.0032) +(0.058 0.239 0.0032) +(0.058 0.245 0.0032) +(0.058 0.251 0.0032) +(0.058 0.257 0.0032) +(0.058 0.263 0.0032) +(0.058 0.269 0.0032) +(0.058 0.275 0.0032) +(0.058 0.281 0.0032) +(0.058 0.287 0.0032) +(0.058 0.293 0.0032) +(0.058 0.299 0.0032) +(0.058 0.305 0.0032) +(0.058 0.311 0.0032) +(0.058 0.317 0.0032) +(0.058 0.323 0.0032) +(0.058 0.329 0.0032) +(0.058 0.335 0.0032) +(0.058 0.341 0.0032) +(0.058 0.347 0.0032) +(0.058 0.353 0.0032) +(0.058 0.359 0.0032) +(0.058 0.365 0.0032) +(0.058 0.371 0.0032) +(0.058 0.377 0.0032) +(0.058 0.383 0.0032) +(0.058 0.389 0.0032) +(0.058 0.395 0.0032) +(0.058 0.401 0.0032) +(0.058 0.407 0.0032) +(0.058 0.413 0.0032) +(0.058 0.419 0.0032) +(0.058 0.425 0.0032) +(0.058 0.431 0.0032) +(0.058 0.437 0.0032) +(0.058 0.443 0.0032) +(0.058 0.449 0.0032) +(0.058 0.455 0.0032) +(0.058 0.461 0.0032) +(0.058 0.467 0.0032) +(0.058 0.473 0.0032) +(0.058 0.479 0.0032) +(0.058 0.485 0.0032) +(0.058 0.491 0.0032) +(0.058 0.497 0.0032) +(0.064 0.077 0.0032) +(0.064 0.083 0.0032) +(0.064 0.089 0.0032) +(0.064 0.095 0.0032) +(0.064 0.101 0.0032) +(0.064 0.107 0.0032) +(0.064 0.113 0.0032) +(0.064 0.119 0.0032) +(0.064 0.125 0.0032) +(0.064 0.131 0.0032) +(0.064 0.137 0.0032) +(0.064 0.143 0.0032) +(0.064 0.149 0.0032) +(0.064 0.155 0.0032) +(0.064 0.161 0.0032) +(0.064 0.167 0.0032) +(0.064 0.173 0.0032) +(0.064 0.179 0.0032) +(0.064 0.185 0.0032) +(0.064 0.191 0.0032) +(0.064 0.197 0.0032) +(0.064 0.203 0.0032) +(0.064 0.209 0.0032) +(0.064 0.215 0.0032) +(0.064 0.221 0.0032) +(0.064 0.227 0.0032) +(0.064 0.233 0.0032) +(0.064 0.239 0.0032) +(0.064 0.245 0.0032) +(0.064 0.251 0.0032) +(0.064 0.257 0.0032) +(0.064 0.263 0.0032) +(0.064 0.269 0.0032) +(0.064 0.275 0.0032) +(0.064 0.281 0.0032) +(0.064 0.287 0.0032) +(0.064 0.293 0.0032) +(0.064 0.299 0.0032) +(0.064 0.305 0.0032) +(0.064 0.311 0.0032) +(0.064 0.317 0.0032) +(0.064 0.323 0.0032) +(0.064 0.329 0.0032) +(0.064 0.335 0.0032) +(0.064 0.341 0.0032) +(0.064 0.347 0.0032) +(0.064 0.353 0.0032) +(0.064 0.359 0.0032) +(0.064 0.365 0.0032) +(0.064 0.371 0.0032) +(0.064 0.377 0.0032) +(0.064 0.383 0.0032) +(0.064 0.389 0.0032) +(0.064 0.395 0.0032) +(0.064 0.401 0.0032) +(0.064 0.407 0.0032) +(0.064 0.413 0.0032) +(0.064 0.419 0.0032) +(0.064 0.425 0.0032) +(0.064 0.431 0.0032) +(0.064 0.437 0.0032) +(0.064 0.443 0.0032) +(0.064 0.449 0.0032) +(0.064 0.455 0.0032) +(0.064 0.461 0.0032) +(0.064 0.467 0.0032) +(0.064 0.473 0.0032) +(0.064 0.479 0.0032) +(0.064 0.485 0.0032) +(0.064 0.491 0.0032) +(0.064 0.497 0.0032) +(0.07 0.077 0.0032) +(0.07 0.083 0.0032) +(0.07 0.089 0.0032) +(0.07 0.095 0.0032) +(0.07 0.101 0.0032) +(0.07 0.107 0.0032) +(0.07 0.113 0.0032) +(0.07 0.119 0.0032) +(0.07 0.125 0.0032) +(0.07 0.131 0.0032) +(0.07 0.137 0.0032) +(0.07 0.143 0.0032) +(0.07 0.149 0.0032) +(0.07 0.155 0.0032) +(0.07 0.161 0.0032) +(0.07 0.167 0.0032) +(0.07 0.173 0.0032) +(0.07 0.179 0.0032) +(0.07 0.185 0.0032) +(0.07 0.191 0.0032) +(0.07 0.197 0.0032) +(0.07 0.203 0.0032) +(0.07 0.209 0.0032) +(0.07 0.215 0.0032) +(0.07 0.221 0.0032) +(0.07 0.227 0.0032) +(0.07 0.233 0.0032) +(0.07 0.239 0.0032) +(0.07 0.245 0.0032) +(0.07 0.251 0.0032) +(0.07 0.257 0.0032) +(0.07 0.263 0.0032) +(0.07 0.269 0.0032) +(0.07 0.275 0.0032) +(0.07 0.281 0.0032) +(0.07 0.287 0.0032) +(0.07 0.293 0.0032) +(0.07 0.299 0.0032) +(0.07 0.305 0.0032) +(0.07 0.311 0.0032) +(0.07 0.317 0.0032) +(0.07 0.323 0.0032) +(0.07 0.329 0.0032) +(0.07 0.335 0.0032) +(0.07 0.341 0.0032) +(0.07 0.347 0.0032) +(0.07 0.353 0.0032) +(0.07 0.359 0.0032) +(0.07 0.365 0.0032) +(0.07 0.371 0.0032) +(0.07 0.377 0.0032) +(0.07 0.383 0.0032) +(0.07 0.389 0.0032) +(0.07 0.395 0.0032) +(0.07 0.401 0.0032) +(0.07 0.407 0.0032) +(0.07 0.413 0.0032) +(0.07 0.419 0.0032) +(0.07 0.425 0.0032) +(0.07 0.431 0.0032) +(0.07 0.437 0.0032) +(0.07 0.443 0.0032) +(0.07 0.449 0.0032) +(0.07 0.455 0.0032) +(0.07 0.461 0.0032) +(0.07 0.467 0.0032) +(0.07 0.473 0.0032) +(0.07 0.479 0.0032) +(0.07 0.485 0.0032) +(0.07 0.491 0.0032) +(0.07 0.497 0.0032) +(0.076 0.077 0.0032) +(0.076 0.083 0.0032) +(0.076 0.089 0.0032) +(0.076 0.095 0.0032) +(0.076 0.101 0.0032) +(0.076 0.107 0.0032) +(0.076 0.113 0.0032) +(0.076 0.119 0.0032) +(0.076 0.125 0.0032) +(0.076 0.131 0.0032) +(0.076 0.137 0.0032) +(0.076 0.143 0.0032) +(0.076 0.149 0.0032) +(0.076 0.155 0.0032) +(0.076 0.161 0.0032) +(0.076 0.167 0.0032) +(0.076 0.173 0.0032) +(0.076 0.179 0.0032) +(0.076 0.185 0.0032) +(0.076 0.191 0.0032) +(0.076 0.197 0.0032) +(0.076 0.203 0.0032) +(0.076 0.209 0.0032) +(0.076 0.215 0.0032) +(0.076 0.221 0.0032) +(0.076 0.227 0.0032) +(0.076 0.233 0.0032) +(0.076 0.239 0.0032) +(0.076 0.245 0.0032) +(0.076 0.251 0.0032) +(0.076 0.257 0.0032) +(0.076 0.263 0.0032) +(0.076 0.269 0.0032) +(0.076 0.275 0.0032) +(0.076 0.281 0.0032) +(0.076 0.287 0.0032) +(0.076 0.293 0.0032) +(0.076 0.299 0.0032) +(0.076 0.305 0.0032) +(0.076 0.311 0.0032) +(0.076 0.317 0.0032) +(0.076 0.323 0.0032) +(0.076 0.329 0.0032) +(0.076 0.335 0.0032) +(0.076 0.341 0.0032) +(0.076 0.347 0.0032) +(0.076 0.353 0.0032) +(0.076 0.359 0.0032) +(0.076 0.365 0.0032) +(0.076 0.371 0.0032) +(0.076 0.377 0.0032) +(0.076 0.383 0.0032) +(0.076 0.389 0.0032) +(0.076 0.395 0.0032) +(0.076 0.401 0.0032) +(0.076 0.407 0.0032) +(0.076 0.413 0.0032) +(0.076 0.419 0.0032) +(0.076 0.425 0.0032) +(0.076 0.431 0.0032) +(0.076 0.437 0.0032) +(0.076 0.443 0.0032) +(0.076 0.449 0.0032) +(0.076 0.455 0.0032) +(0.076 0.461 0.0032) +(0.076 0.467 0.0032) +(0.076 0.473 0.0032) +(0.076 0.479 0.0032) +(0.076 0.485 0.0032) +(0.076 0.491 0.0032) +(0.076 0.497 0.0032) +(0.082 0.077 0.0032) +(0.082 0.083 0.0032) +(0.082 0.089 0.0032) +(0.082 0.095 0.0032) +(0.082 0.101 0.0032) +(0.082 0.107 0.0032) +(0.082 0.113 0.0032) +(0.082 0.119 0.0032) +(0.082 0.125 0.0032) +(0.082 0.131 0.0032) +(0.082 0.137 0.0032) +(0.082 0.143 0.0032) +(0.082 0.149 0.0032) +(0.082 0.155 0.0032) +(0.082 0.161 0.0032) +(0.082 0.167 0.0032) +(0.082 0.173 0.0032) +(0.082 0.179 0.0032) +(0.082 0.185 0.0032) +(0.082 0.191 0.0032) +(0.082 0.197 0.0032) +(0.082 0.203 0.0032) +(0.082 0.209 0.0032) +(0.082 0.215 0.0032) +(0.082 0.221 0.0032) +(0.082 0.227 0.0032) +(0.082 0.233 0.0032) +(0.082 0.239 0.0032) +(0.082 0.245 0.0032) +(0.082 0.251 0.0032) +(0.082 0.257 0.0032) +(0.082 0.263 0.0032) +(0.082 0.269 0.0032) +(0.082 0.275 0.0032) +(0.082 0.281 0.0032) +(0.082 0.287 0.0032) +(0.082 0.293 0.0032) +(0.082 0.299 0.0032) +(0.082 0.305 0.0032) +(0.082 0.311 0.0032) +(0.082 0.317 0.0032) +(0.082 0.323 0.0032) +(0.082 0.329 0.0032) +(0.082 0.335 0.0032) +(0.082 0.341 0.0032) +(0.082 0.347 0.0032) +(0.082 0.353 0.0032) +(0.082 0.359 0.0032) +(0.082 0.365 0.0032) +(0.082 0.371 0.0032) +(0.082 0.377 0.0032) +(0.082 0.383 0.0032) +(0.082 0.389 0.0032) +(0.082 0.395 0.0032) +(0.082 0.401 0.0032) +(0.082 0.407 0.0032) +(0.082 0.413 0.0032) +(0.082 0.419 0.0032) +(0.082 0.425 0.0032) +(0.082 0.431 0.0032) +(0.082 0.437 0.0032) +(0.082 0.443 0.0032) +(0.082 0.449 0.0032) +(0.082 0.455 0.0032) +(0.082 0.461 0.0032) +(0.082 0.467 0.0032) +(0.082 0.473 0.0032) +(0.082 0.479 0.0032) +(0.082 0.485 0.0032) +(0.082 0.491 0.0032) +(0.082 0.497 0.0032) +(0.088 0.077 0.0032) +(0.088 0.083 0.0032) +(0.088 0.089 0.0032) +(0.088 0.095 0.0032) +(0.088 0.101 0.0032) +(0.088 0.107 0.0032) +(0.088 0.113 0.0032) +(0.088 0.119 0.0032) +(0.088 0.125 0.0032) +(0.088 0.131 0.0032) +(0.088 0.137 0.0032) +(0.088 0.143 0.0032) +(0.088 0.149 0.0032) +(0.088 0.155 0.0032) +(0.088 0.161 0.0032) +(0.088 0.167 0.0032) +(0.088 0.173 0.0032) +(0.088 0.179 0.0032) +(0.088 0.185 0.0032) +(0.088 0.191 0.0032) +(0.088 0.197 0.0032) +(0.088 0.203 0.0032) +(0.088 0.209 0.0032) +(0.088 0.215 0.0032) +(0.088 0.221 0.0032) +(0.088 0.227 0.0032) +(0.088 0.233 0.0032) +(0.088 0.239 0.0032) +(0.088 0.245 0.0032) +(0.088 0.251 0.0032) +(0.088 0.257 0.0032) +(0.088 0.263 0.0032) +(0.088 0.269 0.0032) +(0.088 0.275 0.0032) +(0.088 0.281 0.0032) +(0.088 0.287 0.0032) +(0.088 0.293 0.0032) +(0.088 0.299 0.0032) +(0.088 0.305 0.0032) +(0.088 0.311 0.0032) +(0.088 0.317 0.0032) +(0.088 0.323 0.0032) +(0.088 0.329 0.0032) +(0.088 0.335 0.0032) +(0.088 0.341 0.0032) +(0.088 0.347 0.0032) +(0.088 0.353 0.0032) +(0.088 0.359 0.0032) +(0.088 0.365 0.0032) +(0.088 0.371 0.0032) +(0.088 0.377 0.0032) +(0.088 0.383 0.0032) +(0.088 0.389 0.0032) +(0.088 0.395 0.0032) +(0.088 0.401 0.0032) +(0.088 0.407 0.0032) +(0.088 0.413 0.0032) +(0.088 0.419 0.0032) +(0.088 0.425 0.0032) +(0.088 0.431 0.0032) +(0.088 0.437 0.0032) +(0.088 0.443 0.0032) +(0.088 0.449 0.0032) +(0.088 0.455 0.0032) +(0.088 0.461 0.0032) +(0.088 0.467 0.0032) +(0.088 0.473 0.0032) +(0.088 0.479 0.0032) +(0.088 0.485 0.0032) +(0.088 0.491 0.0032) +(0.088 0.497 0.0032) +(0.094 0.077 0.0032) +(0.094 0.083 0.0032) +(0.094 0.089 0.0032) +(0.094 0.095 0.0032) +(0.094 0.101 0.0032) +(0.094 0.107 0.0032) +(0.094 0.113 0.0032) +(0.094 0.119 0.0032) +(0.094 0.125 0.0032) +(0.094 0.131 0.0032) +(0.094 0.137 0.0032) +(0.094 0.143 0.0032) +(0.094 0.149 0.0032) +(0.094 0.155 0.0032) +(0.094 0.161 0.0032) +(0.094 0.167 0.0032) +(0.094 0.173 0.0032) +(0.094 0.179 0.0032) +(0.094 0.185 0.0032) +(0.094 0.191 0.0032) +(0.094 0.197 0.0032) +(0.094 0.203 0.0032) +(0.094 0.209 0.0032) +(0.094 0.215 0.0032) +(0.094 0.221 0.0032) +(0.094 0.227 0.0032) +(0.094 0.233 0.0032) +(0.094 0.239 0.0032) +(0.094 0.245 0.0032) +(0.094 0.251 0.0032) +(0.094 0.257 0.0032) +(0.094 0.263 0.0032) +(0.094 0.269 0.0032) +(0.094 0.275 0.0032) +(0.094 0.281 0.0032) +(0.094 0.287 0.0032) +(0.094 0.293 0.0032) +(0.094 0.299 0.0032) +(0.094 0.305 0.0032) +(0.094 0.311 0.0032) +(0.094 0.317 0.0032) +(0.094 0.323 0.0032) +(0.094 0.329 0.0032) +(0.094 0.335 0.0032) +(0.094 0.341 0.0032) +(0.094 0.347 0.0032) +(0.094 0.353 0.0032) +(0.094 0.359 0.0032) +(0.094 0.365 0.0032) +(0.094 0.371 0.0032) +(0.094 0.377 0.0032) +(0.094 0.383 0.0032) +(0.094 0.389 0.0032) +(0.094 0.395 0.0032) +(0.094 0.401 0.0032) +(0.094 0.407 0.0032) +(0.094 0.413 0.0032) +(0.094 0.419 0.0032) +(0.094 0.425 0.0032) +(0.094 0.431 0.0032) +(0.094 0.437 0.0032) +(0.094 0.443 0.0032) +(0.094 0.449 0.0032) +(0.094 0.455 0.0032) +(0.094 0.461 0.0032) +(0.094 0.467 0.0032) +(0.094 0.473 0.0032) +(0.094 0.479 0.0032) +(0.094 0.485 0.0032) +(0.094 0.491 0.0032) +(0.094 0.497 0.0032) +(0.1 0.077 0.0032) +(0.1 0.083 0.0032) +(0.1 0.089 0.0032) +(0.1 0.095 0.0032) +(0.1 0.101 0.0032) +(0.1 0.107 0.0032) +(0.1 0.113 0.0032) +(0.1 0.119 0.0032) +(0.1 0.125 0.0032) +(0.1 0.131 0.0032) +(0.1 0.137 0.0032) +(0.1 0.143 0.0032) +(0.1 0.149 0.0032) +(0.1 0.155 0.0032) +(0.1 0.161 0.0032) +(0.1 0.167 0.0032) +(0.1 0.173 0.0032) +(0.1 0.179 0.0032) +(0.1 0.185 0.0032) +(0.1 0.191 0.0032) +(0.1 0.197 0.0032) +(0.1 0.203 0.0032) +(0.1 0.209 0.0032) +(0.1 0.215 0.0032) +(0.1 0.221 0.0032) +(0.1 0.227 0.0032) +(0.1 0.233 0.0032) +(0.1 0.239 0.0032) +(0.1 0.245 0.0032) +(0.1 0.251 0.0032) +(0.1 0.257 0.0032) +(0.1 0.263 0.0032) +(0.1 0.269 0.0032) +(0.1 0.275 0.0032) +(0.1 0.281 0.0032) +(0.1 0.287 0.0032) +(0.1 0.293 0.0032) +(0.1 0.299 0.0032) +(0.1 0.305 0.0032) +(0.1 0.311 0.0032) +(0.1 0.317 0.0032) +(0.1 0.323 0.0032) +(0.1 0.329 0.0032) +(0.1 0.335 0.0032) +(0.1 0.341 0.0032) +(0.1 0.347 0.0032) +(0.1 0.353 0.0032) +(0.1 0.359 0.0032) +(0.1 0.365 0.0032) +(0.1 0.371 0.0032) +(0.1 0.377 0.0032) +(0.1 0.383 0.0032) +(0.1 0.389 0.0032) +(0.1 0.395 0.0032) +(0.1 0.401 0.0032) +(0.1 0.407 0.0032) +(0.1 0.413 0.0032) +(0.1 0.419 0.0032) +(0.1 0.425 0.0032) +(0.1 0.431 0.0032) +(0.1 0.437 0.0032) +(0.1 0.443 0.0032) +(0.1 0.449 0.0032) +(0.1 0.455 0.0032) +(0.1 0.461 0.0032) +(0.1 0.467 0.0032) +(0.1 0.473 0.0032) +(0.1 0.479 0.0032) +(0.1 0.485 0.0032) +(0.1 0.491 0.0032) +(0.1 0.497 0.0032) +(0.106 0.077 0.0032) +(0.106 0.083 0.0032) +(0.106 0.089 0.0032) +(0.106 0.095 0.0032) +(0.106 0.101 0.0032) +(0.106 0.107 0.0032) +(0.106 0.113 0.0032) +(0.106 0.119 0.0032) +(0.106 0.125 0.0032) +(0.106 0.131 0.0032) +(0.106 0.137 0.0032) +(0.106 0.143 0.0032) +(0.106 0.149 0.0032) +(0.106 0.155 0.0032) +(0.106 0.161 0.0032) +(0.106 0.167 0.0032) +(0.106 0.173 0.0032) +(0.106 0.179 0.0032) +(0.106 0.185 0.0032) +(0.106 0.191 0.0032) +(0.106 0.197 0.0032) +(0.106 0.203 0.0032) +(0.106 0.209 0.0032) +(0.106 0.215 0.0032) +(0.106 0.221 0.0032) +(0.106 0.227 0.0032) +(0.106 0.233 0.0032) +(0.106 0.239 0.0032) +(0.106 0.245 0.0032) +(0.106 0.251 0.0032) +(0.106 0.257 0.0032) +(0.106 0.263 0.0032) +(0.106 0.269 0.0032) +(0.106 0.275 0.0032) +(0.106 0.281 0.0032) +(0.106 0.287 0.0032) +(0.106 0.293 0.0032) +(0.106 0.299 0.0032) +(0.106 0.305 0.0032) +(0.106 0.311 0.0032) +(0.106 0.317 0.0032) +(0.106 0.323 0.0032) +(0.106 0.329 0.0032) +(0.106 0.335 0.0032) +(0.106 0.341 0.0032) +(0.106 0.347 0.0032) +(0.106 0.353 0.0032) +(0.106 0.359 0.0032) +(0.106 0.365 0.0032) +(0.106 0.371 0.0032) +(0.106 0.377 0.0032) +(0.106 0.383 0.0032) +(0.106 0.389 0.0032) +(0.106 0.395 0.0032) +(0.106 0.401 0.0032) +(0.106 0.407 0.0032) +(0.106 0.413 0.0032) +(0.106 0.419 0.0032) +(0.106 0.425 0.0032) +(0.106 0.431 0.0032) +(0.106 0.437 0.0032) +(0.106 0.443 0.0032) +(0.106 0.449 0.0032) +(0.106 0.455 0.0032) +(0.106 0.461 0.0032) +(0.106 0.467 0.0032) +(0.106 0.473 0.0032) +(0.106 0.479 0.0032) +(0.106 0.485 0.0032) +(0.106 0.491 0.0032) +(0.106 0.497 0.0032) +(0.112 0.077 0.0032) +(0.112 0.083 0.0032) +(0.112 0.089 0.0032) +(0.112 0.095 0.0032) +(0.112 0.101 0.0032) +(0.112 0.107 0.0032) +(0.112 0.113 0.0032) +(0.112 0.119 0.0032) +(0.112 0.125 0.0032) +(0.112 0.131 0.0032) +(0.112 0.137 0.0032) +(0.112 0.143 0.0032) +(0.112 0.149 0.0032) +(0.112 0.155 0.0032) +(0.112 0.161 0.0032) +(0.112 0.167 0.0032) +(0.112 0.173 0.0032) +(0.112 0.179 0.0032) +(0.112 0.185 0.0032) +(0.112 0.191 0.0032) +(0.112 0.197 0.0032) +(0.112 0.203 0.0032) +(0.112 0.209 0.0032) +(0.112 0.215 0.0032) +(0.112 0.221 0.0032) +(0.112 0.227 0.0032) +(0.112 0.233 0.0032) +(0.112 0.239 0.0032) +(0.112 0.245 0.0032) +(0.112 0.251 0.0032) +(0.112 0.257 0.0032) +(0.112 0.263 0.0032) +(0.112 0.269 0.0032) +(0.112 0.275 0.0032) +(0.112 0.281 0.0032) +(0.112 0.287 0.0032) +(0.112 0.293 0.0032) +(0.112 0.299 0.0032) +(0.112 0.305 0.0032) +(0.112 0.311 0.0032) +(0.112 0.317 0.0032) +(0.112 0.323 0.0032) +(0.112 0.329 0.0032) +(0.112 0.335 0.0032) +(0.112 0.341 0.0032) +(0.112 0.347 0.0032) +(0.112 0.353 0.0032) +(0.112 0.359 0.0032) +(0.112 0.365 0.0032) +(0.112 0.371 0.0032) +(0.112 0.377 0.0032) +(0.112 0.383 0.0032) +(0.112 0.389 0.0032) +(0.112 0.395 0.0032) +(0.112 0.401 0.0032) +(0.112 0.407 0.0032) +(0.112 0.413 0.0032) +(0.112 0.419 0.0032) +(0.112 0.425 0.0032) +(0.112 0.431 0.0032) +(0.112 0.437 0.0032) +(0.112 0.443 0.0032) +(0.112 0.449 0.0032) +(0.112 0.455 0.0032) +(0.112 0.461 0.0032) +(0.112 0.467 0.0032) +(0.112 0.473 0.0032) +(0.112 0.479 0.0032) +(0.112 0.485 0.0032) +(0.112 0.491 0.0032) +(0.112 0.497 0.0032) +(0.118 0.077 0.0032) +(0.118 0.083 0.0032) +(0.118 0.089 0.0032) +(0.118 0.095 0.0032) +(0.118 0.101 0.0032) +(0.118 0.107 0.0032) +(0.118 0.113 0.0032) +(0.118 0.119 0.0032) +(0.118 0.125 0.0032) +(0.118 0.131 0.0032) +(0.118 0.137 0.0032) +(0.118 0.143 0.0032) +(0.118 0.149 0.0032) +(0.118 0.155 0.0032) +(0.118 0.161 0.0032) +(0.118 0.167 0.0032) +(0.118 0.173 0.0032) +(0.118 0.179 0.0032) +(0.118 0.185 0.0032) +(0.118 0.191 0.0032) +(0.118 0.197 0.0032) +(0.118 0.203 0.0032) +(0.118 0.209 0.0032) +(0.118 0.215 0.0032) +(0.118 0.221 0.0032) +(0.118 0.227 0.0032) +(0.118 0.233 0.0032) +(0.118 0.239 0.0032) +(0.118 0.245 0.0032) +(0.118 0.251 0.0032) +(0.118 0.257 0.0032) +(0.118 0.263 0.0032) +(0.118 0.269 0.0032) +(0.118 0.275 0.0032) +(0.118 0.281 0.0032) +(0.118 0.287 0.0032) +(0.118 0.293 0.0032) +(0.118 0.299 0.0032) +(0.118 0.305 0.0032) +(0.118 0.311 0.0032) +(0.118 0.317 0.0032) +(0.118 0.323 0.0032) +(0.118 0.329 0.0032) +(0.118 0.335 0.0032) +(0.118 0.341 0.0032) +(0.118 0.347 0.0032) +(0.118 0.353 0.0032) +(0.118 0.359 0.0032) +(0.118 0.365 0.0032) +(0.118 0.371 0.0032) +(0.118 0.377 0.0032) +(0.118 0.383 0.0032) +(0.118 0.389 0.0032) +(0.118 0.395 0.0032) +(0.118 0.401 0.0032) +(0.118 0.407 0.0032) +(0.118 0.413 0.0032) +(0.118 0.419 0.0032) +(0.118 0.425 0.0032) +(0.118 0.431 0.0032) +(0.118 0.437 0.0032) +(0.118 0.443 0.0032) +(0.118 0.449 0.0032) +(0.118 0.455 0.0032) +(0.118 0.461 0.0032) +(0.118 0.467 0.0032) +(0.118 0.473 0.0032) +(0.118 0.479 0.0032) +(0.118 0.485 0.0032) +(0.118 0.491 0.0032) +(0.118 0.497 0.0032) +(0.124 0.077 0.0032) +(0.124 0.083 0.0032) +(0.124 0.089 0.0032) +(0.124 0.095 0.0032) +(0.124 0.101 0.0032) +(0.124 0.107 0.0032) +(0.124 0.113 0.0032) +(0.124 0.119 0.0032) +(0.124 0.125 0.0032) +(0.124 0.131 0.0032) +(0.124 0.137 0.0032) +(0.124 0.143 0.0032) +(0.124 0.149 0.0032) +(0.124 0.155 0.0032) +(0.124 0.161 0.0032) +(0.124 0.167 0.0032) +(0.124 0.173 0.0032) +(0.124 0.179 0.0032) +(0.124 0.185 0.0032) +(0.124 0.191 0.0032) +(0.124 0.197 0.0032) +(0.124 0.203 0.0032) +(0.124 0.209 0.0032) +(0.124 0.215 0.0032) +(0.124 0.221 0.0032) +(0.124 0.227 0.0032) +(0.124 0.233 0.0032) +(0.124 0.239 0.0032) +(0.124 0.245 0.0032) +(0.124 0.251 0.0032) +(0.124 0.257 0.0032) +(0.124 0.263 0.0032) +(0.124 0.269 0.0032) +(0.124 0.275 0.0032) +(0.124 0.281 0.0032) +(0.124 0.287 0.0032) +(0.124 0.293 0.0032) +(0.124 0.299 0.0032) +(0.124 0.305 0.0032) +(0.124 0.311 0.0032) +(0.124 0.317 0.0032) +(0.124 0.323 0.0032) +(0.124 0.329 0.0032) +(0.124 0.335 0.0032) +(0.124 0.341 0.0032) +(0.124 0.347 0.0032) +(0.124 0.353 0.0032) +(0.124 0.359 0.0032) +(0.124 0.365 0.0032) +(0.124 0.371 0.0032) +(0.124 0.377 0.0032) +(0.124 0.383 0.0032) +(0.124 0.389 0.0032) +(0.124 0.395 0.0032) +(0.124 0.401 0.0032) +(0.124 0.407 0.0032) +(0.124 0.413 0.0032) +(0.124 0.419 0.0032) +(0.124 0.425 0.0032) +(0.124 0.431 0.0032) +(0.124 0.437 0.0032) +(0.124 0.443 0.0032) +(0.124 0.449 0.0032) +(0.124 0.455 0.0032) +(0.124 0.461 0.0032) +(0.124 0.467 0.0032) +(0.124 0.473 0.0032) +(0.124 0.479 0.0032) +(0.124 0.485 0.0032) +(0.124 0.491 0.0032) +(0.124 0.497 0.0032) +(0.13 0.077 0.0032) +(0.13 0.083 0.0032) +(0.13 0.089 0.0032) +(0.13 0.095 0.0032) +(0.13 0.101 0.0032) +(0.13 0.107 0.0032) +(0.13 0.113 0.0032) +(0.13 0.119 0.0032) +(0.13 0.125 0.0032) +(0.13 0.131 0.0032) +(0.13 0.137 0.0032) +(0.13 0.143 0.0032) +(0.13 0.149 0.0032) +(0.13 0.155 0.0032) +(0.13 0.161 0.0032) +(0.13 0.167 0.0032) +(0.13 0.173 0.0032) +(0.13 0.179 0.0032) +(0.13 0.185 0.0032) +(0.13 0.191 0.0032) +(0.13 0.197 0.0032) +(0.13 0.203 0.0032) +(0.13 0.209 0.0032) +(0.13 0.215 0.0032) +(0.13 0.221 0.0032) +(0.13 0.227 0.0032) +(0.13 0.233 0.0032) +(0.13 0.239 0.0032) +(0.13 0.245 0.0032) +(0.13 0.251 0.0032) +(0.13 0.257 0.0032) +(0.13 0.263 0.0032) +(0.13 0.269 0.0032) +(0.13 0.275 0.0032) +(0.13 0.281 0.0032) +(0.13 0.287 0.0032) +(0.13 0.293 0.0032) +(0.13 0.299 0.0032) +(0.13 0.305 0.0032) +(0.13 0.311 0.0032) +(0.13 0.317 0.0032) +(0.13 0.323 0.0032) +(0.13 0.329 0.0032) +(0.13 0.335 0.0032) +(0.13 0.341 0.0032) +(0.13 0.347 0.0032) +(0.13 0.353 0.0032) +(0.13 0.359 0.0032) +(0.13 0.365 0.0032) +(0.13 0.371 0.0032) +(0.13 0.377 0.0032) +(0.13 0.383 0.0032) +(0.13 0.389 0.0032) +(0.13 0.395 0.0032) +(0.13 0.401 0.0032) +(0.13 0.407 0.0032) +(0.13 0.413 0.0032) +(0.13 0.419 0.0032) +(0.13 0.425 0.0032) +(0.13 0.431 0.0032) +(0.13 0.437 0.0032) +(0.13 0.443 0.0032) +(0.13 0.449 0.0032) +(0.13 0.455 0.0032) +(0.13 0.461 0.0032) +(0.13 0.467 0.0032) +(0.13 0.473 0.0032) +(0.13 0.479 0.0032) +(0.13 0.485 0.0032) +(0.13 0.491 0.0032) +(0.13 0.497 0.0032) +(0.136 0.077 0.0032) +(0.136 0.083 0.0032) +(0.136 0.089 0.0032) +(0.136 0.095 0.0032) +(0.136 0.101 0.0032) +(0.136 0.107 0.0032) +(0.136 0.113 0.0032) +(0.136 0.119 0.0032) +(0.136 0.125 0.0032) +(0.136 0.131 0.0032) +(0.136 0.137 0.0032) +(0.136 0.143 0.0032) +(0.136 0.149 0.0032) +(0.136 0.155 0.0032) +(0.136 0.161 0.0032) +(0.136 0.167 0.0032) +(0.136 0.173 0.0032) +(0.136 0.179 0.0032) +(0.136 0.185 0.0032) +(0.136 0.191 0.0032) +(0.136 0.197 0.0032) +(0.136 0.203 0.0032) +(0.136 0.209 0.0032) +(0.136 0.215 0.0032) +(0.136 0.221 0.0032) +(0.136 0.227 0.0032) +(0.136 0.233 0.0032) +(0.136 0.239 0.0032) +(0.136 0.245 0.0032) +(0.136 0.251 0.0032) +(0.136 0.257 0.0032) +(0.136 0.263 0.0032) +(0.136 0.269 0.0032) +(0.136 0.275 0.0032) +(0.136 0.281 0.0032) +(0.136 0.287 0.0032) +(0.136 0.293 0.0032) +(0.136 0.299 0.0032) +(0.136 0.305 0.0032) +(0.136 0.311 0.0032) +(0.136 0.317 0.0032) +(0.136 0.323 0.0032) +(0.136 0.329 0.0032) +(0.136 0.335 0.0032) +(0.136 0.341 0.0032) +(0.136 0.347 0.0032) +(0.136 0.353 0.0032) +(0.136 0.359 0.0032) +(0.136 0.365 0.0032) +(0.136 0.371 0.0032) +(0.136 0.377 0.0032) +(0.136 0.383 0.0032) +(0.136 0.389 0.0032) +(0.136 0.395 0.0032) +(0.136 0.401 0.0032) +(0.136 0.407 0.0032) +(0.136 0.413 0.0032) +(0.136 0.419 0.0032) +(0.136 0.425 0.0032) +(0.136 0.431 0.0032) +(0.136 0.437 0.0032) +(0.136 0.443 0.0032) +(0.136 0.449 0.0032) +(0.136 0.455 0.0032) +(0.136 0.461 0.0032) +(0.136 0.467 0.0032) +(0.136 0.473 0.0032) +(0.136 0.479 0.0032) +(0.136 0.485 0.0032) +(0.136 0.491 0.0032) +(0.136 0.497 0.0032) +(0.142 0.077 0.0032) +(0.142 0.083 0.0032) +(0.142 0.089 0.0032) +(0.142 0.095 0.0032) +(0.142 0.101 0.0032) +(0.142 0.107 0.0032) +(0.142 0.113 0.0032) +(0.142 0.119 0.0032) +(0.142 0.125 0.0032) +(0.142 0.131 0.0032) +(0.142 0.137 0.0032) +(0.142 0.143 0.0032) +(0.142 0.149 0.0032) +(0.142 0.155 0.0032) +(0.142 0.161 0.0032) +(0.142 0.167 0.0032) +(0.142 0.173 0.0032) +(0.142 0.179 0.0032) +(0.142 0.185 0.0032) +(0.142 0.191 0.0032) +(0.142 0.197 0.0032) +(0.142 0.203 0.0032) +(0.142 0.209 0.0032) +(0.142 0.215 0.0032) +(0.142 0.221 0.0032) +(0.142 0.227 0.0032) +(0.142 0.233 0.0032) +(0.142 0.239 0.0032) +(0.142 0.245 0.0032) +(0.142 0.251 0.0032) +(0.142 0.257 0.0032) +(0.142 0.263 0.0032) +(0.142 0.269 0.0032) +(0.142 0.275 0.0032) +(0.142 0.281 0.0032) +(0.142 0.287 0.0032) +(0.142 0.293 0.0032) +(0.142 0.299 0.0032) +(0.142 0.305 0.0032) +(0.142 0.311 0.0032) +(0.142 0.317 0.0032) +(0.142 0.323 0.0032) +(0.142 0.329 0.0032) +(0.142 0.335 0.0032) +(0.142 0.341 0.0032) +(0.142 0.347 0.0032) +(0.142 0.353 0.0032) +(0.142 0.359 0.0032) +(0.142 0.365 0.0032) +(0.142 0.371 0.0032) +(0.142 0.377 0.0032) +(0.142 0.383 0.0032) +(0.142 0.389 0.0032) +(0.142 0.395 0.0032) +(0.142 0.401 0.0032) +(0.142 0.407 0.0032) +(0.142 0.413 0.0032) +(0.142 0.419 0.0032) +(0.142 0.425 0.0032) +(0.142 0.431 0.0032) +(0.142 0.437 0.0032) +(0.142 0.443 0.0032) +(0.142 0.449 0.0032) +(0.142 0.455 0.0032) +(0.142 0.461 0.0032) +(0.142 0.467 0.0032) +(0.142 0.473 0.0032) +(0.142 0.479 0.0032) +(0.142 0.485 0.0032) +(0.142 0.491 0.0032) +(0.142 0.497 0.0032) +(0.148 0.077 0.0032) +(0.148 0.083 0.0032) +(0.148 0.089 0.0032) +(0.148 0.095 0.0032) +(0.148 0.101 0.0032) +(0.148 0.107 0.0032) +(0.148 0.113 0.0032) +(0.148 0.119 0.0032) +(0.148 0.125 0.0032) +(0.148 0.131 0.0032) +(0.148 0.137 0.0032) +(0.148 0.143 0.0032) +(0.148 0.149 0.0032) +(0.148 0.155 0.0032) +(0.148 0.161 0.0032) +(0.148 0.167 0.0032) +(0.148 0.173 0.0032) +(0.148 0.179 0.0032) +(0.148 0.185 0.0032) +(0.148 0.191 0.0032) +(0.148 0.197 0.0032) +(0.148 0.203 0.0032) +(0.148 0.209 0.0032) +(0.148 0.215 0.0032) +(0.148 0.221 0.0032) +(0.148 0.227 0.0032) +(0.148 0.233 0.0032) +(0.148 0.239 0.0032) +(0.148 0.245 0.0032) +(0.148 0.251 0.0032) +(0.148 0.257 0.0032) +(0.148 0.263 0.0032) +(0.148 0.269 0.0032) +(0.148 0.275 0.0032) +(0.148 0.281 0.0032) +(0.148 0.287 0.0032) +(0.148 0.293 0.0032) +(0.148 0.299 0.0032) +(0.148 0.305 0.0032) +(0.148 0.311 0.0032) +(0.148 0.317 0.0032) +(0.148 0.323 0.0032) +(0.148 0.329 0.0032) +(0.148 0.335 0.0032) +(0.148 0.341 0.0032) +(0.148 0.347 0.0032) +(0.148 0.353 0.0032) +(0.148 0.359 0.0032) +(0.148 0.365 0.0032) +(0.148 0.371 0.0032) +(0.148 0.377 0.0032) +(0.148 0.383 0.0032) +(0.148 0.389 0.0032) +(0.148 0.395 0.0032) +(0.148 0.401 0.0032) +(0.148 0.407 0.0032) +(0.148 0.413 0.0032) +(0.148 0.419 0.0032) +(0.148 0.425 0.0032) +(0.148 0.431 0.0032) +(0.148 0.437 0.0032) +(0.148 0.443 0.0032) +(0.148 0.449 0.0032) +(0.148 0.455 0.0032) +(0.148 0.461 0.0032) +(0.148 0.467 0.0032) +(0.148 0.473 0.0032) +(0.148 0.479 0.0032) +(0.148 0.485 0.0032) +(0.148 0.491 0.0032) +(0.148 0.497 0.0032) +(0.154 0.077 0.0032) +(0.154 0.083 0.0032) +(0.154 0.089 0.0032) +(0.154 0.095 0.0032) +(0.154 0.101 0.0032) +(0.154 0.107 0.0032) +(0.154 0.113 0.0032) +(0.154 0.119 0.0032) +(0.154 0.125 0.0032) +(0.154 0.131 0.0032) +(0.154 0.137 0.0032) +(0.154 0.143 0.0032) +(0.154 0.149 0.0032) +(0.154 0.155 0.0032) +(0.154 0.161 0.0032) +(0.154 0.167 0.0032) +(0.154 0.173 0.0032) +(0.154 0.179 0.0032) +(0.154 0.185 0.0032) +(0.154 0.191 0.0032) +(0.154 0.197 0.0032) +(0.154 0.203 0.0032) +(0.154 0.209 0.0032) +(0.154 0.215 0.0032) +(0.154 0.221 0.0032) +(0.154 0.227 0.0032) +(0.154 0.233 0.0032) +(0.154 0.239 0.0032) +(0.154 0.245 0.0032) +(0.154 0.251 0.0032) +(0.154 0.257 0.0032) +(0.154 0.263 0.0032) +(0.154 0.269 0.0032) +(0.154 0.275 0.0032) +(0.154 0.281 0.0032) +(0.154 0.287 0.0032) +(0.154 0.293 0.0032) +(0.154 0.299 0.0032) +(0.154 0.305 0.0032) +(0.154 0.311 0.0032) +(0.154 0.317 0.0032) +(0.154 0.323 0.0032) +(0.154 0.329 0.0032) +(0.154 0.335 0.0032) +(0.154 0.341 0.0032) +(0.154 0.347 0.0032) +(0.154 0.353 0.0032) +(0.154 0.359 0.0032) +(0.154 0.365 0.0032) +(0.154 0.371 0.0032) +(0.154 0.377 0.0032) +(0.154 0.383 0.0032) +(0.154 0.389 0.0032) +(0.154 0.395 0.0032) +(0.154 0.401 0.0032) +(0.154 0.407 0.0032) +(0.154 0.413 0.0032) +(0.154 0.419 0.0032) +(0.154 0.425 0.0032) +(0.154 0.431 0.0032) +(0.154 0.437 0.0032) +(0.154 0.443 0.0032) +(0.154 0.449 0.0032) +(0.154 0.455 0.0032) +(0.154 0.461 0.0032) +(0.154 0.467 0.0032) +(0.154 0.473 0.0032) +(0.154 0.479 0.0032) +(0.154 0.485 0.0032) +(0.154 0.491 0.0032) +(0.154 0.497 0.0032) +(0.16 0.077 0.0032) +(0.16 0.083 0.0032) +(0.16 0.089 0.0032) +(0.16 0.095 0.0032) +(0.16 0.101 0.0032) +(0.16 0.107 0.0032) +(0.16 0.113 0.0032) +(0.16 0.119 0.0032) +(0.16 0.125 0.0032) +(0.16 0.131 0.0032) +(0.16 0.137 0.0032) +(0.16 0.143 0.0032) +(0.16 0.149 0.0032) +(0.16 0.155 0.0032) +(0.16 0.161 0.0032) +(0.16 0.167 0.0032) +(0.16 0.173 0.0032) +(0.16 0.179 0.0032) +(0.16 0.185 0.0032) +(0.16 0.191 0.0032) +(0.16 0.197 0.0032) +(0.16 0.203 0.0032) +(0.16 0.209 0.0032) +(0.16 0.215 0.0032) +(0.16 0.221 0.0032) +(0.16 0.227 0.0032) +(0.16 0.233 0.0032) +(0.16 0.239 0.0032) +(0.16 0.245 0.0032) +(0.16 0.251 0.0032) +(0.16 0.257 0.0032) +(0.16 0.263 0.0032) +(0.16 0.269 0.0032) +(0.16 0.275 0.0032) +(0.16 0.281 0.0032) +(0.16 0.287 0.0032) +(0.16 0.293 0.0032) +(0.16 0.299 0.0032) +(0.16 0.305 0.0032) +(0.16 0.311 0.0032) +(0.16 0.317 0.0032) +(0.16 0.323 0.0032) +(0.16 0.329 0.0032) +(0.16 0.335 0.0032) +(0.16 0.341 0.0032) +(0.16 0.347 0.0032) +(0.16 0.353 0.0032) +(0.16 0.359 0.0032) +(0.16 0.365 0.0032) +(0.16 0.371 0.0032) +(0.16 0.377 0.0032) +(0.16 0.383 0.0032) +(0.16 0.389 0.0032) +(0.16 0.395 0.0032) +(0.16 0.401 0.0032) +(0.16 0.407 0.0032) +(0.16 0.413 0.0032) +(0.16 0.419 0.0032) +(0.16 0.425 0.0032) +(0.16 0.431 0.0032) +(0.16 0.437 0.0032) +(0.16 0.443 0.0032) +(0.16 0.449 0.0032) +(0.16 0.455 0.0032) +(0.16 0.461 0.0032) +(0.16 0.467 0.0032) +(0.16 0.473 0.0032) +(0.16 0.479 0.0032) +(0.16 0.485 0.0032) +(0.16 0.491 0.0032) +(0.16 0.497 0.0032) +(0.166 0.077 0.0032) +(0.166 0.083 0.0032) +(0.166 0.089 0.0032) +(0.166 0.095 0.0032) +(0.166 0.101 0.0032) +(0.166 0.107 0.0032) +(0.166 0.113 0.0032) +(0.166 0.119 0.0032) +(0.166 0.125 0.0032) +(0.166 0.131 0.0032) +(0.166 0.137 0.0032) +(0.166 0.143 0.0032) +(0.166 0.149 0.0032) +(0.166 0.155 0.0032) +(0.166 0.161 0.0032) +(0.166 0.167 0.0032) +(0.166 0.173 0.0032) +(0.166 0.179 0.0032) +(0.166 0.185 0.0032) +(0.166 0.191 0.0032) +(0.166 0.197 0.0032) +(0.166 0.203 0.0032) +(0.166 0.209 0.0032) +(0.166 0.215 0.0032) +(0.166 0.221 0.0032) +(0.166 0.227 0.0032) +(0.166 0.233 0.0032) +(0.166 0.239 0.0032) +(0.166 0.245 0.0032) +(0.166 0.251 0.0032) +(0.166 0.257 0.0032) +(0.166 0.263 0.0032) +(0.166 0.269 0.0032) +(0.166 0.275 0.0032) +(0.166 0.281 0.0032) +(0.166 0.287 0.0032) +(0.166 0.293 0.0032) +(0.166 0.299 0.0032) +(0.166 0.305 0.0032) +(0.166 0.311 0.0032) +(0.166 0.317 0.0032) +(0.166 0.323 0.0032) +(0.166 0.329 0.0032) +(0.166 0.335 0.0032) +(0.166 0.341 0.0032) +(0.166 0.347 0.0032) +(0.166 0.353 0.0032) +(0.166 0.359 0.0032) +(0.166 0.365 0.0032) +(0.166 0.371 0.0032) +(0.166 0.377 0.0032) +(0.166 0.383 0.0032) +(0.166 0.389 0.0032) +(0.166 0.395 0.0032) +(0.166 0.401 0.0032) +(0.166 0.407 0.0032) +(0.166 0.413 0.0032) +(0.166 0.419 0.0032) +(0.166 0.425 0.0032) +(0.166 0.431 0.0032) +(0.166 0.437 0.0032) +(0.166 0.443 0.0032) +(0.166 0.449 0.0032) +(0.166 0.455 0.0032) +(0.166 0.461 0.0032) +(0.166 0.467 0.0032) +(0.166 0.473 0.0032) +(0.166 0.479 0.0032) +(0.166 0.485 0.0032) +(0.166 0.491 0.0032) +(0.166 0.497 0.0032) +(0.172 0.077 0.0032) +(0.172 0.083 0.0032) +(0.172 0.089 0.0032) +(0.172 0.095 0.0032) +(0.172 0.101 0.0032) +(0.172 0.107 0.0032) +(0.172 0.113 0.0032) +(0.172 0.119 0.0032) +(0.172 0.125 0.0032) +(0.172 0.131 0.0032) +(0.172 0.137 0.0032) +(0.172 0.143 0.0032) +(0.172 0.149 0.0032) +(0.172 0.155 0.0032) +(0.172 0.161 0.0032) +(0.172 0.167 0.0032) +(0.172 0.173 0.0032) +(0.172 0.179 0.0032) +(0.172 0.185 0.0032) +(0.172 0.191 0.0032) +(0.172 0.197 0.0032) +(0.172 0.203 0.0032) +(0.172 0.209 0.0032) +(0.172 0.215 0.0032) +(0.172 0.221 0.0032) +(0.172 0.227 0.0032) +(0.172 0.233 0.0032) +(0.172 0.239 0.0032) +(0.172 0.245 0.0032) +(0.172 0.251 0.0032) +(0.172 0.257 0.0032) +(0.172 0.263 0.0032) +(0.172 0.269 0.0032) +(0.172 0.275 0.0032) +(0.172 0.281 0.0032) +(0.172 0.287 0.0032) +(0.172 0.293 0.0032) +(0.172 0.299 0.0032) +(0.172 0.305 0.0032) +(0.172 0.311 0.0032) +(0.172 0.317 0.0032) +(0.172 0.323 0.0032) +(0.172 0.329 0.0032) +(0.172 0.335 0.0032) +(0.172 0.341 0.0032) +(0.172 0.347 0.0032) +(0.172 0.353 0.0032) +(0.172 0.359 0.0032) +(0.172 0.365 0.0032) +(0.172 0.371 0.0032) +(0.172 0.377 0.0032) +(0.172 0.383 0.0032) +(0.172 0.389 0.0032) +(0.172 0.395 0.0032) +(0.172 0.401 0.0032) +(0.172 0.407 0.0032) +(0.172 0.413 0.0032) +(0.172 0.419 0.0032) +(0.172 0.425 0.0032) +(0.172 0.431 0.0032) +(0.172 0.437 0.0032) +(0.172 0.443 0.0032) +(0.172 0.449 0.0032) +(0.172 0.455 0.0032) +(0.172 0.461 0.0032) +(0.172 0.467 0.0032) +(0.172 0.473 0.0032) +(0.172 0.479 0.0032) +(0.172 0.485 0.0032) +(0.172 0.491 0.0032) +(0.172 0.497 0.0032) +(0.178 0.077 0.0032) +(0.178 0.083 0.0032) +(0.178 0.089 0.0032) +(0.178 0.095 0.0032) +(0.178 0.101 0.0032) +(0.178 0.107 0.0032) +(0.178 0.113 0.0032) +(0.178 0.119 0.0032) +(0.178 0.125 0.0032) +(0.178 0.131 0.0032) +(0.178 0.137 0.0032) +(0.178 0.143 0.0032) +(0.178 0.149 0.0032) +(0.178 0.155 0.0032) +(0.178 0.161 0.0032) +(0.178 0.167 0.0032) +(0.178 0.173 0.0032) +(0.178 0.179 0.0032) +(0.178 0.185 0.0032) +(0.178 0.191 0.0032) +(0.178 0.197 0.0032) +(0.178 0.203 0.0032) +(0.178 0.209 0.0032) +(0.178 0.215 0.0032) +(0.178 0.221 0.0032) +(0.178 0.227 0.0032) +(0.178 0.233 0.0032) +(0.178 0.239 0.0032) +(0.178 0.245 0.0032) +(0.178 0.251 0.0032) +(0.178 0.257 0.0032) +(0.178 0.263 0.0032) +(0.178 0.269 0.0032) +(0.178 0.275 0.0032) +(0.178 0.281 0.0032) +(0.178 0.287 0.0032) +(0.178 0.293 0.0032) +(0.178 0.299 0.0032) +(0.178 0.305 0.0032) +(0.178 0.311 0.0032) +(0.178 0.317 0.0032) +(0.178 0.323 0.0032) +(0.178 0.329 0.0032) +(0.178 0.335 0.0032) +(0.178 0.341 0.0032) +(0.178 0.347 0.0032) +(0.178 0.353 0.0032) +(0.178 0.359 0.0032) +(0.178 0.365 0.0032) +(0.178 0.371 0.0032) +(0.178 0.377 0.0032) +(0.178 0.383 0.0032) +(0.178 0.389 0.0032) +(0.178 0.395 0.0032) +(0.178 0.401 0.0032) +(0.178 0.407 0.0032) +(0.178 0.413 0.0032) +(0.178 0.419 0.0032) +(0.178 0.425 0.0032) +(0.178 0.431 0.0032) +(0.178 0.437 0.0032) +(0.178 0.443 0.0032) +(0.178 0.449 0.0032) +(0.178 0.455 0.0032) +(0.178 0.461 0.0032) +(0.178 0.467 0.0032) +(0.178 0.473 0.0032) +(0.178 0.479 0.0032) +(0.178 0.485 0.0032) +(0.178 0.491 0.0032) +(0.178 0.497 0.0032) +(0.184 0.077 0.0032) +(0.184 0.083 0.0032) +(0.184 0.089 0.0032) +(0.184 0.095 0.0032) +(0.184 0.101 0.0032) +(0.184 0.107 0.0032) +(0.184 0.113 0.0032) +(0.184 0.119 0.0032) +(0.184 0.125 0.0032) +(0.184 0.131 0.0032) +(0.184 0.137 0.0032) +(0.184 0.143 0.0032) +(0.184 0.149 0.0032) +(0.184 0.155 0.0032) +(0.184 0.161 0.0032) +(0.184 0.167 0.0032) +(0.184 0.173 0.0032) +(0.184 0.179 0.0032) +(0.184 0.185 0.0032) +(0.184 0.191 0.0032) +(0.184 0.197 0.0032) +(0.184 0.203 0.0032) +(0.184 0.209 0.0032) +(0.184 0.215 0.0032) +(0.184 0.221 0.0032) +(0.184 0.227 0.0032) +(0.184 0.233 0.0032) +(0.184 0.239 0.0032) +(0.184 0.245 0.0032) +(0.184 0.251 0.0032) +(0.184 0.257 0.0032) +(0.184 0.263 0.0032) +(0.184 0.269 0.0032) +(0.184 0.275 0.0032) +(0.184 0.281 0.0032) +(0.184 0.287 0.0032) +(0.184 0.293 0.0032) +(0.184 0.299 0.0032) +(0.184 0.305 0.0032) +(0.184 0.311 0.0032) +(0.184 0.317 0.0032) +(0.184 0.323 0.0032) +(0.184 0.329 0.0032) +(0.184 0.335 0.0032) +(0.184 0.341 0.0032) +(0.184 0.347 0.0032) +(0.184 0.353 0.0032) +(0.184 0.359 0.0032) +(0.184 0.365 0.0032) +(0.184 0.371 0.0032) +(0.184 0.377 0.0032) +(0.184 0.383 0.0032) +(0.184 0.389 0.0032) +(0.184 0.395 0.0032) +(0.184 0.401 0.0032) +(0.184 0.407 0.0032) +(0.184 0.413 0.0032) +(0.184 0.419 0.0032) +(0.184 0.425 0.0032) +(0.184 0.431 0.0032) +(0.184 0.437 0.0032) +(0.184 0.443 0.0032) +(0.184 0.449 0.0032) +(0.184 0.455 0.0032) +(0.184 0.461 0.0032) +(0.184 0.467 0.0032) +(0.184 0.473 0.0032) +(0.184 0.479 0.0032) +(0.184 0.485 0.0032) +(0.184 0.491 0.0032) +(0.184 0.497 0.0032) +(0.19 0.077 0.0032) +(0.19 0.083 0.0032) +(0.19 0.089 0.0032) +(0.19 0.095 0.0032) +(0.19 0.101 0.0032) +(0.19 0.107 0.0032) +(0.19 0.113 0.0032) +(0.19 0.119 0.0032) +(0.19 0.125 0.0032) +(0.19 0.131 0.0032) +(0.19 0.137 0.0032) +(0.19 0.143 0.0032) +(0.19 0.149 0.0032) +(0.19 0.155 0.0032) +(0.19 0.161 0.0032) +(0.19 0.167 0.0032) +(0.19 0.173 0.0032) +(0.19 0.179 0.0032) +(0.19 0.185 0.0032) +(0.19 0.191 0.0032) +(0.19 0.197 0.0032) +(0.19 0.203 0.0032) +(0.19 0.209 0.0032) +(0.19 0.215 0.0032) +(0.19 0.221 0.0032) +(0.19 0.227 0.0032) +(0.19 0.233 0.0032) +(0.19 0.239 0.0032) +(0.19 0.245 0.0032) +(0.19 0.251 0.0032) +(0.19 0.257 0.0032) +(0.19 0.263 0.0032) +(0.19 0.269 0.0032) +(0.19 0.275 0.0032) +(0.19 0.281 0.0032) +(0.19 0.287 0.0032) +(0.19 0.293 0.0032) +(0.19 0.299 0.0032) +(0.19 0.305 0.0032) +(0.19 0.311 0.0032) +(0.19 0.317 0.0032) +(0.19 0.323 0.0032) +(0.19 0.329 0.0032) +(0.19 0.335 0.0032) +(0.19 0.341 0.0032) +(0.19 0.347 0.0032) +(0.19 0.353 0.0032) +(0.19 0.359 0.0032) +(0.19 0.365 0.0032) +(0.19 0.371 0.0032) +(0.19 0.377 0.0032) +(0.19 0.383 0.0032) +(0.19 0.389 0.0032) +(0.19 0.395 0.0032) +(0.19 0.401 0.0032) +(0.19 0.407 0.0032) +(0.19 0.413 0.0032) +(0.19 0.419 0.0032) +(0.19 0.425 0.0032) +(0.19 0.431 0.0032) +(0.19 0.437 0.0032) +(0.19 0.443 0.0032) +(0.19 0.449 0.0032) +(0.19 0.455 0.0032) +(0.19 0.461 0.0032) +(0.19 0.467 0.0032) +(0.19 0.473 0.0032) +(0.19 0.479 0.0032) +(0.19 0.485 0.0032) +(0.19 0.491 0.0032) +(0.19 0.497 0.0032) +(0.196 0.077 0.0032) +(0.196 0.083 0.0032) +(0.196 0.089 0.0032) +(0.196 0.095 0.0032) +(0.196 0.101 0.0032) +(0.196 0.107 0.0032) +(0.196 0.113 0.0032) +(0.196 0.119 0.0032) +(0.196 0.125 0.0032) +(0.196 0.131 0.0032) +(0.196 0.137 0.0032) +(0.196 0.143 0.0032) +(0.196 0.149 0.0032) +(0.196 0.155 0.0032) +(0.196 0.161 0.0032) +(0.196 0.167 0.0032) +(0.196 0.173 0.0032) +(0.196 0.179 0.0032) +(0.196 0.185 0.0032) +(0.196 0.191 0.0032) +(0.196 0.197 0.0032) +(0.196 0.203 0.0032) +(0.196 0.209 0.0032) +(0.196 0.215 0.0032) +(0.196 0.221 0.0032) +(0.196 0.227 0.0032) +(0.196 0.233 0.0032) +(0.196 0.239 0.0032) +(0.196 0.245 0.0032) +(0.196 0.251 0.0032) +(0.196 0.257 0.0032) +(0.196 0.263 0.0032) +(0.196 0.269 0.0032) +(0.196 0.275 0.0032) +(0.196 0.281 0.0032) +(0.196 0.287 0.0032) +(0.196 0.293 0.0032) +(0.196 0.299 0.0032) +(0.196 0.305 0.0032) +(0.196 0.311 0.0032) +(0.196 0.317 0.0032) +(0.196 0.323 0.0032) +(0.196 0.329 0.0032) +(0.196 0.335 0.0032) +(0.196 0.341 0.0032) +(0.196 0.347 0.0032) +(0.196 0.353 0.0032) +(0.196 0.359 0.0032) +(0.196 0.365 0.0032) +(0.196 0.371 0.0032) +(0.196 0.377 0.0032) +(0.196 0.383 0.0032) +(0.196 0.389 0.0032) +(0.196 0.395 0.0032) +(0.196 0.401 0.0032) +(0.196 0.407 0.0032) +(0.196 0.413 0.0032) +(0.196 0.419 0.0032) +(0.196 0.425 0.0032) +(0.196 0.431 0.0032) +(0.196 0.437 0.0032) +(0.196 0.443 0.0032) +(0.196 0.449 0.0032) +(0.196 0.455 0.0032) +(0.196 0.461 0.0032) +(0.196 0.467 0.0032) +(0.196 0.473 0.0032) +(0.196 0.479 0.0032) +(0.196 0.485 0.0032) +(0.196 0.491 0.0032) +(0.196 0.497 0.0032) +(0.202 0.077 0.0032) +(0.202 0.083 0.0032) +(0.202 0.089 0.0032) +(0.202 0.095 0.0032) +(0.202 0.101 0.0032) +(0.202 0.107 0.0032) +(0.202 0.113 0.0032) +(0.202 0.119 0.0032) +(0.202 0.125 0.0032) +(0.202 0.131 0.0032) +(0.202 0.137 0.0032) +(0.202 0.143 0.0032) +(0.202 0.149 0.0032) +(0.202 0.155 0.0032) +(0.202 0.161 0.0032) +(0.202 0.167 0.0032) +(0.202 0.173 0.0032) +(0.202 0.179 0.0032) +(0.202 0.185 0.0032) +(0.202 0.191 0.0032) +(0.202 0.197 0.0032) +(0.202 0.203 0.0032) +(0.202 0.209 0.0032) +(0.202 0.215 0.0032) +(0.202 0.221 0.0032) +(0.202 0.227 0.0032) +(0.202 0.233 0.0032) +(0.202 0.239 0.0032) +(0.202 0.245 0.0032) +(0.202 0.251 0.0032) +(0.202 0.257 0.0032) +(0.202 0.263 0.0032) +(0.202 0.269 0.0032) +(0.202 0.275 0.0032) +(0.202 0.281 0.0032) +(0.202 0.287 0.0032) +(0.202 0.293 0.0032) +(0.202 0.299 0.0032) +(0.202 0.305 0.0032) +(0.202 0.311 0.0032) +(0.202 0.317 0.0032) +(0.202 0.323 0.0032) +(0.202 0.329 0.0032) +(0.202 0.335 0.0032) +(0.202 0.341 0.0032) +(0.202 0.347 0.0032) +(0.202 0.353 0.0032) +(0.202 0.359 0.0032) +(0.202 0.365 0.0032) +(0.202 0.371 0.0032) +(0.202 0.377 0.0032) +(0.202 0.383 0.0032) +(0.202 0.389 0.0032) +(0.202 0.395 0.0032) +(0.202 0.401 0.0032) +(0.202 0.407 0.0032) +(0.202 0.413 0.0032) +(0.202 0.419 0.0032) +(0.202 0.425 0.0032) +(0.202 0.431 0.0032) +(0.202 0.437 0.0032) +(0.202 0.443 0.0032) +(0.202 0.449 0.0032) +(0.202 0.455 0.0032) +(0.202 0.461 0.0032) +(0.202 0.467 0.0032) +(0.202 0.473 0.0032) +(0.202 0.479 0.0032) +(0.202 0.485 0.0032) +(0.202 0.491 0.0032) +(0.202 0.497 0.0032) +(0.208 0.077 0.0032) +(0.208 0.083 0.0032) +(0.208 0.089 0.0032) +(0.208 0.095 0.0032) +(0.208 0.101 0.0032) +(0.208 0.107 0.0032) +(0.208 0.113 0.0032) +(0.208 0.119 0.0032) +(0.208 0.125 0.0032) +(0.208 0.131 0.0032) +(0.208 0.137 0.0032) +(0.208 0.143 0.0032) +(0.208 0.149 0.0032) +(0.208 0.155 0.0032) +(0.208 0.161 0.0032) +(0.208 0.167 0.0032) +(0.208 0.173 0.0032) +(0.208 0.179 0.0032) +(0.208 0.185 0.0032) +(0.208 0.191 0.0032) +(0.208 0.197 0.0032) +(0.208 0.203 0.0032) +(0.208 0.209 0.0032) +(0.208 0.215 0.0032) +(0.208 0.221 0.0032) +(0.208 0.227 0.0032) +(0.208 0.233 0.0032) +(0.208 0.239 0.0032) +(0.208 0.245 0.0032) +(0.208 0.251 0.0032) +(0.208 0.257 0.0032) +(0.208 0.263 0.0032) +(0.208 0.269 0.0032) +(0.208 0.275 0.0032) +(0.208 0.281 0.0032) +(0.208 0.287 0.0032) +(0.208 0.293 0.0032) +(0.208 0.299 0.0032) +(0.208 0.305 0.0032) +(0.208 0.311 0.0032) +(0.208 0.317 0.0032) +(0.208 0.323 0.0032) +(0.208 0.329 0.0032) +(0.208 0.335 0.0032) +(0.208 0.341 0.0032) +(0.208 0.347 0.0032) +(0.208 0.353 0.0032) +(0.208 0.359 0.0032) +(0.208 0.365 0.0032) +(0.208 0.371 0.0032) +(0.208 0.377 0.0032) +(0.208 0.383 0.0032) +(0.208 0.389 0.0032) +(0.208 0.395 0.0032) +(0.208 0.401 0.0032) +(0.208 0.407 0.0032) +(0.208 0.413 0.0032) +(0.208 0.419 0.0032) +(0.208 0.425 0.0032) +(0.208 0.431 0.0032) +(0.208 0.437 0.0032) +(0.208 0.443 0.0032) +(0.208 0.449 0.0032) +(0.208 0.455 0.0032) +(0.208 0.461 0.0032) +(0.208 0.467 0.0032) +(0.208 0.473 0.0032) +(0.208 0.479 0.0032) +(0.208 0.485 0.0032) +(0.208 0.491 0.0032) +(0.208 0.497 0.0032) +(0.214 0.077 0.0032) +(0.214 0.083 0.0032) +(0.214 0.089 0.0032) +(0.214 0.095 0.0032) +(0.214 0.101 0.0032) +(0.214 0.107 0.0032) +(0.214 0.113 0.0032) +(0.214 0.119 0.0032) +(0.214 0.125 0.0032) +(0.214 0.131 0.0032) +(0.214 0.137 0.0032) +(0.214 0.143 0.0032) +(0.214 0.149 0.0032) +(0.214 0.155 0.0032) +(0.214 0.161 0.0032) +(0.214 0.167 0.0032) +(0.214 0.173 0.0032) +(0.214 0.179 0.0032) +(0.214 0.185 0.0032) +(0.214 0.191 0.0032) +(0.214 0.197 0.0032) +(0.214 0.203 0.0032) +(0.214 0.209 0.0032) +(0.214 0.215 0.0032) +(0.214 0.221 0.0032) +(0.214 0.227 0.0032) +(0.214 0.233 0.0032) +(0.214 0.239 0.0032) +(0.214 0.245 0.0032) +(0.214 0.251 0.0032) +(0.214 0.257 0.0032) +(0.214 0.263 0.0032) +(0.214 0.269 0.0032) +(0.214 0.275 0.0032) +(0.214 0.281 0.0032) +(0.214 0.287 0.0032) +(0.214 0.293 0.0032) +(0.214 0.299 0.0032) +(0.214 0.305 0.0032) +(0.214 0.311 0.0032) +(0.214 0.317 0.0032) +(0.214 0.323 0.0032) +(0.214 0.329 0.0032) +(0.214 0.335 0.0032) +(0.214 0.341 0.0032) +(0.214 0.347 0.0032) +(0.214 0.353 0.0032) +(0.214 0.359 0.0032) +(0.214 0.365 0.0032) +(0.214 0.371 0.0032) +(0.214 0.377 0.0032) +(0.214 0.383 0.0032) +(0.214 0.389 0.0032) +(0.214 0.395 0.0032) +(0.214 0.401 0.0032) +(0.214 0.407 0.0032) +(0.214 0.413 0.0032) +(0.214 0.419 0.0032) +(0.214 0.425 0.0032) +(0.214 0.431 0.0032) +(0.214 0.437 0.0032) +(0.214 0.443 0.0032) +(0.214 0.449 0.0032) +(0.214 0.455 0.0032) +(0.214 0.461 0.0032) +(0.214 0.467 0.0032) +(0.214 0.473 0.0032) +(0.214 0.479 0.0032) +(0.214 0.485 0.0032) +(0.214 0.491 0.0032) +(0.214 0.497 0.0032) +(0.22 0.077 0.0032) +(0.22 0.083 0.0032) +(0.22 0.089 0.0032) +(0.22 0.095 0.0032) +(0.22 0.101 0.0032) +(0.22 0.107 0.0032) +(0.22 0.113 0.0032) +(0.22 0.119 0.0032) +(0.22 0.125 0.0032) +(0.22 0.131 0.0032) +(0.22 0.137 0.0032) +(0.22 0.143 0.0032) +(0.22 0.149 0.0032) +(0.22 0.155 0.0032) +(0.22 0.161 0.0032) +(0.22 0.167 0.0032) +(0.22 0.173 0.0032) +(0.22 0.179 0.0032) +(0.22 0.185 0.0032) +(0.22 0.191 0.0032) +(0.22 0.197 0.0032) +(0.22 0.203 0.0032) +(0.22 0.209 0.0032) +(0.22 0.215 0.0032) +(0.22 0.221 0.0032) +(0.22 0.227 0.0032) +(0.22 0.233 0.0032) +(0.22 0.239 0.0032) +(0.22 0.245 0.0032) +(0.22 0.251 0.0032) +(0.22 0.257 0.0032) +(0.22 0.263 0.0032) +(0.22 0.269 0.0032) +(0.22 0.275 0.0032) +(0.22 0.281 0.0032) +(0.22 0.287 0.0032) +(0.22 0.293 0.0032) +(0.22 0.299 0.0032) +(0.22 0.305 0.0032) +(0.22 0.311 0.0032) +(0.22 0.317 0.0032) +(0.22 0.323 0.0032) +(0.22 0.329 0.0032) +(0.22 0.335 0.0032) +(0.22 0.341 0.0032) +(0.22 0.347 0.0032) +(0.22 0.353 0.0032) +(0.22 0.359 0.0032) +(0.22 0.365 0.0032) +(0.22 0.371 0.0032) +(0.22 0.377 0.0032) +(0.22 0.383 0.0032) +(0.22 0.389 0.0032) +(0.22 0.395 0.0032) +(0.22 0.401 0.0032) +(0.22 0.407 0.0032) +(0.22 0.413 0.0032) +(0.22 0.419 0.0032) +(0.22 0.425 0.0032) +(0.22 0.431 0.0032) +(0.22 0.437 0.0032) +(0.22 0.443 0.0032) +(0.22 0.449 0.0032) +(0.22 0.455 0.0032) +(0.22 0.461 0.0032) +(0.22 0.467 0.0032) +(0.22 0.473 0.0032) +(0.22 0.479 0.0032) +(0.22 0.485 0.0032) +(0.22 0.491 0.0032) +(0.22 0.497 0.0032) +(0.226 0.077 0.0032) +(0.226 0.083 0.0032) +(0.226 0.089 0.0032) +(0.226 0.095 0.0032) +(0.226 0.101 0.0032) +(0.226 0.107 0.0032) +(0.226 0.113 0.0032) +(0.226 0.119 0.0032) +(0.226 0.125 0.0032) +(0.226 0.131 0.0032) +(0.226 0.137 0.0032) +(0.226 0.143 0.0032) +(0.226 0.149 0.0032) +(0.226 0.155 0.0032) +(0.226 0.161 0.0032) +(0.226 0.167 0.0032) +(0.226 0.173 0.0032) +(0.226 0.179 0.0032) +(0.226 0.185 0.0032) +(0.226 0.191 0.0032) +(0.226 0.197 0.0032) +(0.226 0.203 0.0032) +(0.226 0.209 0.0032) +(0.226 0.215 0.0032) +(0.226 0.221 0.0032) +(0.226 0.227 0.0032) +(0.226 0.233 0.0032) +(0.226 0.239 0.0032) +(0.226 0.245 0.0032) +(0.226 0.251 0.0032) +(0.226 0.257 0.0032) +(0.226 0.263 0.0032) +(0.226 0.269 0.0032) +(0.226 0.275 0.0032) +(0.226 0.281 0.0032) +(0.226 0.287 0.0032) +(0.226 0.293 0.0032) +(0.226 0.299 0.0032) +(0.226 0.305 0.0032) +(0.226 0.311 0.0032) +(0.226 0.317 0.0032) +(0.226 0.323 0.0032) +(0.226 0.329 0.0032) +(0.226 0.335 0.0032) +(0.226 0.341 0.0032) +(0.226 0.347 0.0032) +(0.226 0.353 0.0032) +(0.226 0.359 0.0032) +(0.226 0.365 0.0032) +(0.226 0.371 0.0032) +(0.226 0.377 0.0032) +(0.226 0.383 0.0032) +(0.226 0.389 0.0032) +(0.226 0.395 0.0032) +(0.226 0.401 0.0032) +(0.226 0.407 0.0032) +(0.226 0.413 0.0032) +(0.226 0.419 0.0032) +(0.226 0.425 0.0032) +(0.226 0.431 0.0032) +(0.226 0.437 0.0032) +(0.226 0.443 0.0032) +(0.226 0.449 0.0032) +(0.226 0.455 0.0032) +(0.226 0.461 0.0032) +(0.226 0.467 0.0032) +(0.226 0.473 0.0032) +(0.226 0.479 0.0032) +(0.226 0.485 0.0032) +(0.226 0.491 0.0032) +(0.226 0.497 0.0032) +(0.232 0.077 0.0032) +(0.232 0.083 0.0032) +(0.232 0.089 0.0032) +(0.232 0.095 0.0032) +(0.232 0.101 0.0032) +(0.232 0.107 0.0032) +(0.232 0.113 0.0032) +(0.232 0.119 0.0032) +(0.232 0.125 0.0032) +(0.232 0.131 0.0032) +(0.232 0.137 0.0032) +(0.232 0.143 0.0032) +(0.232 0.149 0.0032) +(0.232 0.155 0.0032) +(0.232 0.161 0.0032) +(0.232 0.167 0.0032) +(0.232 0.173 0.0032) +(0.232 0.179 0.0032) +(0.232 0.185 0.0032) +(0.232 0.191 0.0032) +(0.232 0.197 0.0032) +(0.232 0.203 0.0032) +(0.232 0.209 0.0032) +(0.232 0.215 0.0032) +(0.232 0.221 0.0032) +(0.232 0.227 0.0032) +(0.232 0.233 0.0032) +(0.232 0.239 0.0032) +(0.232 0.245 0.0032) +(0.232 0.251 0.0032) +(0.232 0.257 0.0032) +(0.232 0.263 0.0032) +(0.232 0.269 0.0032) +(0.232 0.275 0.0032) +(0.232 0.281 0.0032) +(0.232 0.287 0.0032) +(0.232 0.293 0.0032) +(0.232 0.299 0.0032) +(0.232 0.305 0.0032) +(0.232 0.311 0.0032) +(0.232 0.317 0.0032) +(0.232 0.323 0.0032) +(0.232 0.329 0.0032) +(0.232 0.335 0.0032) +(0.232 0.341 0.0032) +(0.232 0.347 0.0032) +(0.232 0.353 0.0032) +(0.232 0.359 0.0032) +(0.232 0.365 0.0032) +(0.232 0.371 0.0032) +(0.232 0.377 0.0032) +(0.232 0.383 0.0032) +(0.232 0.389 0.0032) +(0.232 0.395 0.0032) +(0.232 0.401 0.0032) +(0.232 0.407 0.0032) +(0.232 0.413 0.0032) +(0.232 0.419 0.0032) +(0.232 0.425 0.0032) +(0.232 0.431 0.0032) +(0.232 0.437 0.0032) +(0.232 0.443 0.0032) +(0.232 0.449 0.0032) +(0.232 0.455 0.0032) +(0.232 0.461 0.0032) +(0.232 0.467 0.0032) +(0.232 0.473 0.0032) +(0.232 0.479 0.0032) +(0.232 0.485 0.0032) +(0.232 0.491 0.0032) +(0.232 0.497 0.0032) +(0.238 0.077 0.0032) +(0.238 0.083 0.0032) +(0.238 0.089 0.0032) +(0.238 0.095 0.0032) +(0.238 0.101 0.0032) +(0.238 0.107 0.0032) +(0.238 0.113 0.0032) +(0.238 0.119 0.0032) +(0.238 0.125 0.0032) +(0.238 0.131 0.0032) +(0.238 0.137 0.0032) +(0.238 0.143 0.0032) +(0.238 0.149 0.0032) +(0.238 0.155 0.0032) +(0.238 0.161 0.0032) +(0.238 0.167 0.0032) +(0.238 0.173 0.0032) +(0.238 0.179 0.0032) +(0.238 0.185 0.0032) +(0.238 0.191 0.0032) +(0.238 0.197 0.0032) +(0.238 0.203 0.0032) +(0.238 0.209 0.0032) +(0.238 0.215 0.0032) +(0.238 0.221 0.0032) +(0.238 0.227 0.0032) +(0.238 0.233 0.0032) +(0.238 0.239 0.0032) +(0.238 0.245 0.0032) +(0.238 0.251 0.0032) +(0.238 0.257 0.0032) +(0.238 0.263 0.0032) +(0.238 0.269 0.0032) +(0.238 0.275 0.0032) +(0.238 0.281 0.0032) +(0.238 0.287 0.0032) +(0.238 0.293 0.0032) +(0.238 0.299 0.0032) +(0.238 0.305 0.0032) +(0.238 0.311 0.0032) +(0.238 0.317 0.0032) +(0.238 0.323 0.0032) +(0.238 0.329 0.0032) +(0.238 0.335 0.0032) +(0.238 0.341 0.0032) +(0.238 0.347 0.0032) +(0.238 0.353 0.0032) +(0.238 0.359 0.0032) +(0.238 0.365 0.0032) +(0.238 0.371 0.0032) +(0.238 0.377 0.0032) +(0.238 0.383 0.0032) +(0.238 0.389 0.0032) +(0.238 0.395 0.0032) +(0.238 0.401 0.0032) +(0.238 0.407 0.0032) +(0.238 0.413 0.0032) +(0.238 0.419 0.0032) +(0.238 0.425 0.0032) +(0.238 0.431 0.0032) +(0.238 0.437 0.0032) +(0.238 0.443 0.0032) +(0.238 0.449 0.0032) +(0.238 0.455 0.0032) +(0.238 0.461 0.0032) +(0.238 0.467 0.0032) +(0.238 0.473 0.0032) +(0.238 0.479 0.0032) +(0.238 0.485 0.0032) +(0.238 0.491 0.0032) +(0.238 0.497 0.0032) +(0.244 0.077 0.0032) +(0.244 0.083 0.0032) +(0.244 0.089 0.0032) +(0.244 0.095 0.0032) +(0.244 0.101 0.0032) +(0.244 0.107 0.0032) +(0.244 0.113 0.0032) +(0.244 0.119 0.0032) +(0.244 0.125 0.0032) +(0.244 0.131 0.0032) +(0.244 0.137 0.0032) +(0.244 0.143 0.0032) +(0.244 0.149 0.0032) +(0.244 0.155 0.0032) +(0.244 0.161 0.0032) +(0.244 0.167 0.0032) +(0.244 0.173 0.0032) +(0.244 0.179 0.0032) +(0.244 0.185 0.0032) +(0.244 0.191 0.0032) +(0.244 0.197 0.0032) +(0.244 0.203 0.0032) +(0.244 0.209 0.0032) +(0.244 0.215 0.0032) +(0.244 0.221 0.0032) +(0.244 0.227 0.0032) +(0.244 0.233 0.0032) +(0.244 0.239 0.0032) +(0.244 0.245 0.0032) +(0.244 0.251 0.0032) +(0.244 0.257 0.0032) +(0.244 0.263 0.0032) +(0.244 0.269 0.0032) +(0.244 0.275 0.0032) +(0.244 0.281 0.0032) +(0.244 0.287 0.0032) +(0.244 0.293 0.0032) +(0.244 0.299 0.0032) +(0.244 0.305 0.0032) +(0.244 0.311 0.0032) +(0.244 0.317 0.0032) +(0.244 0.323 0.0032) +(0.244 0.329 0.0032) +(0.244 0.335 0.0032) +(0.244 0.341 0.0032) +(0.244 0.347 0.0032) +(0.244 0.353 0.0032) +(0.244 0.359 0.0032) +(0.244 0.365 0.0032) +(0.244 0.371 0.0032) +(0.244 0.377 0.0032) +(0.244 0.383 0.0032) +(0.244 0.389 0.0032) +(0.244 0.395 0.0032) +(0.244 0.401 0.0032) +(0.244 0.407 0.0032) +(0.244 0.413 0.0032) +(0.244 0.419 0.0032) +(0.244 0.425 0.0032) +(0.244 0.431 0.0032) +(0.244 0.437 0.0032) +(0.244 0.443 0.0032) +(0.244 0.449 0.0032) +(0.244 0.455 0.0032) +(0.244 0.461 0.0032) +(0.244 0.467 0.0032) +(0.244 0.473 0.0032) +(0.244 0.479 0.0032) +(0.244 0.485 0.0032) +(0.244 0.491 0.0032) +(0.244 0.497 0.0032) +(0.25 0.077 0.0032) +(0.25 0.083 0.0032) +(0.25 0.089 0.0032) +(0.25 0.095 0.0032) +(0.25 0.101 0.0032) +(0.25 0.107 0.0032) +(0.25 0.113 0.0032) +(0.25 0.119 0.0032) +(0.25 0.125 0.0032) +(0.25 0.131 0.0032) +(0.25 0.137 0.0032) +(0.25 0.143 0.0032) +(0.25 0.149 0.0032) +(0.25 0.155 0.0032) +(0.25 0.161 0.0032) +(0.25 0.167 0.0032) +(0.25 0.173 0.0032) +(0.25 0.179 0.0032) +(0.25 0.185 0.0032) +(0.25 0.191 0.0032) +(0.25 0.197 0.0032) +(0.25 0.203 0.0032) +(0.25 0.209 0.0032) +(0.25 0.215 0.0032) +(0.25 0.221 0.0032) +(0.25 0.227 0.0032) +(0.25 0.233 0.0032) +(0.25 0.239 0.0032) +(0.25 0.245 0.0032) +(0.25 0.251 0.0032) +(0.25 0.257 0.0032) +(0.25 0.263 0.0032) +(0.25 0.269 0.0032) +(0.25 0.275 0.0032) +(0.25 0.281 0.0032) +(0.25 0.287 0.0032) +(0.25 0.293 0.0032) +(0.25 0.299 0.0032) +(0.25 0.305 0.0032) +(0.25 0.311 0.0032) +(0.25 0.317 0.0032) +(0.25 0.323 0.0032) +(0.25 0.329 0.0032) +(0.25 0.335 0.0032) +(0.25 0.341 0.0032) +(0.25 0.347 0.0032) +(0.25 0.353 0.0032) +(0.25 0.359 0.0032) +(0.25 0.365 0.0032) +(0.25 0.371 0.0032) +(0.25 0.377 0.0032) +(0.25 0.383 0.0032) +(0.25 0.389 0.0032) +(0.25 0.395 0.0032) +(0.25 0.401 0.0032) +(0.25 0.407 0.0032) +(0.25 0.413 0.0032) +(0.25 0.419 0.0032) +(0.25 0.425 0.0032) +(0.25 0.431 0.0032) +(0.25 0.437 0.0032) +(0.25 0.443 0.0032) +(0.25 0.449 0.0032) +(0.25 0.455 0.0032) +(0.25 0.461 0.0032) +(0.25 0.467 0.0032) +(0.25 0.473 0.0032) +(0.25 0.479 0.0032) +(0.25 0.485 0.0032) +(0.25 0.491 0.0032) +(0.25 0.497 0.0032) +(0.256 0.077 0.0032) +(0.256 0.083 0.0032) +(0.256 0.089 0.0032) +(0.256 0.095 0.0032) +(0.256 0.101 0.0032) +(0.256 0.107 0.0032) +(0.256 0.113 0.0032) +(0.256 0.119 0.0032) +(0.256 0.125 0.0032) +(0.256 0.131 0.0032) +(0.256 0.137 0.0032) +(0.256 0.143 0.0032) +(0.256 0.149 0.0032) +(0.256 0.155 0.0032) +(0.256 0.161 0.0032) +(0.256 0.167 0.0032) +(0.256 0.173 0.0032) +(0.256 0.179 0.0032) +(0.256 0.185 0.0032) +(0.256 0.191 0.0032) +(0.256 0.197 0.0032) +(0.256 0.203 0.0032) +(0.256 0.209 0.0032) +(0.256 0.215 0.0032) +(0.256 0.221 0.0032) +(0.256 0.227 0.0032) +(0.256 0.233 0.0032) +(0.256 0.239 0.0032) +(0.256 0.245 0.0032) +(0.256 0.251 0.0032) +(0.256 0.257 0.0032) +(0.256 0.263 0.0032) +(0.256 0.269 0.0032) +(0.256 0.275 0.0032) +(0.256 0.281 0.0032) +(0.256 0.287 0.0032) +(0.256 0.293 0.0032) +(0.256 0.299 0.0032) +(0.256 0.305 0.0032) +(0.256 0.311 0.0032) +(0.256 0.317 0.0032) +(0.256 0.323 0.0032) +(0.256 0.329 0.0032) +(0.256 0.335 0.0032) +(0.256 0.341 0.0032) +(0.256 0.347 0.0032) +(0.256 0.353 0.0032) +(0.256 0.359 0.0032) +(0.256 0.365 0.0032) +(0.256 0.371 0.0032) +(0.256 0.377 0.0032) +(0.256 0.383 0.0032) +(0.256 0.389 0.0032) +(0.256 0.395 0.0032) +(0.256 0.401 0.0032) +(0.256 0.407 0.0032) +(0.256 0.413 0.0032) +(0.256 0.419 0.0032) +(0.256 0.425 0.0032) +(0.256 0.431 0.0032) +(0.256 0.437 0.0032) +(0.256 0.443 0.0032) +(0.256 0.449 0.0032) +(0.256 0.455 0.0032) +(0.256 0.461 0.0032) +(0.256 0.467 0.0032) +(0.256 0.473 0.0032) +(0.256 0.479 0.0032) +(0.256 0.485 0.0032) +(0.256 0.491 0.0032) +(0.256 0.497 0.0032) +(0.262 0.077 0.0032) +(0.262 0.083 0.0032) +(0.262 0.089 0.0032) +(0.262 0.095 0.0032) +(0.262 0.101 0.0032) +(0.262 0.107 0.0032) +(0.262 0.113 0.0032) +(0.262 0.119 0.0032) +(0.262 0.125 0.0032) +(0.262 0.131 0.0032) +(0.262 0.137 0.0032) +(0.262 0.143 0.0032) +(0.262 0.149 0.0032) +(0.262 0.155 0.0032) +(0.262 0.161 0.0032) +(0.262 0.167 0.0032) +(0.262 0.173 0.0032) +(0.262 0.179 0.0032) +(0.262 0.185 0.0032) +(0.262 0.191 0.0032) +(0.262 0.197 0.0032) +(0.262 0.203 0.0032) +(0.262 0.209 0.0032) +(0.262 0.215 0.0032) +(0.262 0.221 0.0032) +(0.262 0.227 0.0032) +(0.262 0.233 0.0032) +(0.262 0.239 0.0032) +(0.262 0.245 0.0032) +(0.262 0.251 0.0032) +(0.262 0.257 0.0032) +(0.262 0.263 0.0032) +(0.262 0.269 0.0032) +(0.262 0.275 0.0032) +(0.262 0.281 0.0032) +(0.262 0.287 0.0032) +(0.262 0.293 0.0032) +(0.262 0.299 0.0032) +(0.262 0.305 0.0032) +(0.262 0.311 0.0032) +(0.262 0.317 0.0032) +(0.262 0.323 0.0032) +(0.262 0.329 0.0032) +(0.262 0.335 0.0032) +(0.262 0.341 0.0032) +(0.262 0.347 0.0032) +(0.262 0.353 0.0032) +(0.262 0.359 0.0032) +(0.262 0.365 0.0032) +(0.262 0.371 0.0032) +(0.262 0.377 0.0032) +(0.262 0.383 0.0032) +(0.262 0.389 0.0032) +(0.262 0.395 0.0032) +(0.262 0.401 0.0032) +(0.262 0.407 0.0032) +(0.262 0.413 0.0032) +(0.262 0.419 0.0032) +(0.262 0.425 0.0032) +(0.262 0.431 0.0032) +(0.262 0.437 0.0032) +(0.262 0.443 0.0032) +(0.262 0.449 0.0032) +(0.262 0.455 0.0032) +(0.262 0.461 0.0032) +(0.262 0.467 0.0032) +(0.262 0.473 0.0032) +(0.262 0.479 0.0032) +(0.262 0.485 0.0032) +(0.262 0.491 0.0032) +(0.262 0.497 0.0032) +(0.268 0.077 0.0032) +(0.268 0.083 0.0032) +(0.268 0.089 0.0032) +(0.268 0.095 0.0032) +(0.268 0.101 0.0032) +(0.268 0.107 0.0032) +(0.268 0.113 0.0032) +(0.268 0.119 0.0032) +(0.268 0.125 0.0032) +(0.268 0.131 0.0032) +(0.268 0.137 0.0032) +(0.268 0.143 0.0032) +(0.268 0.149 0.0032) +(0.268 0.155 0.0032) +(0.268 0.161 0.0032) +(0.268 0.167 0.0032) +(0.268 0.173 0.0032) +(0.268 0.179 0.0032) +(0.268 0.185 0.0032) +(0.268 0.191 0.0032) +(0.268 0.197 0.0032) +(0.268 0.203 0.0032) +(0.268 0.209 0.0032) +(0.268 0.215 0.0032) +(0.268 0.221 0.0032) +(0.268 0.227 0.0032) +(0.268 0.233 0.0032) +(0.268 0.239 0.0032) +(0.268 0.245 0.0032) +(0.268 0.251 0.0032) +(0.268 0.257 0.0032) +(0.268 0.263 0.0032) +(0.268 0.269 0.0032) +(0.268 0.275 0.0032) +(0.268 0.281 0.0032) +(0.268 0.287 0.0032) +(0.268 0.293 0.0032) +(0.268 0.299 0.0032) +(0.268 0.305 0.0032) +(0.268 0.311 0.0032) +(0.268 0.317 0.0032) +(0.268 0.323 0.0032) +(0.268 0.329 0.0032) +(0.268 0.335 0.0032) +(0.268 0.341 0.0032) +(0.268 0.347 0.0032) +(0.268 0.353 0.0032) +(0.268 0.359 0.0032) +(0.268 0.365 0.0032) +(0.268 0.371 0.0032) +(0.268 0.377 0.0032) +(0.268 0.383 0.0032) +(0.268 0.389 0.0032) +(0.268 0.395 0.0032) +(0.268 0.401 0.0032) +(0.268 0.407 0.0032) +(0.268 0.413 0.0032) +(0.268 0.419 0.0032) +(0.268 0.425 0.0032) +(0.268 0.431 0.0032) +(0.268 0.437 0.0032) +(0.268 0.443 0.0032) +(0.268 0.449 0.0032) +(0.268 0.455 0.0032) +(0.268 0.461 0.0032) +(0.268 0.467 0.0032) +(0.268 0.473 0.0032) +(0.268 0.479 0.0032) +(0.268 0.485 0.0032) +(0.268 0.491 0.0032) +(0.268 0.497 0.0032) +(0.274 0.077 0.0032) +(0.274 0.083 0.0032) +(0.274 0.089 0.0032) +(0.274 0.095 0.0032) +(0.274 0.101 0.0032) +(0.274 0.107 0.0032) +(0.274 0.113 0.0032) +(0.274 0.119 0.0032) +(0.274 0.125 0.0032) +(0.274 0.131 0.0032) +(0.274 0.137 0.0032) +(0.274 0.143 0.0032) +(0.274 0.149 0.0032) +(0.274 0.155 0.0032) +(0.274 0.161 0.0032) +(0.274 0.167 0.0032) +(0.274 0.173 0.0032) +(0.274 0.179 0.0032) +(0.274 0.185 0.0032) +(0.274 0.191 0.0032) +(0.274 0.197 0.0032) +(0.274 0.203 0.0032) +(0.274 0.209 0.0032) +(0.274 0.215 0.0032) +(0.274 0.221 0.0032) +(0.274 0.227 0.0032) +(0.274 0.233 0.0032) +(0.274 0.239 0.0032) +(0.274 0.245 0.0032) +(0.274 0.251 0.0032) +(0.274 0.257 0.0032) +(0.274 0.263 0.0032) +(0.274 0.269 0.0032) +(0.274 0.275 0.0032) +(0.274 0.281 0.0032) +(0.274 0.287 0.0032) +(0.274 0.293 0.0032) +(0.274 0.299 0.0032) +(0.274 0.305 0.0032) +(0.274 0.311 0.0032) +(0.274 0.317 0.0032) +(0.274 0.323 0.0032) +(0.274 0.329 0.0032) +(0.274 0.335 0.0032) +(0.274 0.341 0.0032) +(0.274 0.347 0.0032) +(0.274 0.353 0.0032) +(0.274 0.359 0.0032) +(0.274 0.365 0.0032) +(0.274 0.371 0.0032) +(0.274 0.377 0.0032) +(0.274 0.383 0.0032) +(0.274 0.389 0.0032) +(0.274 0.395 0.0032) +(0.274 0.401 0.0032) +(0.274 0.407 0.0032) +(0.274 0.413 0.0032) +(0.274 0.419 0.0032) +(0.274 0.425 0.0032) +(0.274 0.431 0.0032) +(0.274 0.437 0.0032) +(0.274 0.443 0.0032) +(0.274 0.449 0.0032) +(0.274 0.455 0.0032) +(0.274 0.461 0.0032) +(0.274 0.467 0.0032) +(0.274 0.473 0.0032) +(0.274 0.479 0.0032) +(0.274 0.485 0.0032) +(0.274 0.491 0.0032) +(0.274 0.497 0.0032) +(0.28 0.077 0.0032) +(0.28 0.083 0.0032) +(0.28 0.089 0.0032) +(0.28 0.095 0.0032) +(0.28 0.101 0.0032) +(0.28 0.107 0.0032) +(0.28 0.113 0.0032) +(0.28 0.119 0.0032) +(0.28 0.125 0.0032) +(0.28 0.131 0.0032) +(0.28 0.137 0.0032) +(0.28 0.143 0.0032) +(0.28 0.149 0.0032) +(0.28 0.155 0.0032) +(0.28 0.161 0.0032) +(0.28 0.167 0.0032) +(0.28 0.173 0.0032) +(0.28 0.179 0.0032) +(0.28 0.185 0.0032) +(0.28 0.191 0.0032) +(0.28 0.197 0.0032) +(0.28 0.203 0.0032) +(0.28 0.209 0.0032) +(0.28 0.215 0.0032) +(0.28 0.221 0.0032) +(0.28 0.227 0.0032) +(0.28 0.233 0.0032) +(0.28 0.239 0.0032) +(0.28 0.245 0.0032) +(0.28 0.251 0.0032) +(0.28 0.257 0.0032) +(0.28 0.263 0.0032) +(0.28 0.269 0.0032) +(0.28 0.275 0.0032) +(0.28 0.281 0.0032) +(0.28 0.287 0.0032) +(0.28 0.293 0.0032) +(0.28 0.299 0.0032) +(0.28 0.305 0.0032) +(0.28 0.311 0.0032) +(0.28 0.317 0.0032) +(0.28 0.323 0.0032) +(0.28 0.329 0.0032) +(0.28 0.335 0.0032) +(0.28 0.341 0.0032) +(0.28 0.347 0.0032) +(0.28 0.353 0.0032) +(0.28 0.359 0.0032) +(0.28 0.365 0.0032) +(0.28 0.371 0.0032) +(0.28 0.377 0.0032) +(0.28 0.383 0.0032) +(0.28 0.389 0.0032) +(0.28 0.395 0.0032) +(0.28 0.401 0.0032) +(0.28 0.407 0.0032) +(0.28 0.413 0.0032) +(0.28 0.419 0.0032) +(0.28 0.425 0.0032) +(0.28 0.431 0.0032) +(0.28 0.437 0.0032) +(0.28 0.443 0.0032) +(0.28 0.449 0.0032) +(0.28 0.455 0.0032) +(0.28 0.461 0.0032) +(0.28 0.467 0.0032) +(0.28 0.473 0.0032) +(0.28 0.479 0.0032) +(0.28 0.485 0.0032) +(0.28 0.491 0.0032) +(0.28 0.497 0.0032) +(0.286 0.077 0.0032) +(0.286 0.083 0.0032) +(0.286 0.089 0.0032) +(0.286 0.095 0.0032) +(0.286 0.101 0.0032) +(0.286 0.107 0.0032) +(0.286 0.113 0.0032) +(0.286 0.119 0.0032) +(0.286 0.125 0.0032) +(0.286 0.131 0.0032) +(0.286 0.137 0.0032) +(0.286 0.143 0.0032) +(0.286 0.149 0.0032) +(0.286 0.155 0.0032) +(0.286 0.161 0.0032) +(0.286 0.167 0.0032) +(0.286 0.173 0.0032) +(0.286 0.179 0.0032) +(0.286 0.185 0.0032) +(0.286 0.191 0.0032) +(0.286 0.197 0.0032) +(0.286 0.203 0.0032) +(0.286 0.209 0.0032) +(0.286 0.215 0.0032) +(0.286 0.221 0.0032) +(0.286 0.227 0.0032) +(0.286 0.233 0.0032) +(0.286 0.239 0.0032) +(0.286 0.245 0.0032) +(0.286 0.251 0.0032) +(0.286 0.257 0.0032) +(0.286 0.263 0.0032) +(0.286 0.269 0.0032) +(0.286 0.275 0.0032) +(0.286 0.281 0.0032) +(0.286 0.287 0.0032) +(0.286 0.293 0.0032) +(0.286 0.299 0.0032) +(0.286 0.305 0.0032) +(0.286 0.311 0.0032) +(0.286 0.317 0.0032) +(0.286 0.323 0.0032) +(0.286 0.329 0.0032) +(0.286 0.335 0.0032) +(0.286 0.341 0.0032) +(0.286 0.347 0.0032) +(0.286 0.353 0.0032) +(0.286 0.359 0.0032) +(0.286 0.365 0.0032) +(0.286 0.371 0.0032) +(0.286 0.377 0.0032) +(0.286 0.383 0.0032) +(0.286 0.389 0.0032) +(0.286 0.395 0.0032) +(0.286 0.401 0.0032) +(0.286 0.407 0.0032) +(0.286 0.413 0.0032) +(0.286 0.419 0.0032) +(0.286 0.425 0.0032) +(0.286 0.431 0.0032) +(0.286 0.437 0.0032) +(0.286 0.443 0.0032) +(0.286 0.449 0.0032) +(0.286 0.455 0.0032) +(0.286 0.461 0.0032) +(0.286 0.467 0.0032) +(0.286 0.473 0.0032) +(0.286 0.479 0.0032) +(0.286 0.485 0.0032) +(0.286 0.491 0.0032) +(0.286 0.497 0.0032) +) + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties new file mode 100644 index 00000000000..ab3efa0bc4f --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties @@ -0,0 +1,150 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object reactingCloud1Properties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solution +{ + active true; + coupled false; + transient yes; + cellValueSourceCorrection off; + + sourceTerms + { + schemes + { + } + } + + interpolationSchemes + { + rho cell; + U cellPoint; + mu cell; + } + + integrationSchemes + { + U Euler; + } +} + +constantProperties +{ + parcelTypeId 1; + + rhoMin 1e-15; + minParticleMass 1e-15; + + rho0 964; + youngsModulus 6e8; + poissonsRatio 0.35; + + constantVolume false; +} + +subModels +{ + particleForces + { + sphereDrag; + gravity; + } + + injectionModel manualInjection; + + dispersionModel none; + + patchInteractionModel standardWallInteraction; + + heatTransferModel none; + + postProcessingModel none; + + surfaceFilmModel none; + + collisionModel pairCollision; + + radiation off; + + manualInjectionCoeffs + { + massTotal 0; + parcelBasisType fixed; + nParticle 1; + SOI 0; + positionsFile "kinematicCloudPositions"; + U0 ( 0 0 0 ); + sizeDistribution + { + type fixedValue; + fixedValueDistribution + { + value 0.006; + } + } + } + + pairCollisionCoeffs + { + maxInteractionDistance 0.006; + + writeReferredParticleCloud no; + + pairModel pairSpringSliderDashpot; + + pairSpringSliderDashpotCoeffs + { + useEquivalentSize no; + alpha 0.12; + b 1.5; + mu 0.52; + collisionResolutionSteps 12; + }; + + wallModel wallLocalSpringSliderDashpot; + + wallLocalSpringSliderDashpotCoeffs + { + useEquivalentSize no; + collisionResolutionSteps 12; + walls + { + youngsModulus 1e10; + poissonsRatio 0.23; + alpha 0.12; + b 1.5; + mu 0.43; + } + frontAndBack + { + youngsModulus 1e10; + poissonsRatio 0.23; + alpha 0.12; + b 1.5; + mu 0.1; + } + }; + } + + standardWallInteractionCoeffs + { + type rebound; + } +} + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict new file mode 100644 index 00000000000..d06297d0563 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict @@ -0,0 +1,64 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +convertToMeters 0.001; + +vertices +( + (0 77.9423 6.2) + (135 0 6.2) + (165 0 6.2) + (300 77.9423 6.2) + (300 500 6.2) + (0 500 6.2) + (0 77.9423 0) + (135 0 0) + (165 0 0) + (300 77.9423 0) + (300 500 0) + (0 500 0) +); + + +blocks +( + hex (6 9 10 11 0 3 4 5 ) (20 40 1) simpleGrading (1 1 1) + hex (7 8 9 6 1 2 3 0) (20 8 1) simpleGrading (1 1 1) +); + +patches +( + wall walls + ( + (1 7 8 2) + (0 6 7 1) + (2 8 9 3) + (0 5 11 6) + (3 4 10 9) + (4 10 11 5) + ) + + wall frontAndBack + ( + (0 3 4 5) + (1 2 3 0) + (6 11 10 9) + (6 9 8 7) + ) +); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary new file mode 100644 index 00000000000..586d76d640b --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary @@ -0,0 +1,34 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class polyBoundaryMesh; + location "constant/polyMesh"; + object boundary; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +2 +( + walls + { + type wall; + nFaces 136; + startFace 1852; + } + frontAndBack + { + type wall; + nFaces 1920; + startFace 1988; + } +) + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties new file mode 100644 index 00000000000..30ebf88e3de --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties @@ -0,0 +1,24 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +rhoInf rhoInf [ 1 -3 0 0 0 0 0 ] 1.2; + +transportModel Newtonian; + +nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties new file mode 100644 index 00000000000..3e945495c51 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RASModel; + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict new file mode 100644 index 00000000000..590365cdab3 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application icoUncoupledKinematicParcelFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 0.25; + +deltaT 5e-5; + +writeControl runTime; + +writeInterval 0.05; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression uncompressed; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict new file mode 100644 index 00000000000..badba37e524 --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 4; + +method simple; + +simpleCoeffs +{ + n ( 4 1 1 ); + delta 0.001; +} + +hierarchicalCoeffs +{ + n ( 4 1 1 ); + delta 0.001; + order xyz; +} + +manualCoeffs +{ + dataFile ""; +} + +distributed no; + +roots ( ); + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes new file mode 100644 index 00000000000..1b8a2d358ff --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes @@ -0,0 +1,43 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default none; +} + +gradSchemes +{ + default none; +} + +divSchemes +{ + default none; +} + +laplacianSchemes +{ + default none; +} + +interpolationSchemes +{ + default none; +} + +// ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution new file mode 100644 index 00000000000..39c45aff34b --- /dev/null +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ +} + +// ************************************************************************* // -- GitLab