Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
VirtualFluids
Commits
fab29ced
Commit
fab29ced
authored
6 years ago
by
Konstantin Kutscher
Browse files
Options
Downloads
Patches
Plain Diff
fixed laminar tube flow setup
parent
ab4174de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Applications/LaminarTubeFlow/ltf.cpp
+43
-41
43 additions, 41 deletions
source/Applications/LaminarTubeFlow/ltf.cpp
with
43 additions
and
41 deletions
source/Applications/LaminarTubeFlow/ltf.cpp
+
43
−
41
View file @
fab29ced
...
...
@@ -14,18 +14,18 @@ void run(string configname)
config
.
load
(
configname
);
string
pathname
=
config
.
getString
(
"pathname"
);
int
numOfThreads
=
config
.
get
I
nt
(
"numOfThreads"
);
int
numOfThreads
=
config
.
get
Value
<
i
nt
>
(
"numOfThreads"
);
vector
<
int
>
blocknx
=
config
.
getVector
<
int
>
(
"blocknx"
);
double
uLB
=
config
.
get
D
ouble
(
"uLB"
);
double
endTime
=
config
.
get
D
ouble
(
"endTime"
);
double
outTime
=
config
.
get
D
ouble
(
"outTime"
);
double
availMem
=
config
.
get
D
ouble
(
"availMem"
);
int
refineLevel
=
config
.
get
I
nt
(
"refineLevel"
);
double
Re
=
config
.
get
D
ouble
(
"Re"
);
double
dx
=
config
.
get
D
ouble
(
"dx"
);
double
uLB
=
config
.
get
Value
<
d
ouble
>
(
"uLB"
);
double
endTime
=
config
.
get
Value
<
d
ouble
>
(
"endTime"
);
double
outTime
=
config
.
get
Value
<
d
ouble
>
(
"outTime"
);
double
availMem
=
config
.
get
Value
<
d
ouble
>
(
"availMem"
);
int
refineLevel
=
config
.
get
Value
<
i
nt
>
(
"refineLevel"
);
double
Re
=
config
.
get
Value
<
d
ouble
>
(
"Re"
);
double
dx
=
config
.
get
Value
<
d
ouble
>
(
"dx"
);
vector
<
double
>
length
=
config
.
getVector
<
double
>
(
"length"
);
bool
logToFile
=
config
.
get
B
ool
(
"logToFile"
);
double
restartStep
=
config
.
get
D
ouble
(
"restartStep"
);
bool
logToFile
=
config
.
get
Value
<
b
ool
>
(
"logToFile"
);
double
restartStep
=
config
.
get
Value
<
d
ouble
>
(
"restartStep"
);
double
cpStart
=
config
.
getValue
<
double
>
(
"cpStart"
);
double
cpStep
=
config
.
getValue
<
double
>
(
"cpStep"
);
bool
newStart
=
config
.
getValue
<
bool
>
(
"newStart"
);
...
...
@@ -71,7 +71,8 @@ void run(string configname)
noSlipBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
NoSlipBCAlgorithm
()));
SPtr
<
BCAdapter
>
denBCAdapter
(
new
DensityBCAdapter
(
rhoLB
));
denBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
NonReflectingOutflowBCAlgorithm
()));
//denBCAdapter->setBcAlgorithm(SPtr<BCAlgorithm>(new NonReflectingOutflowBCAlgorithm()));
denBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
NonEqDensityBCAlgorithm
()));
//mu::Parser fct;
//fct.SetExpr("U");
...
...
@@ -86,14 +87,14 @@ void run(string configname)
bcVisitor
.
addBC
(
noSlipBCAdapter
);
bcVisitor
.
addBC
(
denBCAdapter
);
//bcVisitor.addBC(velBCAdapter);
SPtr
<
Grid3D
>
grid
(
new
Grid3D
(
comm
));
//////////////////////////////////////////////////////////////////////////
//restart
SPtr
<
UbScheduler
>
rSch
(
new
UbScheduler
(
cpStep
,
cpStart
));
//RestartCoProcessor rp(grid, rSch, comm, pathname, RestartCoProcessor::TXT);
MPIIORestart
1
CoProcessor
rcp
(
grid
,
rSch
,
pathname
,
comm
);
MPIIORestartCoProcessor
rcp
(
grid
,
rSch
,
pathname
,
comm
);
//////////////////////////////////////////////////////////////////////////
if
(
newStart
)
...
...
@@ -161,7 +162,7 @@ void run(string configname)
GbCuboid3DPtr
geoOutflow
(
new
GbCuboid3D
(
g_maxX1
,
g_minX2
-
blockLength
,
g_minX3
-
blockLength
,
g_maxX1
+
blockLength
,
g_maxX2
+
blockLength
,
g_maxX3
+
blockLength
));
if
(
myid
==
0
)
GbSystem3D
::
writeGeoObject
(
geoOutflow
.
get
(),
pathname
+
"/geo/geoOutflow"
,
WbWriterVtkXmlASCII
::
getInstance
());
WriteBlocks
SPtr
<
CoProcessor
>
ppblocks
(
new
WriteBlocksCoProcessor
(
grid
,
SPtr
<
UbScheduler
>
(
new
UbScheduler
(
1
)),
pathname
,
WbWriterVtkXmlBinary
::
getInstance
(),
comm
));
SPtr
<
CoProcessor
>
ppblocks
(
new
WriteBlocksCoProcessor
(
grid
,
SPtr
<
UbScheduler
>
(
new
UbScheduler
(
1
)),
pathname
,
WbWriterVtkXmlBinary
::
getInstance
(),
comm
));
ppblocks
->
process
(
0
);
...
...
@@ -173,18 +174,19 @@ void run(string configname)
double
cx3
=
cylinder
->
getX3Centroid
();
mu
::
Parser
fct
;
fct
.
SetExpr
(
"vx1*(1-((x2-y0)^2+(x3-z0)^2)/(R^2))"
);
fct
.
DefineConst
(
"x2Vmax"
,
0.0
);
//x2-Pos fuer vmax
fct
.
DefineConst
(
"x3Vmax"
,
0.0
);
//x3-Pos fuer vmax
fct
.
DefineConst
(
"R"
,
r
);
fct
.
SetExpr
(
"vx1"
);
//fct.SetExpr("vx1*(1-((x2-y0)^2+(x3-z0)^2)/(R^2))");
//fct.DefineConst("x2Vmax", 0.0); //x2-Pos fuer vmax
//fct.DefineConst("x3Vmax", 0.0); //x3-Pos fuer vmax
//fct.DefineConst("R", r);
fct
.
DefineConst
(
"vx1"
,
uLB
);
fct
.
DefineConst
(
"x0"
,
cx1
);
fct
.
DefineConst
(
"y0"
,
cx2
);
fct
.
DefineConst
(
"z0"
,
cx3
);
fct
.
DefineConst
(
"nue"
,
nuLB
);
//
fct.DefineConst("x0", cx1);
//
fct.DefineConst("y0", cx2);
//
fct.DefineConst("z0", cx3);
//
fct.DefineConst("nue", nuLB);
SPtr
<
BCAdapter
>
velBCAdapter
(
new
VelocityBCAdapter
(
true
,
false
,
false
,
fct
,
0
,
BCFunction
::
INFCONST
));
//
velBCAdapter->setBcAlgorithm(SPtr<BCAlgorithm>(new VelocityBCAlgorithm()));
velBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
VelocityWithDensityBCAlgorithm
()));
velBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
VelocityBCAlgorithm
()));
//
velBCAdapter->setBcAlgorithm(SPtr<BCAlgorithm>(new VelocityWithDensityBCAlgorithm()));
SPtr
<
D3Q27Interactor
>
inflowInt
=
SPtr
<
D3Q27Interactor
>
(
new
D3Q27Interactor
(
geoInflow
,
grid
,
velBCAdapter
,
Interactor3D
::
SOLID
));
...
...
@@ -231,8 +233,8 @@ void run(string configname)
SPtr
<
LBMKernel
>
kernel
;
kernel
=
SPtr
<
LBMKernel
>
(
new
IncompressibleCumulantLBMKernel
(
blocknx
[
0
],
blocknx
[
1
],
blocknx
[
2
],
IncompressibleCumulantLBMKernel
::
NORMAL
));
//kernel = SPtr<LBMKernel>(new CompressibleCumulantLBMKernel(
blocknx[0], blocknx[1], blocknx[2], CompressibleCumulantLBMKernel::NORMAL
));
kernel
=
SPtr
<
LBMKernel
>
(
new
IncompressibleCumulantLBMKernel
());
//kernel = SPtr<LBMKernel>(new CompressibleCumulantLBMKernel());
//
SPtr
<
BCProcessor
>
bcProc
(
new
BCProcessor
());
...
...
@@ -255,7 +257,7 @@ void run(string configname)
grid
->
accept
(
bcVisitor
);
//initialization of distributions
InitDistributionsBlockVisitor
initVisitor
(
nuLB
,
rhoLB
)
;
InitDistributionsBlockVisitor
initVisitor
;
//initVisitor.setVx1(fct);
//initVisitor.setVx1(uLB);
grid
->
accept
(
initVisitor
);
...
...
@@ -275,8 +277,7 @@ void run(string configname)
//boundary conditions grid
{
SPtr
<
UbScheduler
>
geoSch
(
new
UbScheduler
(
1
));
WriteBoundaryConditionsSPtr
<
CoProcessor
>
ppgeo
(
new
WriteBoundaryConditionsCoProcessor
(
grid
,
geoSch
,
pathname
,
WbWriterVtkXmlBinary
::
getInstance
(),
conv
,
comm
));
SPtr
<
CoProcessor
>
ppgeo
(
new
WriteBoundaryConditionsCoProcessor
(
grid
,
geoSch
,
pathname
,
WbWriterVtkXmlBinary
::
getInstance
(),
conv
,
comm
));
ppgeo
->
process
(
0
);
ppgeo
.
reset
();
}
...
...
@@ -302,32 +303,33 @@ void run(string configname)
grid
->
setTimeStep
(
restartStep
);
SPtr
<
BCAdapter
>
velBCAdapter
(
new
VelocityBCAdapter
());
//
velBCAdapter->setBcAlgorithm(SPtr<BCAlgorithm>(new VelocityBCAlgorithm()));
velBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
VelocityWithDensityBCAlgorithm
()));
velBCAdapter
->
setBcAlgorithm
(
SPtr
<
BCAlgorithm
>
(
new
VelocityBCAlgorithm
()));
//
velBCAdapter->setBcAlgorithm(SPtr<BCAlgorithm>(new VelocityWithDensityBCAlgorithm()));
bcVisitor
.
addBC
(
velBCAdapter
);
grid
->
accept
(
bcVisitor
);
//set connectors
//
InterpolationProcessorPtr iProcessor(new IncompressibleOffsetInterpolationProcessor());
InterpolationProcessorPtr
iProcessor
(
new
CompressibleOffsetInterpolationProcessor
());
InterpolationProcessorPtr
iProcessor
(
new
IncompressibleOffsetInterpolationProcessor
());
//
InterpolationProcessorPtr iProcessor(new CompressibleOffsetInterpolationProcessor());
SetConnectorsBlockVisitor
setConnsVisitor
(
comm
,
true
,
D3Q27System
::
ENDDIR
,
nuLB
,
iProcessor
);
grid
->
accept
(
setConnsVisitor
);
if
(
myid
==
0
)
UBLOG
(
logINFO
,
"Restart - end"
);
}
SPtr
<
UbScheduler
>
visSch
(
new
UbScheduler
(
outTime
));
WriteMacroscopicQuantitiesCoProcessor
pp
(
grid
,
visSch
,
pathname
,
WbWriterVtkXmlASCII
::
getInstance
(),
conv
,
comm
);
SPtr
<
CoProcessor
>
pp
(
new
WriteMacroscopicQuantitiesCoProcessor
(
grid
,
visSch
,
pathname
,
WbWriterVtkXmlASCII
::
getInstance
(),
conv
,
comm
)
)
;
SPtr
<
UbScheduler
>
nupsSch
(
new
UbScheduler
(
10
,
30
,
100
));
NUPSCounterCoProcessor
npr
(
grid
,
nupsSch
,
numOfThreads
,
comm
);
//CalculationManagerPtr calculation(new CalculationManager(grid, numOfThreads, endTime, visSch,CalculationManager::MPI));
SPtr
<
CoProcessor
>
npr
(
new
NUPSCounterCoProcessor
(
grid
,
nupsSch
,
numOfThreads
,
comm
));
omp_set_num_threads
(
numOfThreads
);
SPtr
<
UbScheduler
>
stepGhostLayer
(
visSch
);
SPtr
<
Calculator
>
calculator
(
new
BasicCalculator
(
grid
,
stepGhostLayer
,
endTime
));
calculator
->
addCoProcessor
(
npr
);
calculator
->
addCoProcessor
(
pp
);
const
SPtr
<
ConcreteCalculatorFactory
>
calculatorFactory
=
std
::
make_shared
<
ConcreteCalculatorFactory
>
(
visSch
);
CalculationManagerPtr
calculation
(
new
CalculationManager
(
grid
,
numOfThreads
,
endTime
,
calculatorFactory
,
CalculatorType
::
PREPOSTBC
));
if
(
myid
==
0
)
UBLOG
(
logINFO
,
"Simulation-start"
);
calculat
ion
->
calculate
();
calculat
or
->
calculate
();
if
(
myid
==
0
)
UBLOG
(
logINFO
,
"Simulation-end"
);
}
catch
(
std
::
exception
&
e
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment