Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
e716d1c0
Commit
e716d1c0
authored
Jun 13, 2019
by
mattijs
Committed by
Andrew Heather
Jun 13, 2019
Browse files
ENH: surfactantFoam: run cleanly. See #1328
- do not write 0/ directory - clean case in ./Allclean
parent
5137c1f4
Changes
5
Hide whitespace changes
Inline
Side-by-side
applications/solvers/finiteArea/surfactantFoam/createVolFields.H
View file @
e716d1c0
...
...
@@ -16,7 +16,7 @@
);
vsm
.
mapToVolume
(
Cs
,
Cvf
.
boundaryFieldRef
());
Cvf
.
write
();
//
Cvf.write();
volVectorField
U
(
...
...
@@ -33,4 +33,4 @@
);
vsm
.
mapToVolume
(
Us
,
U
.
boundaryFieldRef
());
U
.
write
();
//
U.write();
tutorials/finiteArea/surfactantFoam/planeTransport/0/Cvf
deleted
100644 → 0
View file @
5137c1f4
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object Cvf;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 -1 0 0 0 0 0];
internalField uniform 0;
boundaryField
{
inlet
{
type calculated;
value uniform 0;
}
bound
{
type calculated;
value uniform 0;
}
outlet
{
type calculated;
value uniform 0;
}
bottom
{
type calculated;
value uniform 0;
}
top
{
type calculated;
value uniform 0;
}
}
// ************************************************************************* //
tutorials/finiteArea/surfactantFoam/planeTransport/0/U
deleted
100644 → 0
View file @
5137c1f4
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / 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
{
inlet
{
type calculated;
value uniform (0 0 0);
}
bound
{
type calculated;
value uniform (0 0 0);
}
outlet
{
type calculated;
value uniform (0 0 0);
}
bottom
{
type calculated;
value uniform (0 0 0);
}
top
{
type calculated;
value uniform (0.05 0 0);
}
}
// ************************************************************************* //
tutorials/finiteArea/surfactantFoam/planeTransport/Allclean
View file @
e716d1c0
...
...
@@ -2,12 +2,7 @@
cd
${
0
%/*
}
||
exit
1
# Run from this directory
.
$WM_PROJECT_DIR
/bin/tools/CleanFunctions
# Tutorial clean functions
cleanTimeDirectories
cleanPostProcessing
cleanCase
cleanFaMesh
rm
-rf
processor
*
#------------------------------------------------------------------------------
tutorials/finiteArea/surfactantFoam/planeTransport/
constant/polyMesh
/blockMeshDict
→
tutorials/finiteArea/surfactantFoam/planeTransport/
system
/blockMeshDict
View file @
e716d1c0
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment