Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Sander, Oliver
dune-gfe
Commits
8a1b7f87
Commit
8a1b7f87
authored
18 years ago
by
Oliver Sander
Committed by
sander@PCPOOL.MI.FU-BERLIN.DE
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
further steps towards a working implementation
[[Imported from SVN: r1041]]
parent
9477ca64
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dirneucoupling.cc
+113
-73
113 additions, 73 deletions
dirneucoupling.cc
with
113 additions
and
73 deletions
dirneucoupling.cc
+
113
−
73
View file @
8a1b7f87
#include
<config.h>
#include
<config.h>
//#define HAVE_IPOPT
#include
<dune/grid/onedgrid.hh>
#include
<dune/grid/onedgrid.hh>
#include
<dune/grid/uggrid.hh>
#include
<dune/grid/uggrid.hh>
...
@@ -15,26 +13,22 @@
...
@@ -15,26 +13,22 @@
#include
<dune/common/bitfield.hh>
#include
<dune/common/bitfield.hh>
#include
<dune/common/configparser.hh>
#include
<dune/common/configparser.hh>
#include
"../co
ntact/src/contactmmg
step.hh"
#include
"../co
mmon/multigrid
step.hh"
#include
"../solver/iterativesolver.hh"
#include
"../solver/iterativesolver.hh"
#include
"../common/projectedblockgsstep.hh"
#include
"../common/projectedblockgsstep.hh"
#include
"../common/geomestimator.hh"
#include
"../common/readbitfield.hh"
#include
"../common/readbitfield.hh"
#include
"../common/energynorm.hh"
#include
"../common/energynorm.hh"
#include
"../common/boundarypatch.hh"
#include
"../common/boundarypatch.hh"
#include
"../common/prolongboundarypatch.hh"
#include
"../common/prolongboundarypatch.hh"
#include
"../common/neumannassembler.hh"
#include
"src/quaternion.hh"
#include
"src/quaternion.hh"
//
#include "src/rodassembler.hh"
#include
"src/rodassembler.hh"
#include
"src/configuration.hh"
#include
"src/configuration.hh"
#include
"src/averageinterface.hh"
#include
"src/averageinterface.hh"
#include
"src/rodsolver.hh"
#include
"src/rodsolver.hh"
#include
"src/rodwriter.hh"
#include
"src/rodwriter.hh"
// Number of degrees of freedom of a correction for a rod configuration
// 6 (x, y, z, v_1, v_2, v_3) for a spatial rod
const
int
blocksize
=
6
;
// Space dimension
// Space dimension
const
int
dim
=
3
;
const
int
dim
=
3
;
...
@@ -44,12 +38,9 @@ using std::string;
...
@@ -44,12 +38,9 @@ using std::string;
int
main
(
int
argc
,
char
*
argv
[])
try
int
main
(
int
argc
,
char
*
argv
[])
try
{
{
// Some types that I need
// Some types that I need
typedef
BCRSMatrix
<
FieldMatrix
<
double
,
dim
,
dim
>
>
MatrixType
;
typedef
BCRSMatrix
<
FieldMatrix
<
double
,
dim
,
dim
>
>
MatrixType
;
typedef
BlockVector
<
FieldVector
<
double
,
dim
>
>
VectorType
;
typedef
BlockVector
<
FieldVector
<
double
,
dim
>
>
VectorType
;
typedef
std
::
vector
<
Configuration
>
RodSolutionType
;
//typedef BCRSMatrix<FieldMatrix<double, blocksize, blocksize> > RodMatrixType;
//typedef BlockVector<FieldVector<double, blocksize> > RodCorrectionType;
typedef
std
::
vector
<
Configuration
>
RodSolutionType
;
// parse data file
// parse data file
ConfigParser
parameterSet
;
ConfigParser
parameterSet
;
...
@@ -60,13 +51,15 @@ int main (int argc, char *argv[]) try
...
@@ -60,13 +51,15 @@ int main (int argc, char *argv[]) try
const
int
maxLevel
=
parameterSet
.
get
(
"maxLevel"
,
int
(
0
));
const
int
maxLevel
=
parameterSet
.
get
(
"maxLevel"
,
int
(
0
));
const
int
maxDirichletNeumannSteps
=
parameterSet
.
get
(
"maxDirichletNeumannSteps"
,
int
(
0
));
const
int
maxDirichletNeumannSteps
=
parameterSet
.
get
(
"maxDirichletNeumannSteps"
,
int
(
0
));
const
int
maxTrustRegionSteps
=
parameterSet
.
get
(
"maxTrustRegionSteps"
,
int
(
0
));
const
int
maxTrustRegionSteps
=
parameterSet
.
get
(
"maxTrustRegionSteps"
,
int
(
0
));
const
int
numIt
=
parameterSet
.
get
(
"numIt"
,
int
(
0
));
const
int
multigridIterations
=
parameterSet
.
get
(
"numIt"
,
int
(
0
));
const
int
nu1
=
parameterSet
.
get
(
"nu1"
,
int
(
0
));
const
int
nu1
=
parameterSet
.
get
(
"nu1"
,
int
(
0
));
const
int
nu2
=
parameterSet
.
get
(
"nu2"
,
int
(
0
));
const
int
nu2
=
parameterSet
.
get
(
"nu2"
,
int
(
0
));
const
int
mu
=
parameterSet
.
get
(
"mu"
,
int
(
0
));
const
int
mu
=
parameterSet
.
get
(
"mu"
,
int
(
0
));
const
int
baseIt
=
parameterSet
.
get
(
"baseIt"
,
int
(
0
));
const
int
baseIt
erations
=
parameterSet
.
get
(
"baseIt"
,
int
(
0
));
const
double
t
olerance
=
parameterSet
.
get
(
"tolerance"
,
double
(
0
));
const
double
mgT
olerance
=
parameterSet
.
get
(
"tolerance"
,
double
(
0
));
const
double
baseTolerance
=
parameterSet
.
get
(
"baseTolerance"
,
double
(
0
));
const
double
baseTolerance
=
parameterSet
.
get
(
"baseTolerance"
,
double
(
0
));
const
int
initialTrustRegionRadius
=
parameterSet
.
get
(
"initialTrustRegionRadius"
,
int
(
0
));
const
double
damping
=
parameterSet
.
get
(
"damping"
,
double
(
1
));
// Problem settings
// Problem settings
std
::
string
path
=
parameterSet
.
get
(
"path"
,
"xyz"
);
std
::
string
path
=
parameterSet
.
get
(
"path"
,
"xyz"
);
...
@@ -92,12 +85,7 @@ int main (int argc, char *argv[]) try
...
@@ -92,12 +85,7 @@ int main (int argc, char *argv[]) try
AmiraMeshReader
<
GridType
>::
read
(
grid
,
path
+
objectName
);
AmiraMeshReader
<
GridType
>::
read
(
grid
,
path
+
objectName
);
std
::
vector
<
BitField
>
dirichletNodes
(
1
);
//Array<SimpleVector<BoxConstraint<dim> > > trustRegionObstacles(1);
//Array<BitField> hasObstacle(1);
Array
<
BitField
>
dirichletNodes
(
1
);
double
trustRegionRadius
=
0.1
;
RodSolutionType
rodX
(
rodGrid
.
size
(
0
,
1
));
RodSolutionType
rodX
(
rodGrid
.
size
(
0
,
1
));
...
@@ -140,7 +128,7 @@ int main (int argc, char *argv[]) try
...
@@ -140,7 +128,7 @@ int main (int argc, char *argv[]) try
dirichletValues
[
0
].
resize
(
grid
.
size
(
0
,
dim
));
dirichletValues
[
0
].
resize
(
grid
.
size
(
0
,
dim
));
AmiraMeshReader
<
int
>::
readFunction
(
dirichletValues
[
0
],
path
+
dirichletValuesFile
);
AmiraMeshReader
<
int
>::
readFunction
(
dirichletValues
[
0
],
path
+
dirichletValuesFile
);
Array
<
BoundaryPatch
<
GridType
>
>
dirichletBoundary
;
std
::
vector
<
BoundaryPatch
<
GridType
>
>
dirichletBoundary
;
dirichletBoundary
.
resize
(
maxLevel
+
1
);
dirichletBoundary
.
resize
(
maxLevel
+
1
);
dirichletBoundary
[
0
].
setup
(
grid
,
0
);
dirichletBoundary
[
0
].
setup
(
grid
,
0
);
readBoundaryPatch
(
dirichletBoundary
[
0
],
path
+
dirichletNodesFile
);
readBoundaryPatch
(
dirichletBoundary
[
0
],
path
+
dirichletNodesFile
);
...
@@ -149,26 +137,23 @@ int main (int argc, char *argv[]) try
...
@@ -149,26 +137,23 @@ int main (int argc, char *argv[]) try
dirichletNodes
.
resize
(
toplevel
+
1
);
dirichletNodes
.
resize
(
toplevel
+
1
);
for
(
int
i
=
0
;
i
<=
toplevel
;
i
++
)
{
for
(
int
i
=
0
;
i
<=
toplevel
;
i
++
)
{
dirichletNodes
[
i
].
resize
(
dim
*
grid
.
size
(
i
,
dim
)
+
blocksize
*
rodGrid
.
size
(
i
,
1
));
dirichletNodes
[
i
].
resize
(
dim
*
grid
.
size
(
i
,
dim
));
dirichletNodes
[
i
].
unsetAll
();
for
(
int
j
=
0
;
j
<
grid
.
size
(
i
,
dim
);
j
++
)
for
(
int
j
=
0
;
j
<
grid
.
size
(
i
,
dim
);
j
++
)
for
(
int
k
=
0
;
k
<
dim
;
k
++
)
for
(
int
k
=
0
;
k
<
dim
;
k
++
)
dirichletNodes
[
i
][
j
*
dim
+
k
]
=
dirichletBoundary
[
i
].
containsVertex
(
j
);
dirichletNodes
[
i
][
j
*
dim
+
k
]
=
dirichletBoundary
[
i
].
containsVertex
(
j
);
for
(
int
j
=
0
;
j
<
blocksize
;
j
++
)
dirichletNodes
[
i
][
dirichletNodes
[
i
].
size
()
-
1
-
j
]
=
true
;
}
}
// ////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////
// Create solution and rhs vectors
// Determine the interface boundary
// ////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////
std
::
vector
<
BoundaryPatch
<
GridType
>
>
interfaceBoundary
;
VectorType
totalRhs
,
totalCorr
;
interfaceBoundary
.
resize
(
maxLevel
+
1
);
totalRhs
.
resize
(
grid
.
size
(
toplevel
,
dim
)
+
2
*
rodGrid
.
size
(
toplevel
,
1
));
interfaceBoundary
[
0
].
setup
(
grid
,
0
);
totalCorr
.
resize
(
grid
.
size
(
toplevel
,
dim
)
+
2
*
rodGrid
.
size
(
toplevel
,
1
));
readBoundaryPatch
(
interfaceBoundary
[
0
],
path
+
interfaceNodesFile
);
PatchProlongator
<
GridType
>::
prolong
(
interfaceBoundary
);
// //////////////////////////////////////////
// //////////////////////////////////////////
// Assemble 3d linear elasticity problem
// Assemble 3d linear elasticity problem
// //////////////////////////////////////////
// //////////////////////////////////////////
...
@@ -177,8 +162,11 @@ int main (int argc, char *argv[]) try
...
@@ -177,8 +162,11 @@ int main (int argc, char *argv[]) try
LeafP1OperatorAssembler
<
GridType
,
double
,
dim
>
hessian3d
(
grid
);
LeafP1OperatorAssembler
<
GridType
,
double
,
dim
>
hessian3d
(
grid
);
hessian3d
.
assemble
(
lstiff
,
u
,
f
);
hessian3d
.
assemble
(
lstiff
,
u
,
f
);
// ////////////////////////////////////////////////////////////
// Create solution and rhs vectors
// ////////////////////////////////////////////////////////////
VectorType
x3d
(
grid
.
size
(
toplevel
,
dim
));
VectorType
x3d
(
grid
.
size
(
toplevel
,
dim
));
//VectorType corr3d(grid.size(toplevel,dim));
VectorType
rhs3d
(
grid
.
size
(
toplevel
,
dim
));
VectorType
rhs3d
(
grid
.
size
(
toplevel
,
dim
));
// No external forces
// No external forces
...
@@ -191,59 +179,73 @@ int main (int argc, char *argv[]) try
...
@@ -191,59 +179,73 @@ int main (int argc, char *argv[]) try
if
(
dirichletNodes
[
toplevel
][
i
*
dim
+
j
])
if
(
dirichletNodes
[
toplevel
][
i
*
dim
+
j
])
x3d
[
i
][
j
]
=
dirichletValues
[
toplevel
][
i
][
j
];
x3d
[
i
][
j
]
=
dirichletValues
[
toplevel
][
i
][
j
];
// ///////////////////////////////////////////
// Create a solver for the rod problem
// ///////////////////////////////////////////
RodAssembler
<
RodGridType
>
rodAssembler
(
rodGrid
);
rodAssembler
.
setShapeAndMaterial
(
1
,
1
,
1
,
2.5e5
,
0.3
);
RodSolver
<
RodGridType
>
rodSolver
;
rodSolver
.
setup
(
rodGrid
,
&
rodAssembler
,
rodX
,
maxTrustRegionSteps
,
initialTrustRegionRadius
,
multigridIterations
,
mgTolerance
,
mu
,
nu1
,
nu2
,
baseIterations
,
baseTolerance
);
// ////////////////////////////////
// ////////////////////////////////
// Create a multigrid solver
// Create a multigrid solver
// ////////////////////////////////
// ////////////////////////////////
// First create a gauss-seidel base solver
// First create a gauss-seidel base solver
Projected
BlockGSStep
<
MatrixType
,
VectorType
>
baseSolverStep
;
BlockGSStep
<
MatrixType
,
VectorType
>
baseSolverStep
;
EnergyNorm
<
MatrixType
,
VectorType
>
baseEnergyNorm
(
baseSolverStep
);
EnergyNorm
<
MatrixType
,
VectorType
>
baseEnergyNorm
(
baseSolverStep
);
IterativeSolver
<
MatrixType
,
VectorType
>
baseSolver
;
IterativeSolver
<
MatrixType
,
VectorType
>
baseSolver
(
&
baseSolverStep
,
baseSolver
.
iterationStep
=
&
baseSolverStep
;
baseIterations
,
baseSolver
.
numIt
=
baseIt
;
baseTolerance
,
baseSolver
.
verbosity_
=
Solver
::
QUIET
;
&
baseEnergyNorm
,
baseSolver
.
errorNorm_
=
&
baseEnergyNorm
;
Solver
::
QUIET
);
baseSolver
.
tolerance_
=
baseTolerance
;
// Make pre and postsmoothers
// Make pre and postsmoothers
Projected
BlockGSStep
<
MatrixType
,
VectorType
>
presmoother
,
postsmoother
;
BlockGSStep
<
MatrixType
,
VectorType
>
presmoother
,
postsmoother
;
ContactMMG
Step
<
MatrixType
,
VectorType
>
contactMMGStep
(
totalHessian
,
totalCorr
,
totalRhs
,
1
);
Multigrid
Step
<
MatrixType
,
VectorType
>
multigridStep
(
*
hessian3d
,
x3d
,
rhs3d
,
1
);
contactMMGStep
.
setMGType
(
mu
,
nu1
,
nu2
);
multigridStep
.
setMGType
(
mu
,
nu1
,
nu2
);
contactMMGStep
.
dirichletNodes_
=
&
dirichletNodes
;
multigridStep
.
dirichletNodes_
=
&
dirichletNodes
;
contactMMGStep
.
basesolver_
=
&
baseSolver
;
multigridStep
.
basesolver_
=
&
baseSolver
;
contactMMGStep
.
presmoother_
=
&
presmoother
;
multigridStep
.
presmoother_
=
&
presmoother
;
contactMMGStep
.
postsmoother_
=
&
postsmoother
;
multigridStep
.
postsmoother_
=
&
postsmoother
;
contactMMGStep
.
hasObstacle_
=
&
hasObstacle
;
multigridStep
.
verbosity_
=
Solver
::
REDUCED
;
contactMMGStep
.
obstacles_
=
&
trustRegionObstacles
;
contactMMGStep
.
verbosity_
=
Solver
::
QUIET
;
EnergyNorm
<
MatrixType
,
VectorType
>
energyNorm
(
contactMMG
Step
);
EnergyNorm
<
MatrixType
,
VectorType
>
energyNorm
(
multigrid
Step
);
IterativeSolver
<
MatrixType
,
VectorType
>
solver
;
IterativeSolver
<
MatrixType
,
VectorType
>
solver
(
&
multigridStep
,
solver
.
iterationStep
=
&
contactMMGStep
;
multigridIterations
,
solver
.
numIt
=
numIt
;
mgTolerance
,
solver
.
verbosity_
=
Solver
::
FULL
;
&
energyNorm
,
solver
.
errorNorm_
=
&
energyNorm
;
Solver
::
FULL
);
solver
.
tolerance_
=
tolerance
;
// ////////////////////////////////////
// ////////////////////////////////////
// Create the transfer operators
// Create the transfer operators
// ////////////////////////////////////
// ////////////////////////////////////
for
(
int
k
=
0
;
k
<
contactMMG
Step
.
mgTransfer_
.
size
();
k
++
)
for
(
int
k
=
0
;
k
<
multigrid
Step
.
mgTransfer_
.
size
();
k
++
)
delete
(
contactMMG
Step
.
mgTransfer_
[
k
]);
delete
(
multigrid
Step
.
mgTransfer_
[
k
]);
contactMMG
Step
.
mgTransfer_
.
resize
(
toplevel
);
multigrid
Step
.
mgTransfer_
.
resize
(
toplevel
);
for
(
int
i
=
0
;
i
<
contactMMG
Step
.
mgTransfer_
.
size
();
i
++
){
for
(
int
i
=
0
;
i
<
multigrid
Step
.
mgTransfer_
.
size
();
i
++
){
TruncatedMGTransfer
<
VectorType
>*
newTransferOp
=
new
TruncatedMGTransfer
<
VectorType
>
;
TruncatedMGTransfer
<
VectorType
>*
newTransferOp
=
new
TruncatedMGTransfer
<
VectorType
>
;
newTransferOp
->
setup
(
grid
,
i
,
i
+
1
);
newTransferOp
->
setup
(
grid
,
i
,
i
+
1
);
contactMMG
Step
.
mgTransfer_
[
i
]
=
newTransferOp
;
multigrid
Step
.
mgTransfer_
[
i
]
=
newTransferOp
;
}
}
// /////////////////////////////////////////////////////
// /////////////////////////////////////////////////////
...
@@ -251,9 +253,8 @@ int main (int argc, char *argv[]) try
...
@@ -251,9 +253,8 @@ int main (int argc, char *argv[]) try
// /////////////////////////////////////////////////////
// /////////////////////////////////////////////////////
// Init interface value
// Init interface value
Configuration
lambda
;
Configuration
referenceInterface
=
rodX
[
0
];
lambda
.
r
=
0
;
Configuration
lambda
=
referenceInterface
;
lambda
.
q
=
Quaternion
<
double
>::
identity
();
for
(
int
i
=
0
;
i
<
maxDirichletNeumannSteps
;
i
++
)
{
for
(
int
i
=
0
;
i
<
maxDirichletNeumannSteps
;
i
++
)
{
...
@@ -266,27 +267,63 @@ int main (int argc, char *argv[]) try
...
@@ -266,27 +267,63 @@ int main (int argc, char *argv[]) try
// //////////////////////////////////////////////////
// //////////////////////////////////////////////////
rodX
[
0
]
=
lambda
;
rodX
[
0
]
=
lambda
;
rodSolver
.
setInitialSolution
(
rodX
);
rodSolver
.
solve
();
rodSolver
.
solve
();
rodX
=
rodSolver
.
getSol
();
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
// Extract Neumann values and transfer it to the 3d object
// Extract Neumann values and transfer it to the 3d object
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
FieldVector
<
double
,
dim
>
resultantForce
=
rodAssembler
.
getResultantForce
(
rodX
);
std
::
cout
<<
"resultant force: "
<<
resultantForce
<<
std
::
endl
;
#if 0
FieldVector<double,dim> resultantTorque = rodAssembler.getResultantTorque(grid, rodX);
#endif
VectorType
neumannValues
(
grid
.
size
(
dim
));
neumannValues
=
0
;
for
(
int
j
=
0
;
j
<
neumannValues
.
size
();
j
++
)
if
(
interfaceBoundary
[
grid
.
maxLevel
()].
containsVertex
(
j
))
neumannValues
[
j
]
=
resultantForce
;
rhs3d
=
0
;
assembleAndAddNeumannTerm
<
GridType
,
VectorType
>
(
interfaceBoundary
[
grid
.
maxLevel
()],
neumannValues
,
rhs3d
);
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
// Solve the Neumann problem for the 3d body
// Solve the Neumann problem for the 3d body
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
multigridStep
.
setProblem
(
*
hessian3d
,
x3d
,
rhs3d
,
grid
.
maxLevel
()
+
1
);
solver
.
preprocess
();
multigridStep
.
preprocess
();
solver
.
solve
();
x3d
=
multigridStep
.
getSol
();
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
// Extract new interface position and orientation
// Extract new interface position and orientation
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
Configuration
averageInterface
;
Configuration
averageInterface
;
computeAverageInterface
(
interface
,
x
,
averageInterface
);
// x3d = 0;
// for (int i=0; i<x3d.size(); i++)
// x3d[i][2] = 1;
computeAverageInterface
(
interfaceBoundary
[
toplevel
],
x3d
,
averageInterface
);
std
::
cout
<<
"average interface: "
<<
averageInterface
<<
std
::
endl
;
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
// Compute new damped interface value
// Compute new damped interface value
// ///////////////////////////////////////////////////////////
// ///////////////////////////////////////////////////////////
for
(
int
j
=
0
;
j
<
dim
;
j
++
)
lambda
.
r
[
j
]
=
(
1
-
damping
)
*
lambda
.
r
[
j
]
+
damping
*
(
referenceInterface
.
r
[
j
]
+
averageInterface
.
r
[
j
]);
lambda
.
q
=
averageInterface
.
q
.
mult
(
referenceInterface
.
q
);
}
}
// //////////////////////////////
// //////////////////////////////
...
@@ -296,6 +333,9 @@ int main (int argc, char *argv[]) try
...
@@ -296,6 +333,9 @@ int main (int argc, char *argv[]) try
AmiraMeshWriter
<
GridType
>::
writeBlockVector
(
grid
,
x3d
,
"grid.sol"
);
AmiraMeshWriter
<
GridType
>::
writeBlockVector
(
grid
,
x3d
,
"grid.sol"
);
writeRod
(
rodX
,
"rod3d.result"
);
writeRod
(
rodX
,
"rod3d.result"
);
for
(
int
i
=
0
;
i
<
rodX
.
size
();
i
++
)
std
::
cout
<<
rodX
[
i
]
<<
std
::
endl
;
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
std
::
cout
<<
e
<<
std
::
endl
;
std
::
cout
<<
e
<<
std
::
endl
;
...
...
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