Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-tectonic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
podlesny
dune-tectonic
Commits
831307c6
Commit
831307c6
authored
6 years ago
by
podlesny
Browse files
Options
Downloads
Patches
Plain Diff
.
parent
f90136e3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/multi-body-problem.cc
+58
-77
58 additions, 77 deletions
src/multi-body-problem.cc
src/spatial-solving/solverfactory.cc
+4
-4
4 additions, 4 deletions
src/spatial-solving/solverfactory.cc
with
62 additions
and
81 deletions
src/multi-body-problem.cc
+
58
−
77
View file @
831307c6
...
@@ -81,20 +81,6 @@
...
@@ -81,20 +81,6 @@
size_t
const
dims
=
MY_DIM
;
size_t
const
dims
=
MY_DIM
;
template
<
class
GridView
>
void
writeToVTK
(
const
GridView
&
gridView
,
const
std
::
string
path
,
const
std
::
string
name
)
{
Dune
::
VTKWriter
<
GridView
>
vtkwriter
(
gridView
);
//std::ofstream lStream( "garbage.txt" );
std
::
streambuf
*
lBufferOld
=
std
::
cout
.
rdbuf
();
//std::cout.rdbuf(lStream.rdbuf());
vtkwriter
.
pwrite
(
name
,
path
,
path
);
std
::
cout
.
rdbuf
(
lBufferOld
);
}
Dune
::
ParameterTree
getParameters
(
int
argc
,
char
*
argv
[])
{
Dune
::
ParameterTree
getParameters
(
int
argc
,
char
*
argv
[])
{
Dune
::
ParameterTree
parset
;
Dune
::
ParameterTree
parset
;
Dune
::
ParameterTreeParser
::
readINITree
(
"/home/mi/podlesny/software/dune/dune-tectonic/src/multi-body-problem.cfg"
,
parset
);
Dune
::
ParameterTreeParser
::
readINITree
(
"/home/mi/podlesny/software/dune/dune-tectonic/src/multi-body-problem.cfg"
,
parset
);
...
@@ -160,7 +146,9 @@ int main(int argc, char *argv[]) {
...
@@ -160,7 +146,9 @@ int main(int argc, char *argv[]) {
}
}
#endif
#endif
// ------------
// set up grids
// set up grids
// ------------
GridsConstructor
<
Grid
>
gridConstructor
(
cuboidGeometries
);
GridsConstructor
<
Grid
>
gridConstructor
(
cuboidGeometries
);
auto
&
grids
=
gridConstructor
.
getGrids
();
auto
&
grids
=
gridConstructor
.
getGrids
();
...
@@ -174,8 +162,6 @@ int main(int argc, char *argv[]) {
...
@@ -174,8 +162,6 @@ int main(int argc, char *argv[]) {
weakPatch
=
getWeakPatch
<
LocalVector
>
(
parset
.
sub
(
"boundary.friction.weakening"
),
cuboidGeometry
);
weakPatch
=
getWeakPatch
<
LocalVector
>
(
parset
.
sub
(
"boundary.friction.weakening"
),
cuboidGeometry
);
refine
(
*
grids
[
i
],
weakPatch
,
parset
.
get
<
double
>
(
"boundary.friction.smallestDiameter"
),
cuboidGeometry
.
lengthScale
);
refine
(
*
grids
[
i
],
weakPatch
,
parset
.
get
<
double
>
(
"boundary.friction.smallestDiameter"
),
cuboidGeometry
.
lengthScale
);
writeToVTK
(
grids
[
i
]
->
leafGridView
(),
""
,
"grid"
+
std
::
to_string
(
i
));
// determine minDiameter and maxDiameter
// determine minDiameter and maxDiameter
double
minDiameter
=
std
::
numeric_limits
<
double
>::
infinity
();
double
minDiameter
=
std
::
numeric_limits
<
double
>::
infinity
();
double
maxDiameter
=
0.0
;
double
maxDiameter
=
0.0
;
...
@@ -197,18 +183,9 @@ int main(int argc, char *argv[]) {
...
@@ -197,18 +183,9 @@ int main(int argc, char *argv[]) {
const
auto
deformedGrids
=
deformedGridComplex
.
gridVector
();
const
auto
deformedGrids
=
deformedGridComplex
.
gridVector
();
/*
// ------------------------
// test deformed grids
// set up contact couplings
for (size_t i=0; i<deformedGrids.size(); i++) {
// ------------------------
Vector def(deformedGrids[i]->size(dims));
def = 1;
deformedGridComplex.setDeformation(def, i);
writeToVTK(deformedGrids[i]->leafGridView(), "", "deformedGrid" + std::to_string(i));
}
// test deformed grids
*/
std
::
vector
<
std
::
shared_ptr
<
DefLeafGridView
>>
leafViews
(
deformedGrids
.
size
());
std
::
vector
<
std
::
shared_ptr
<
DefLeafGridView
>>
leafViews
(
deformedGrids
.
size
());
std
::
vector
<
std
::
shared_ptr
<
DefLevelGridView
>>
levelViews
(
deformedGrids
.
size
());
std
::
vector
<
std
::
shared_ptr
<
DefLevelGridView
>>
levelViews
(
deformedGrids
.
size
());
std
::
vector
<
size_t
>
leafVertexCounts
(
deformedGrids
.
size
());
std
::
vector
<
size_t
>
leafVertexCounts
(
deformedGrids
.
size
());
...
@@ -247,12 +224,9 @@ int main(int argc, char *argv[]) {
...
@@ -247,12 +224,9 @@ int main(int argc, char *argv[]) {
couplings
[
i
]
->
set
(
i
,
i
+
1
,
nonmortarPatch
,
mortarPatch
,
0.1
,
Dune
::
Contact
::
CouplingPairBase
::
STICK_SLIP
,
contactProjection
,
backend
);
couplings
[
i
]
->
set
(
i
,
i
+
1
,
nonmortarPatch
,
mortarPatch
,
0.1
,
Dune
::
Contact
::
CouplingPairBase
::
STICK_SLIP
,
contactProjection
,
backend
);
}
}
// ----------------------------------
// set up dune-contact nBodyAssembler
// set up dune-contact nBodyAssembler
/*std::vector<const DeformedGrid*> const_grids(bodyCount);
// ----------------------------------
for (size_t i=0; i<const_grids.size(); i++) {
const_grids[i] = &deformedGrids.grid("body" + std::to_string(i));
}*/
Dune
::
Contact
::
NBodyAssembler
<
DeformedGrid
,
Vector
>
nBodyAssembler
(
bodyCount
,
bodyCount
-
1
);
Dune
::
Contact
::
NBodyAssembler
<
DeformedGrid
,
Vector
>
nBodyAssembler
(
bodyCount
,
bodyCount
-
1
);
nBodyAssembler
.
setGrids
(
deformedGrids
);
nBodyAssembler
.
setGrids
(
deformedGrids
);
...
@@ -263,7 +237,9 @@ int main(int argc, char *argv[]) {
...
@@ -263,7 +237,9 @@ int main(int argc, char *argv[]) {
nBodyAssembler
.
assembleTransferOperator
();
nBodyAssembler
.
assembleTransferOperator
();
nBodyAssembler
.
assembleObstacle
();
nBodyAssembler
.
assembleObstacle
();
// --------------------------
// set up boundary conditions
// set up boundary conditions
// --------------------------
std
::
vector
<
BoundaryPatch
<
DefLeafGridView
>>
neumannBoundaries
(
bodyCount
);
std
::
vector
<
BoundaryPatch
<
DefLeafGridView
>>
neumannBoundaries
(
bodyCount
);
std
::
vector
<
BoundaryPatch
<
DefLeafGridView
>>
surfaces
(
bodyCount
);
std
::
vector
<
BoundaryPatch
<
DefLeafGridView
>>
surfaces
(
bodyCount
);
...
@@ -273,7 +249,7 @@ int main(int argc, char *argv[]) {
...
@@ -273,7 +249,7 @@ int main(int argc, char *argv[]) {
// Dirichlet boundary
// Dirichlet boundary
std
::
vector
<
Dune
::
BitSetVector
<
dims
>>
noNodes
(
bodyCount
);
std
::
vector
<
Dune
::
BitSetVector
<
dims
>>
noNodes
(
bodyCount
);
std
::
vector
<
Dune
::
BitSetVector
<
dims
>>
dirichletNodes
(
bodyCount
);
std
::
vector
<
std
::
vector
<
Dune
::
BitSetVector
<
dims
>>
>
dirichletNodes
(
bodyCount
);
// set up functions for time-dependent boundary conditions
// set up functions for time-dependent boundary conditions
using
Function
=
Dune
::
VirtualFunction
<
double
,
double
>
;
using
Function
=
Dune
::
VirtualFunction
<
double
,
double
>
;
...
@@ -306,8 +282,10 @@ int main(int argc, char *argv[]) {
...
@@ -306,8 +282,10 @@ int main(int argc, char *argv[]) {
velocityDirichletFunctions
[
i
]
=
new
VelocityDirichletCondition
();
velocityDirichletFunctions
[
i
]
=
new
VelocityDirichletCondition
();
noNodes
[
i
]
=
Dune
::
BitSetVector
<
dims
>
(
leafVertexCount
);
noNodes
[
i
]
=
Dune
::
BitSetVector
<
dims
>
(
leafVertexCount
);
dirichletNodes
[
i
]
=
Dune
::
BitSetVector
<
dims
>
(
leafVertexCount
);
auto
&
gridDirichletNodes
=
dirichletNodes
[
i
];
auto
&
gridDirichletNodes
=
dirichletNodes
[
i
];
gridDirichletNodes
=
Dune
::
BitSetVector
<
dims
>
(
leafVertexCount
);
for
(
int
j
=
0
;
j
<
leafVertexCount
;
j
++
)
{
for
(
int
j
=
0
;
j
<
leafVertexCount
;
j
++
)
{
if
(
leafFaces
[
i
]
->
right
.
containsVertex
(
j
))
if
(
leafFaces
[
i
]
->
right
.
containsVertex
(
j
))
gridDirichletNodes
[
j
][
0
]
=
true
;
gridDirichletNodes
[
j
][
0
]
=
true
;
...
@@ -322,7 +300,42 @@ int main(int argc, char *argv[]) {
...
@@ -322,7 +300,42 @@ int main(int argc, char *argv[]) {
}
}
}
}
// extend Dirichlet information to all grid levels
/* BoundaryPatchProlongator<GridType>::prolong(dirichletBoundary[i]);
dirichletNodes[i].resize(toplevel+1);
for (int j=0; j<=toplevel; j++) {
int fSSize = grids[i]->size(j,dim);
dirichletNodes[i][j].resize(fSSize);
for (int k=0; k<fSSize; k++)
for (int l=0; l<dim; l++)
dirichletNodes[i][j][k][l] = dirichletBoundary[i][j].containsVertex(k);
}
sampleOnBitField(*grids[i], dirichletValues[i], dirichletNodes[i]);*/
const
int
toplevel
=
deformedGrids
[
0
]
->
maxLevel
();
std
::
vector
<
Dune
::
BitSetVector
<
dims
>
>
totalDirichletNodes
(
toplevel
+
1
);
for
(
int
i
=
0
;
i
<=
toplevel
;
i
++
)
{
int
totalSize
=
0
;
for
(
int
j
=
0
;
j
<
deformedGrids
.
size
();
j
++
)
totalSize
+=
deformedGrids
[
j
]
->
size
(
i
,
dims
);
totalDirichletNodes
[
i
].
resize
(
totalSize
);
int
idx
=
0
;
for
(
int
j
=
0
;
j
<
deformedGrids
.
size
();
j
++
)
for
(
size_t
k
=
0
;
k
<
dirichletNodes
[
j
][
i
].
size
();
k
++
)
for
(
int
l
=
0
;
l
<
dims
;
l
++
)
totalDirichletNodes
[
i
][
idx
++
][
l
]
=
dirichletNodes
[
j
][
i
][
k
][
l
];
}
// ------------------------------------------------------------------------------------
// set up individual assemblers for each body, assemble problem (matrices, forces, rhs)
// set up individual assemblers for each body, assemble problem (matrices, forces, rhs)
// ------------------------------------------------------------------------------------
std
::
vector
<
std
::
shared_ptr
<
Assembler
>>
assemblers
(
bodyCount
);
std
::
vector
<
std
::
shared_ptr
<
Assembler
>>
assemblers
(
bodyCount
);
Matrices
<
Matrix
>
matrices
(
bodyCount
);
Matrices
<
Matrix
>
matrices
(
bodyCount
);
...
@@ -355,40 +368,9 @@ int main(int argc, char *argv[]) {
...
@@ -355,40 +368,9 @@ int main(int argc, char *argv[]) {
};
};
}
}
/* Jonny 2bcontact
// -----------------
// make dirichlet bitfields containing dirichlet information for both grids
// init input/output
int size = rhs[0].size() + rhs[1].size();
// -----------------
Dune::BitSetVector<dims> totalDirichletNodes(size);
for (size_t i=0; i<dirichletNodes[0].size(); i++)
for (int j=0; j<dims; j++)
totalDirichletNodes[i][j] = dirichletNodes[0][i][j];
int offset = rhs[0].size();
for (size_t i=0; i<dirichletNodes[1].size(); i++)
for (int j=0; j<dims; j++)
totalDirichletNodes[offset + i][j] = dirichletNodes[1][i][j];
// assemble separate linear elasticity problems
std::array<MatrixType,2> stiffnessMatrix;
std::array<const MatrixType*, 2> submat;
for (size_t i=0; i<2; i++) {
OperatorAssembler<P1Basis,P1Basis> globalAssembler(*p1Basis[i],*p1Basis[i]);
double s = (i==0) ? E0 : E1;
StVenantKirchhoffAssembler<GridType, P1Basis::LocalFiniteElement, P1Basis::LocalFiniteElement> localAssembler(s, nu);
globalAssembler.assemble(localAssembler, stiffnessMatrix[i]);
submat[i] = &stiffnessMatrix[i];
}
MatrixType bilinearForm;
contactAssembler.assembleJacobian(submat, bilinearForm);
*/
using
MyProgramState
=
ProgramState
<
Vector
,
ScalarVector
>
;
using
MyProgramState
=
ProgramState
<
Vector
,
ScalarVector
>
;
MyProgramState
programState
(
leafVertexCounts
);
MyProgramState
programState
(
leafVertexCounts
);
auto
const
firstRestart
=
parset
.
get
<
size_t
>
(
"io.restarts.first"
);
auto
const
firstRestart
=
parset
.
get
<
size_t
>
(
"io.restarts.first"
);
...
@@ -418,11 +400,10 @@ int main(int argc, char *argv[]) {
...
@@ -418,11 +400,10 @@ int main(int argc, char *argv[]) {
restartIO
->
read
(
firstRestart
,
programState
);
restartIO
->
read
(
firstRestart
,
programState
);
else
else
programState
.
setupInitialConditions
(
parset
,
nBodyAssembler
,
externalForces
,
programState
.
setupInitialConditions
(
parset
,
nBodyAssembler
,
externalForces
,
matrices
,
assemblers
,
d
irichletNodes
,
matrices
,
assemblers
,
totalD
irichletNodes
,
noNodes
,
frictionalBoundaries
,
body
);
noNodes
,
frictionalBoundaries
,
body
);
// assemble friction
// assemble friction
std
::
vector
<
std
::
shared_ptr
<
MyGlobalFrictionData
<
LocalVector
>>>
frictionInfo
(
weakPatches
.
size
());
std
::
vector
<
std
::
shared_ptr
<
MyGlobalFrictionData
<
LocalVector
>>>
frictionInfo
(
weakPatches
.
size
());
std
::
vector
<
std
::
shared_ptr
<
GlobalFriction
<
Matrix
,
Vector
>>>
globalFriction
(
weakPatches
.
size
());
std
::
vector
<
std
::
shared_ptr
<
GlobalFriction
<
Matrix
,
Vector
>>>
globalFriction
(
weakPatches
.
size
());
...
@@ -432,7 +413,6 @@ int main(int argc, char *argv[]) {
...
@@ -432,7 +413,6 @@ int main(int argc, char *argv[]) {
globalFriction
[
i
]
->
updateAlpha
(
programState
.
alpha
[
i
]);
globalFriction
[
i
]
->
updateAlpha
(
programState
.
alpha
[
i
]);
}
}
using
MyVertexBasis
=
typename
Assembler
::
VertexBasis
;
using
MyVertexBasis
=
typename
Assembler
::
VertexBasis
;
using
MyCellBasis
=
typename
Assembler
::
CellBasis
;
using
MyCellBasis
=
typename
Assembler
::
CellBasis
;
std
::
vector
<
Vector
>
vertexCoordinates
(
leafVertexCounts
.
size
());
std
::
vector
<
Vector
>
vertexCoordinates
(
leafVertexCounts
.
size
());
...
@@ -499,9 +479,11 @@ int main(int argc, char *argv[]) {
...
@@ -499,9 +479,11 @@ int main(int argc, char *argv[]) {
};
};
report
(
true
);
report
(
true
);
// -------------------
// Set up TNNMG solver
// Set up TNNMG solver
// -------------------
using
NonlinearFactory
=
SolverFactory
<
DeformedGrid
,
GlobalFriction
<
Matrix
,
Vector
>
,
Matrix
,
Vector
>
;
using
NonlinearFactory
=
SolverFactory
<
DeformedGrid
,
GlobalFriction
<
Matrix
,
Vector
>
,
Matrix
,
Vector
>
;
NonlinearFactory
factory
(
parset
.
sub
(
"solver.tnnmg"
),
nBodyAssembler
,
d
irichletNodes
);
NonlinearFactory
factory
(
parset
.
sub
(
"solver.tnnmg"
),
nBodyAssembler
,
totalD
irichletNodes
);
using
MyUpdater
=
Updaters
<
RateUpdater
<
Vector
,
Matrix
,
Function
,
dims
>
,
using
MyUpdater
=
Updaters
<
RateUpdater
<
Vector
,
Matrix
,
Function
,
dims
>
,
StateUpdater
<
ScalarVector
,
Vector
>>
;
StateUpdater
<
ScalarVector
,
Vector
>>
;
...
@@ -518,8 +500,7 @@ int main(int argc, char *argv[]) {
...
@@ -518,8 +500,7 @@ int main(int argc, char *argv[]) {
L
,
V0
));
L
,
V0
));
auto
const
refinementTolerance
=
auto
const
refinementTolerance
=
parset
.
get
<
double
>
(
"timeSteps.refinementTolerance"
);
parset
.
get
<
double
>
(
"timeSteps.refinementTolerance"
);
auto
const
mustRefine
=
[
&
](
MyUpdater
&
coarseUpdater
,
auto
const
mustRefine
=
[
&
](
MyUpdater
&
coarseUpdater
,
MyUpdater
&
fineUpdater
)
{
MyUpdater
&
fineUpdater
)
{
std
::
vector
<
ScalarVector
>
coarseAlpha
;
std
::
vector
<
ScalarVector
>
coarseAlpha
;
...
@@ -540,11 +521,11 @@ int main(int argc, char *argv[]) {
...
@@ -540,11 +521,11 @@ int main(int argc, char *argv[]) {
std
::
signal
(
SIGINT
,
handleSignal
);
std
::
signal
(
SIGINT
,
handleSignal
);
std
::
signal
(
SIGTERM
,
handleSignal
);
std
::
signal
(
SIGTERM
,
handleSignal
);
AdaptiveTimeStepper
<
NonlinearFactory
,
MyUpdater
,
AdaptiveTimeStepper
<
NonlinearFactory
,
MyUpdater
,
EnergyNorm
<
ScalarMatrix
,
ScalarVector
>>
EnergyNorm
<
ScalarMatrix
,
ScalarVector
>>
adaptiveTimeStepper
(
factory
,
parset
,
globalFriction
,
current
,
adaptiveTimeStepper
(
factory
,
parset
,
globalFriction
,
current
,
programState
.
relativeTime
,
programState
.
relativeTau
,
programState
.
relativeTime
,
programState
.
relativeTau
,
externalForces
,
stateEnergyNorms
,
mustRefine
);
externalForces
,
stateEnergyNorms
,
mustRefine
);
while
(
!
adaptiveTimeStepper
.
reachedEnd
())
{
while
(
!
adaptiveTimeStepper
.
reachedEnd
())
{
programState
.
timeStep
++
;
programState
.
timeStep
++
;
...
...
This diff is collapsed.
Click to expand it.
src/spatial-solving/solverfactory.cc
+
4
−
4
View file @
831307c6
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
template
<
class
DeformedGrid
,
class
Nonlinearity
,
class
Matrix
,
class
Vector
>
template
<
class
DeformedGrid
,
class
Nonlinearity
,
class
Matrix
,
class
Vector
>
SolverFactory
<
DeformedGrid
,
Nonlinearity
,
Matrix
,
Vector
>::
SolverFactory
(
SolverFactory
<
DeformedGrid
,
Nonlinearity
,
Matrix
,
Vector
>::
SolverFactory
(
const
Dune
::
ParameterTree
&
parset
,
const
Dune
::
Contact
::
NBodyAssembler
<
DeformedGrid
,
Vector
>&
nBodyAssembler
,
const
Dune
::
ParameterTree
&
parset
,
const
Dune
::
Contact
::
NBodyAssembler
<
DeformedGrid
,
Vector
>&
nBodyAssembler
,
const
std
::
vector
<
Dune
::
BitSetVector
<
DeformedGrid
::
dimension
>>&
ignoreNodes
)
const
std
::
vector
<
std
::
vector
<
Dune
::
BitSetVector
<
DeformedGrid
::
dimension
>>
>
&
ignoreNodes
)
:
nBodyAssembler_
(
nBodyAssembler
),
:
nBodyAssembler_
(
nBodyAssembler
),
baseEnergyNorm_
(
baseSolverStep_
),
baseEnergyNorm_
(
baseSolverStep_
),
baseSolver_
(
&
baseSolverStep_
,
baseSolver_
(
&
baseSolverStep_
,
...
@@ -28,11 +28,11 @@ SolverFactory<DeformedGrid, Nonlinearity, Matrix, Vector>::SolverFactory(
...
@@ -28,11 +28,11 @@ SolverFactory<DeformedGrid, Nonlinearity, Matrix, Vector>::SolverFactory(
multigridStep_
=
std
::
make_shared
<
Step
>
();
multigridStep_
=
std
::
make_shared
<
Step
>
();
// tnnmg iteration step
// tnnmg iteration step
multigridStep_
->
setMGType
(
parset
.
get
<
int
>
(
"main.multi"
),
parset
.
get
<
int
>
(
"main.pre"
),
parset
.
get
<
int
>
(
"main.post"
));
multigridStep_
->
setMGType
(
parset
.
get
<
int
>
(
"main.multi"
),
parset
.
get
<
int
>
(
"main.pre"
),
parset
.
get
<
int
>
(
"main.post"
));
//
multigridStep_->setIgnore(ignoreNodes);
multigridStep_
->
setIgnore
(
ignoreNodes
);
multigridStep_
->
setBaseSolver
(
baseSolver_
);
multigridStep_
->
setBaseSolver
(
baseSolver_
);
multigridStep_
->
setSmoother
(
&
presmoother_
,
&
postsmoother_
);
multigridStep_
->
setSmoother
(
&
presmoother_
,
&
postsmoother_
);
//
multigridStep_->setHasObstacle(nBodyAssembler_.totalHasObstacle_);
multigridStep_
->
setHasObstacle
(
nBodyAssembler_
.
totalHasObstacle_
);
//
multigridStep_->setObstacles(nBodyAssembler_.totalObstacles_);
multigridStep_
->
setObstacles
(
nBodyAssembler_
.
totalObstacles_
);
// create the transfer operators
// create the transfer operators
const
int
nCouplings
=
nBodyAssembler_
.
nCouplings
();
const
int
nCouplings
=
nBodyAssembler_
.
nCouplings
();
...
...
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