Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
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
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
wenqing
ogs
Commits
57d4bb4a
Commit
57d4bb4a
authored
4 years ago
by
Tobias Meisel
Browse files
Options
Downloads
Patches
Plain Diff
[MeL] Outputbulkmesh can now write any mesh - renamed to outputmesh
parent
ba8f3af3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ProcessLib/Output/Output.cpp
+15
-24
15 additions, 24 deletions
ProcessLib/Output/Output.cpp
ProcessLib/Output/Output.h
+1
-2
1 addition, 2 deletions
ProcessLib/Output/Output.h
with
16 additions
and
26 deletions
ProcessLib/Output/Output.cpp
+
15
−
24
View file @
57d4bb4a
...
...
@@ -237,7 +237,7 @@ struct Output::OutputFile
}
};
void
Output
::
output
Bulk
Mesh
(
OutputFile
const
&
output_file
,
void
Output
::
outputMesh
(
OutputFile
const
&
output_file
,
MeshLib
::
IO
::
PVDFile
*
const
pvd_file
,
MeshLib
::
Mesh
const
&
mesh
,
double
const
t
)
const
...
...
@@ -289,24 +289,31 @@ void Output::doOutputAlways(Process const& process,
return
;
}
auto
output_bulk_mesh
=
[
&
]()
{
outputBulkMesh
(
auto
output_bulk_mesh
=
[
&
](
MeshLib
::
Mesh
&
mesh
)
{
OutputFile
const
file
(
_output_directory
,
_output_file_type
,
_output_file_prefix
,
_output_file_suffix
,
mesh
.
getName
(),
process_id
,
timestep
,
t
,
_output_file_data_mode
,
_output_file_compression
),
findPVDFile
(
process
,
process_id
,
process
.
getMesh
().
getName
()),
process
.
getMesh
(),
t
);
_output_file_compression
);
MeshLib
::
IO
::
PVDFile
*
pvd_file
=
nullptr
;
if
(
_output_file_type
==
"VTK"
)
{
pvd_file
=
findPVDFile
(
process
,
process_id
,
mesh
.
getName
());
}
outputMesh
(
file
,
pvd_file
,
mesh
,
t
);
};
for
(
auto
const
&
mesh_output_name
:
_mesh_names_for_output
)
{
// process related output
if
(
process
.
getMesh
().
getName
()
==
mesh_output_name
)
{
output_bulk_mesh
();
output_bulk_mesh
(
process
.
getMesh
()
);
continue
;
}
// mesh related output
auto
&
mesh
=
*
BaseLib
::
findElementOrError
(
begin
(
_meshes
),
end
(
_meshes
),
[
&
mesh_output_name
](
auto
const
&
m
)
{
...
...
@@ -349,23 +356,7 @@ void Output::doOutputAlways(Process const& process,
// output is mesh related instead of process related. This would also
// allow for merging bulk mesh output and arbitrary mesh output.
OutputFile
const
output_file
{
_output_directory
,
_output_file_prefix
,
_output_file_suffix
,
mesh
.
getName
(),
process_id
,
timestep
,
t
,
_output_file_data_mode
,
_output_file_compression
};
auto
pvd_file
=
findPVDFile
(
process
,
process_id
,
mesh
.
getName
());
pvd_file
->
addVTUFile
(
output_file
.
name
,
t
);
DBUG
(
"output to {:s}"
,
output_file
.
path
);
makeOutput
(
output_file
.
path
,
mesh
,
output_file
.
compression
,
output_file
.
data_mode
);
output_bulk_mesh
(
mesh
);
}
INFO
(
"[time] Output of timestep {:d} took {:g} s."
,
timestep
,
time_output
.
elapsed
());
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/Output/Output.h
+
1
−
2
View file @
57d4bb4a
...
...
@@ -82,11 +82,10 @@ public:
private
:
struct
OutputFile
;
void
output
Bulk
Mesh
(
OutputFile
const
&
output_file
,
void
outputMesh
(
OutputFile
const
&
output_file
,
MeshLib
::
IO
::
PVDFile
*
const
pvd_file
,
MeshLib
::
Mesh
const
&
mesh
,
double
const
t
)
const
;
private
:
std
::
string
const
_output_directory
;
std
::
string
const
_output_file_type
;
...
...
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