Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Announcement:
OGS Community Meeting 2022 in September
Open sidebar
ogs
ogs
Commits
f07530ef
Commit
f07530ef
authored
Jun 22, 2022
by
Tom Fischer
Committed by
Dmitry Yu. Naumov
Jul 10, 2022
Browse files
[PL/Output] Mv XDMF specific attributes to OutputXDMFHDF5Format
parent
adbc5f31
Changes
3
Hide whitespace changes
Inline
Side-by-side
ProcessLib/Output/CreateOutput.cpp
View file @
f07530ef
...
...
@@ -56,7 +56,7 @@ std::unique_ptr<OutputFile> createOutputFile(
{
return
std
::
make_unique
<
OutputVtkFormat
>
(
output_directory
,
std
::
move
(
prefix
),
std
::
move
(
suffix
),
convertVtkDataMode
(
data_mode
),
compress_output
,
number_of_files
);
convertVtkDataMode
(
data_mode
),
compress_output
);
}
if
(
output_type
==
OutputType
::
xdmf
)
{
...
...
ProcessLib/Output/OutputFile.cpp
View file @
f07530ef
...
...
@@ -90,10 +90,7 @@ void outputMeshVtk(ProcessLib::OutputFile const& output_file,
{
auto
const
name
=
output_file
.
constructFilename
(
mesh
.
getName
(),
timestep
,
t
,
iteration
);
if
(
output_file
.
type
==
ProcessLib
::
OutputType
::
vtk
)
{
pvd_file
.
addVTUFile
(
name
,
t
);
}
pvd_file
.
addVTUFile
(
name
,
t
);
auto
const
path
=
BaseLib
::
joinPaths
(
output_file
.
directory
,
name
);
outputMeshVtk
(
path
,
mesh
,
output_file
.
compression
,
output_file
.
data_mode
);
...
...
@@ -108,17 +105,14 @@ std::string OutputVtkFormat::constructPVDName(
".pvd"
);
}
OutputFile
::
OutputFile
(
std
::
string
const
&
directory
,
OutputType
const
type
,
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode_
,
bool
const
compression_
,
unsigned
int
const
n_files
)
OutputFile
::
OutputFile
(
std
::
string
const
&
directory
,
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode_
,
bool
const
compression_
)
:
directory
(
directory
),
prefix
(
prefix
),
suffix
(
suffix
),
type
(
type
),
data_mode
(
data_mode_
),
compression
(
compression_
),
n_files
(
n_files
)
compression
(
compression_
)
{
}
...
...
@@ -144,7 +138,7 @@ std::string OutputXDMFHDF5Format::constructFilename(std::string mesh_name,
".xdmf"
;
}
void
Output
File
::
outputMeshXdmf
(
void
Output
XDMFHDF5Format
::
outputMeshXdmf
(
std
::
set
<
std
::
string
>
const
&
output_variables
,
std
::
vector
<
std
::
reference_wrapper
<
const
MeshLib
::
Mesh
>>
meshes
,
int
const
timestep
,
double
const
t
,
int
const
iteration
)
...
...
ProcessLib/Output/OutputFile.h
View file @
f07530ef
...
...
@@ -25,16 +25,14 @@ enum class OutputType : uint8_t
struct
OutputFile
{
OutputFile
(
std
::
string
const
&
directory
,
OutputType
const
type
,
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode_
,
bool
const
compression_
,
unsigned
int
const
n_files
);
OutputFile
(
std
::
string
const
&
directory
,
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode_
,
bool
const
compression_
);
virtual
~
OutputFile
()
=
default
;
std
::
string
directory
;
std
::
string
prefix
;
std
::
string
suffix
;
OutputType
const
type
;
virtual
void
outputMeshes
(
const
Process
&
process
,
const
int
process_id
,
const
int
timestep
,
...
...
@@ -57,29 +55,17 @@ struct OutputFile
//! Enables or disables zlib-compression of the output files.
bool
const
compression
;
std
::
unique_ptr
<
MeshLib
::
IO
::
XdmfHdfWriter
>
mesh_xdmf_hdf_writer
;
//! Specifies the number of hdf5 output files.
unsigned
int
const
n_files
;
virtual
std
::
string
constructFilename
(
std
::
string
mesh_name
,
int
const
timestep
,
double
const
t
,
int
const
iteration
)
const
=
0
;
void
outputMeshXdmf
(
std
::
set
<
std
::
string
>
const
&
output_variables
,
std
::
vector
<
std
::
reference_wrapper
<
const
MeshLib
::
Mesh
>>
meshes
,
int
const
timestep
,
double
const
t
,
int
const
iteration
);
// std::string constructPVDName(std::string const& mesh_name) const;
};
struct
OutputVtkFormat
final
:
public
OutputFile
{
OutputVtkFormat
(
std
::
string
const
&
directory
,
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode
,
bool
const
compression
,
const
int
number_of_files
)
:
OutputFile
(
directory
,
OutputType
::
vtk
,
prefix
,
suffix
,
data_mode
,
compression
,
number_of_files
)
bool
const
compression
)
:
OutputFile
(
directory
,
prefix
,
suffix
,
data_mode
,
compression
)
{
}
...
...
@@ -123,8 +109,8 @@ struct OutputXDMFHDF5Format final : public OutputFile
std
::
string
const
&
prefix
,
std
::
string
const
&
suffix
,
int
const
data_mode
,
bool
const
compression
,
unsigned
int
const
n_files
)
:
OutputFile
(
directory
,
OutputType
::
xdmf
,
prefix
,
suffix
,
data_mode
,
compression
,
n_files
)
:
OutputFile
(
directory
,
prefix
,
suffix
,
data_mode
,
compression
),
n_files
(
n_files
)
{
}
...
...
@@ -142,6 +128,15 @@ struct OutputXDMFHDF5Format final : public OutputFile
std
::
string
constructFilename
(
std
::
string
mesh_name
,
int
const
timestep
,
double
const
t
,
int
const
iteration
)
const
override
;
std
::
unique_ptr
<
MeshLib
::
IO
::
XdmfHdfWriter
>
mesh_xdmf_hdf_writer
;
//! Specifies the number of hdf5 output files.
unsigned
int
n_files
;
void
outputMeshXdmf
(
std
::
set
<
std
::
string
>
const
&
output_variables
,
std
::
vector
<
std
::
reference_wrapper
<
const
MeshLib
::
Mesh
>>
meshes
,
int
const
timestep
,
double
const
t
,
int
const
iteration
);
};
void
outputMeshVtk
(
std
::
string
const
&
file_name
,
MeshLib
::
Mesh
const
&
mesh
,
...
...
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