Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
d81aa41d
Commit
d81aa41d
authored
Nov 26, 2010
by
Thomas Witkowski
Browse files
And solved all the compilation problems due to the last update.
parent
856b81b9
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
AMDiS/Reinit/src/HL_SignedDist.h
View file @
d81aa41d
...
...
@@ -5,7 +5,7 @@
#include
"AdaptInfo.h"
#include
"DOFVector.h"
#include
"ElementFunction.h"
#include
"FileWriter.h"
#include
"
io/
FileWriter.h"
#include
"FixVec.h"
#include
"Flag.h"
#include
"Parameters.h"
...
...
AMDiS/Reinit/src/VelocityExt.h
View file @
d81aa41d
...
...
@@ -4,7 +4,7 @@
#include
"AdaptInfo.h"
#include
"DOFVector.h"
#include
"Element.h"
#include
"FileWriter.h"
#include
"
io/
FileWriter.h"
#include
"FixVec.h"
using
namespace
AMDiS
;
...
...
AMDiS/bin/Makefile.in
View file @
d81aa41d
This diff is collapsed.
Click to expand it.
AMDiS/src/AMDiS.h
View file @
d81aa41d
...
...
@@ -89,6 +89,7 @@
#include
"TimedObject.h"
#include
"Traverse.h"
#include
"Triangle.h"
#include
"VertexVector.h"
#include
"ZeroOrderTerm.h"
#include
"io/ArhReader.h"
...
...
@@ -100,7 +101,6 @@
#include
"io/PngWriter.h"
#include
"io/PovrayWriter.h"
#include
"io/ValueWriter.h"
#include
"io/VertexVector.h"
#include
"io/VtkWriter.h"
#include
"time/RosenbrockAdaptInstationary.h"
...
...
AMDiS/src/AdaptInstationary.cc
View file @
d81aa41d
#include
"AdaptInstationary.h"
#include
"Parameters.h"
#include
"Estimator.h"
#include
"TecPlotWriter.h"
#include
"ProblemIterationInterface.h"
#include
"ProblemTimeInterface.h"
#include
"Serializer.h"
...
...
AMDiS/src/AdaptStationary.cc
View file @
d81aa41d
#include
"AdaptStationary.h"
#include
"Parameters.h"
#include
"Estimator.h"
#include
"TecPlotWriter.h"
#include
"ProblemIterationInterface.h"
#include
<math.h>
...
...
AMDiS/src/ProblemImplicit.h
View file @
d81aa41d
...
...
@@ -22,7 +22,6 @@
#ifndef AMDIS_PROBLEMIMPLICIT_H
#define AMDIS_PROBLEMIMPLICIT_H
#include
"AMDiS.h"
#include
"ProblemScal.h"
#include
"ProblemVec.h"
...
...
AMDiS/src/RobinBC.h
View file @
d81aa41d
...
...
@@ -25,7 +25,6 @@
#include
"BoundaryCondition.h"
#include
"AbstractFunction.h"
#include
"DOFMatrix.h"
#include
"AMDiS.h"
namespace
AMDiS
{
...
...
AMDiS/src/io/FileWriter.cc
View file @
d81aa41d
...
...
@@ -2,7 +2,6 @@
#include
"FileWriter.h"
#include
"SystemVector.h"
#include
"Parameters.h"
#include
"TecPlotWriter.h"
#include
"ValueWriter.h"
#include
"MacroWriter.h"
#include
"VtkWriter.h"
...
...
@@ -97,13 +96,11 @@ namespace AMDiS {
void
FileWriter
::
initialize
()
{
tecplotExt
=
".tec"
;
amdisMeshExt
=
".mesh"
;
amdisDataExt
=
".dat"
;
paraviewFileExt
=
".vtu"
;
paraviewParallelFileExt
=
".pvtu"
;
periodicFileExt
=
".per"
;
writeTecPlotFormat
=
0
;
writeAMDiSFormat
=
0
;
writeParaViewFormat
=
0
;
writeParaViewAnimation
=
0
;
...
...
@@ -127,8 +124,6 @@ namespace AMDiS {
FUNCNAME
(
"FileWriter::readParamters()"
);
GET_PARAMETER
(
0
,
name
+
"->filename"
,
&
filename
);
GET_PARAMETER
(
0
,
name
+
"->TecPlot format"
,
"%d"
,
&
writeTecPlotFormat
);
GET_PARAMETER
(
0
,
name
+
"->TecPlot ext"
,
&
tecplotExt
);
GET_PARAMETER
(
0
,
name
+
"->AMDiS format"
,
"%d"
,
&
writeAMDiSFormat
);
GET_PARAMETER
(
0
,
name
+
"->AMDiS mesh ext"
,
&
amdisMeshExt
);
GET_PARAMETER
(
0
,
name
+
"->AMDiS data ext"
,
&
amdisDataExt
);
...
...
@@ -211,13 +206,6 @@ namespace AMDiS {
#endif
}
if
(
writeTecPlotFormat
)
{
TecPlotWriter
<
DOFVector
<
double
>
>::
writeValues
(
solutionVecs
[
0
],
const_cast
<
char
*>
((
fn
+
tecplotExt
).
c_str
()),
solutionVecs
[
0
]
->
getName
().
c_str
());
MSG
(
"TecPlot file written to %s
\n
"
,
(
fn
+
tecplotExt
).
c_str
());
}
if
(
writeAMDiSFormat
)
{
MacroWriter
::
writeMacro
(
dataCollectors
[
0
],
const_cast
<
char
*>
((
fn
+
amdisMeshExt
).
c_str
()),
...
...
AMDiS/src/io/FileWriter.h
View file @
d81aa41d
...
...
@@ -138,9 +138,6 @@ namespace AMDiS {
/// Name of the writer.
std
::
string
name
;
/// TecPlot file extension.
std
::
string
tecplotExt
;
/// AMDiS mesh-file extension.
std
::
string
amdisMeshExt
;
...
...
@@ -156,9 +153,6 @@ namespace AMDiS {
/// Periodic file extension.
std
::
string
periodicFileExt
;
/// 0: Don't write TecPlot files; 1: Write TecPlot files.
int
writeTecPlotFormat
;
/// 0: Don't write AMDiS files; 1: Write AMDiS files.
int
writeAMDiSFormat
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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