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
Özgür Ozan Sen
ogs
Commits
6dc98a03
Commit
6dc98a03
authored
10 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[PL] Pass output stream to Process::post().
parent
38ade990
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Applications/CLI/ogs.cpp
+7
-1
7 additions, 1 deletion
Applications/CLI/ogs.cpp
ProcessLib/GroundwaterFlowProcess.h
+1
-1
1 addition, 1 deletion
ProcessLib/GroundwaterFlowProcess.h
ProcessLib/Process.h
+4
-1
4 additions, 1 deletion
ProcessLib/Process.h
with
12 additions
and
3 deletions
Applications/CLI/ogs.cpp
+
7
−
1
View file @
6dc98a03
...
@@ -83,13 +83,19 @@ int main(int argc, char *argv[])
...
@@ -83,13 +83,19 @@ int main(int argc, char *argv[])
(
*
p_it
)
->
initialize
();
(
*
p_it
)
->
initialize
();
}
}
std
::
string
const
output_file_name
(
project
.
getOutputFilePrefix
()
+
"_result.dat"
);
DBUG
(
"Create output file %s"
,
output_file_name
.
c_str
());
std
::
ofstream
output_file
(
output_file_name
);
INFO
(
"Solve processes."
);
INFO
(
"Solve processes."
);
for
(
auto
p_it
=
project
.
processesBegin
();
p_it
!=
project
.
processesEnd
();
++
p_it
)
for
(
auto
p_it
=
project
.
processesBegin
();
p_it
!=
project
.
processesEnd
();
++
p_it
)
{
{
(
*
p_it
)
->
solve
();
(
*
p_it
)
->
solve
();
(
*
p_it
)
->
post
();
(
*
p_it
)
->
post
(
output_file
);
}
}
output_file
.
close
();
delete
fmt
;
delete
fmt
;
delete
logog_cout
;
delete
logog_cout
;
LOGOG_SHUTDOWN
();
LOGOG_SHUTDOWN
();
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/GroundwaterFlowProcess.h
+
1
−
1
View file @
6dc98a03
...
@@ -133,7 +133,7 @@ public:
...
@@ -133,7 +133,7 @@ public:
_linearSolver
->
solve
(
*
_rhs
,
*
_x
);
_linearSolver
->
solve
(
*
_rhs
,
*
_x
);
}
}
void
post
()
void
post
(
std
::
ostream
&
os
)
{
{
DBUG
(
"Postprocessing GroundwaterFlowProcess."
);
DBUG
(
"Postprocessing GroundwaterFlowProcess."
);
// Postprocessing of the linear system of equations solver results:
// Postprocessing of the linear system of equations solver results:
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/Process.h
+
4
−
1
View file @
6dc98a03
...
@@ -28,7 +28,10 @@ public:
...
@@ -28,7 +28,10 @@ public:
virtual
void
initialize
()
=
0
;
virtual
void
initialize
()
=
0
;
virtual
void
solve
()
=
0
;
virtual
void
solve
()
=
0
;
virtual
void
post
()
=
0
;
/// Postprocessing after solve().
/// The output stream is dedicated for the ascii result output.
virtual
void
post
(
std
::
ostream
&
os
)
=
0
;
protected
:
protected
:
MeshLib
::
Mesh
const
&
_mesh
;
MeshLib
::
Mesh
const
&
_mesh
;
...
...
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