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
Dmitri Naumov
ogs
Commits
62072e84
Commit
62072e84
authored
9 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[A/DE/DV] Restructure, fix mem leak and use PropertyVector instead of node ids.
parent
b892fa3b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
+45
-24
45 additions, 24 deletions
...ations/DataExplorer/DataView/DirectConditionGenerator.cpp
with
45 additions
and
24 deletions
Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
+
45
−
24
View file @
62072e84
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
*/
*/
#include
<fstream>
#include
<fstream>
#include
<memory>
// ThirdParty/logog
// ThirdParty/logog
#include
"logog/include/logog.hpp"
#include
"logog/include/logog.hpp"
...
@@ -61,33 +62,53 @@ const std::vector< std::pair<std::size_t,double> >& DirectConditionGenerator::di
...
@@ -61,33 +62,53 @@ const std::vector< std::pair<std::size_t,double> >& DirectConditionGenerator::di
const
std
::
vector
<
std
::
pair
<
std
::
size_t
,
double
>
>&
DirectConditionGenerator
::
directWithSurfaceIntegration
(
MeshLib
::
Mesh
&
mesh
,
const
std
::
string
&
filename
,
double
scaling
)
const
std
::
vector
<
std
::
pair
<
std
::
size_t
,
double
>
>&
DirectConditionGenerator
::
directWithSurfaceIntegration
(
MeshLib
::
Mesh
&
mesh
,
const
std
::
string
&
filename
,
double
scaling
)
{
{
if
(
_direct_values
.
empty
())
if
(
!
_direct_values
.
empty
())
{
{
ERR
(
GeoLib
::
Raster
*
raster
(
FileIO
::
AsciiRasterInterface
::
readRaster
(
filename
));
"Error in DirectConditionGenerator::directWithSurfaceIntegration()"
if
(
!
raster
)
{
"- Data vector contains outdated values..."
);
ERR
(
"Error in DirectConditionGenerator::directWithSurfaceIntegration() - could not load raster file."
);
return
_direct_values
;
return
_direct_values
;
}
}
const
MathLib
::
Vector3
dir
(
0
,
0
,
-
1
);
std
::
unique_ptr
<
GeoLib
::
Raster
>
raster
(
MeshLib
::
Mesh
*
sfc_mesh
(
MeshLib
::
MeshSurfaceExtraction
::
getMeshSurface
(
mesh
,
dir
,
true
));
FileIO
::
AsciiRasterInterface
::
readRaster
(
filename
));
std
::
vector
<
double
>
node_area_vec
=
if
(
!
raster
)
{
MeshLib
::
MeshSurfaceExtraction
::
getSurfaceAreaForNodes
(
*
sfc_mesh
);
ERR
(
const
std
::
vector
<
MeshLib
::
Node
*>
&
surface_nodes
(
sfc_mesh
->
getNodes
());
"Error in DirectConditionGenerator::directWithSurfaceIntegration()"
const
std
::
size_t
nNodes
(
sfc_mesh
->
getNNodes
());
"- could not load raster file."
);
const
double
no_data
(
raster
->
getNoDataValue
());
return
_direct_values
;
_direct_values
.
reserve
(
nNodes
);
}
for
(
std
::
size_t
i
=
0
;
i
<
nNodes
;
++
i
)
{
double
val
(
raster
->
getValueAtPoint
(
*
surface_nodes
[
i
]));
val
=
(
val
==
no_data
)
?
0
:
((
val
*
node_area_vec
[
i
])
/
scaling
);
_direct_values
.
push_back
(
std
::
pair
<
std
::
size_t
,
double
>
(
surface_nodes
[
i
]
->
getID
(),
val
));
}
delete
raster
;
MathLib
::
Vector3
const
dir
(
0.0
,
0.0
,
-
1.0
);
double
const
angle
(
90
);
std
::
string
const
prop_name
(
"OriginalSubsurfaceNodeIDs"
);
std
::
unique_ptr
<
MeshLib
::
Mesh
>
surface_mesh
(
MeshLib
::
MeshSurfaceExtraction
::
getMeshSurface
(
mesh
,
dir
,
angle
,
prop_name
));
std
::
vector
<
double
>
node_area_vec
=
MeshLib
::
MeshSurfaceExtraction
::
getSurfaceAreaForNodes
(
*
surface_mesh
);
const
std
::
vector
<
MeshLib
::
Node
*>
&
surface_nodes
(
surface_mesh
->
getNodes
());
const
std
::
size_t
nNodes
(
surface_mesh
->
getNNodes
());
const
double
no_data
(
raster
->
getNoDataValue
());
boost
::
optional
<
MeshLib
::
PropertyVector
<
int
>
const
&>
opt_node_id_pv
(
surface_mesh
->
getProperties
().
getPropertyVector
<
int
>
(
prop_name
));
if
(
!
opt_node_id_pv
)
{
ERR
(
"Need subsurface node ids, but the property
\"
%s
\"
is not "
"available."
,
prop_name
.
c_str
());
return
_direct_values
;
}
MeshLib
::
PropertyVector
<
int
>
const
&
node_id_pv
(
*
opt_node_id_pv
);
_direct_values
.
reserve
(
nNodes
);
for
(
std
::
size_t
i
=
0
;
i
<
nNodes
;
++
i
)
{
double
val
(
raster
->
getValueAtPoint
(
*
surface_nodes
[
i
]));
val
=
(
val
==
no_data
)
?
0
:
((
val
*
node_area_vec
[
i
])
/
scaling
);
_direct_values
.
push_back
(
std
::
pair
<
std
::
size_t
,
double
>
(
node_id_pv
[
i
],
val
));
}
}
else
std
::
cout
<<
"Error in DirectConditionGenerator::directWithSurfaceIntegration() - Data vector contains outdated values..."
<<
std
::
endl
;
return
_direct_values
;
return
_direct_values
;
}
}
...
...
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