Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Timo Koch
dune-common
Commits
09f910d0
Commit
09f910d0
authored
20 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
Implemented write and read which writes type to file for check in read when
used with grape. [[Imported from SVN: r684]]
parent
119608ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
grid/common/defaultindexsets.hh
+60
-0
60 additions, 0 deletions
grid/common/defaultindexsets.hh
with
60 additions
and
0 deletions
grid/common/defaultindexsets.hh
+
60
−
0
View file @
09f910d0
...
...
@@ -21,6 +21,8 @@ namespace Dune {
template
<
class
GridType
>
class
DefaultGridIndexSetBase
{
// dummy value
enum
{
myType
=
-
1
};
public
:
enum
{
ncodim
=
GridType
::
dimension
+
1
};
...
...
@@ -66,16 +68,69 @@ namespace Dune {
//! write index set to xdr file
bool
write_xdr
(
const
char
*
filename
,
int
timestep
)
{
FILE
*
file
;
XDR
xdrs
;
const
char
*
path
=
NULL
;
const
char
*
fn
=
genFilename
(
path
,
filename
,
timestep
);
file
=
fopen
(
fn
,
"wb"
);
if
(
!
file
)
{
fprintf
(
stderr
,
"
\a
ERROR in DefaultGridIndexSet::write_xdr(..): couldnot open <%s>!
\n
"
,
filename
);
fflush
(
stderr
);
return
false
;
}
xdrstdio_create
(
&
xdrs
,
file
,
XDR_ENCODE
);
this
->
processXdr
(
&
xdrs
);
xdr_destroy
(
&
xdrs
);
fclose
(
file
);
return
true
;
}
//! read index set to xdr file
bool
read_xdr
(
const
char
*
filename
,
int
timestep
)
{
FILE
*
file
;
XDR
xdrs
;
const
char
*
path
=
NULL
;
const
char
*
fn
=
genFilename
(
path
,
filename
,
timestep
);
std
::
cout
<<
"Reading <"
<<
fn
<<
">
\n
"
;
file
=
fopen
(
fn
,
"rb"
);
if
(
!
file
)
{
fprintf
(
stderr
,
"
\a
ERROR in DefaultGridIndexSet::read_xdr(..): couldnot open <%s>!
\n
"
,
filename
);
fflush
(
stderr
);
return
(
false
);
}
// read xdr
xdrstdio_create
(
&
xdrs
,
file
,
XDR_DECODE
);
this
->
processXdr
(
&
xdrs
);
xdr_destroy
(
&
xdrs
);
fclose
(
file
);
return
true
;
}
protected
:
// read/write from/to xdr stream
bool
processXdr
(
XDR
*
xdrs
)
{
int
type
=
myType
;
xdr_int
(
xdrs
,
&
type
);
if
(
type
!=
myType
)
{
std
::
cerr
<<
"
\n
ERROR: DefaultGridIndex: wrong type choosen!
\n\n
"
;
assert
(
type
==
myType
);
}
return
true
;
}
// the corresponding grid
GridType
&
grid_
;
};
...
...
@@ -83,6 +138,9 @@ namespace Dune {
template
<
class
GridType
,
GridIndexType
GridIndex
=
GlobalIndex
>
class
DefaultGridIndexSet
:
public
DefaultGridIndexSetBase
<
GridType
>
{
// my type, to be revised
enum
{
myType
=
0
};
template
<
class
EntityType
,
int
enCodim
,
int
codim
>
struct
IndexWrapper
{
...
...
@@ -140,6 +198,8 @@ namespace Dune {
class
DefaultGridIndexSet
<
GridType
,
LevelIndex
>
:
public
DefaultGridIndexSetBase
<
GridType
>
{
// my type, to be revised
enum
{
myType
=
1
};
//! return global number of sub entity with local number 'num'
//! and codim of the sub entity = codim
...
...
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